X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=schema.sql;h=891cf7690b64fdb7c0a1914cef0cd3604d4c0696;hb=9a0891ac3f5ae69cd1e276931401516b3213df4c;hp=5529a318a4cacf62e26c696c6daa713bc981d8a4;hpb=f42b7613c22add2650031ac5fa04065d82393436;p=cavote.git diff --git a/schema.sql b/schema.sql index 5529a31..891cf76 100644 --- a/schema.sql +++ b/schema.sql @@ -1,5 +1,9 @@ +drop table if exists user_choice; drop table if exists choices; +drop table if exists attachments; drop table if exists votes; +drop table if exists user_role; +drop table if exists roles; drop table if exists users; create table users ( @@ -12,6 +16,20 @@ create table users ( key TEXT ); +create table roles ( + id INTEGER primary key autoincrement, + name TEXT, + system INTEGER default 0 not null +); + +create table user_role ( + id_user INTEGER, + id_role INTEGER, + FOREIGN KEY(id_user) REFERENCES users(id), + FOREIGN KEY(id_role) REFERENCES roles(id), + PRIMARY KEY(id_user, id_role) +); + create table votes ( id INTEGER primary key autoincrement, title TEXT not null, @@ -25,9 +43,16 @@ create table votes ( is_weighted INTEGER default 0 not null, is_open INTEGER default 0 not null, id_author INTEGER, -- :COMMENT:maethor:120528: not null ? - --id_role INTEGER, + id_role INTEGER default 1 not null, FOREIGN KEY(id_author) REFERENCES users(id) - --FOREIGN KEY(id_role) REFERENCES role(id) + FOREIGN KEY(id_role) REFERENCES roles(id) +); + +create table attachments ( + id INTEGER primary key autoincrement, + url TEXT not null, + id_vote INTEGER not null, + FOREIGN KEY(id_vote) REFERENCES vote(id) ); create table choices ( @@ -37,7 +62,19 @@ create table choices ( FOREIGN KEY(id_vote) REFERENCES vote(id) ); +create table user_choice ( + id_user INTEGER, + id_choice INTEGER, + weight INTEGER, + FOREIGN KEY(id_user) REFERENCES users(id), + FOREIGN KEY(id_choice) REFERENCES choices(id), + PRIMARY KEY(id_user, id_choice) +); + -- Test data -insert into users (email, password, name, organization, is_admin, key) values ("admin@admin.fr", "admin", "Toto (admin) Tata", "World corp", 1, "test"); +insert into users (email, password, name, organization, is_admin, key) values ("admin@admin.fr", "d033e22ae348aeb5660fc2140aec35850c4da997", "Toto (admin) Tata", "World corp", 1, "test"); -- mdp = admin +insert into roles (id, name, system) values (1, "Tous", 1); +insert into roles (name) values ("CA"); +insert into roles (name) values ("Members");