X-Git-Url: https://git.cyclocoop.org/?a=blobdiff_plain;f=schema.sql;h=b24a7f369193126fac6230426b28c90253d3f123;hb=92f3176d2fca9034c05c8efd145c0cd0e7b81928;hp=d3b5c722321e65ac8f58e743509d2fc7d7e1681b;hpb=36ca5927bad5d375c596d5c187cc5b7eb4e62038;p=cavote.git diff --git a/schema.sql b/schema.sql index d3b5c72..b24a7f3 100644 --- a/schema.sql +++ b/schema.sql @@ -1,16 +1,25 @@ +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 ( id INTEGER primary key autoincrement, email TEXT unique not null, password TEXT not null, - name unique TEXT, + name TEXT unique, organization TEXT, is_admin INTEGER default 0 not null, key TEXT ); +create table roles ( + id INTEGER primary key autoincrement, + name TEXT, + system INTEGER default 0 not null +); + create table votes ( id INTEGER primary key autoincrement, title TEXT not null, @@ -22,14 +31,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");