X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=schema.sql;h=c1805c4002b6bc76812ca81c979e2196c0d5d5c6;hb=a2d3a797375c6e14889d89b975ee32e3068926b6;hp=b7fa00ba3360d0d224ed03a6a5ed7fda9af93d20;hpb=6b30d1aa12bb40d961c041e49d77ec07959d6090;p=cavote.git diff --git a/schema.sql b/schema.sql index b7fa00b..c1805c4 100644 --- a/schema.sql +++ b/schema.sql @@ -1,4 +1,7 @@ +drop table if exists choices; +drop table if exists attachments; drop table if exists votes; +drop table if exists roles; drop table if exists users; create table users ( @@ -11,6 +14,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, @@ -22,14 +39,31 @@ create table votes ( is_public INTEGER default 1 not null, is_multiplechoice INTEGER default 1 not null, is_weighted INTEGER default 0 not null, - is_closed 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 ( + url TEXT not null, + id_vote INTEGER not null, + FOREIGN KEY(id_vote) REFERENCES vote(id), + PRIMARY KEY(url, id_vote) +); + +create table choices ( + id INTEGER primary key autoincrement, + name TEXT not null, + id_vote INTEGER not null, + FOREIGN KEY(id_vote) REFERENCES vote(id) ); -- 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 roles (id, name, system) values (1, "Tous", 1); +insert into roles (name) values ("CA"); +insert into roles (name) values ("Members");