X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=schema.sql;h=824c4df0480a207084685e1f5c1ea95ff42175e8;hb=c3c288ea9ed3cfc8ef208cb3746bfe3715cf5a00;hp=f52b8b44cd442dae3153782fb404a0353f5255ed;hpb=09d46c3c1c476da11f48f953d257c9fc6e31b8cd;p=cavote.git diff --git a/schema.sql b/schema.sql index f52b8b4..824c4df 100644 --- a/schema.sql +++ b/schema.sql @@ -1,24 +1,35 @@ +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 roles; +drop table if exists user_group; +drop table if exists groups; drop table if exists users; create table users ( id INTEGER primary key autoincrement, email TEXT unique not null, password TEXT not null, - name TEXT unique, + name TEXT unique not null, organization TEXT, is_admin INTEGER default 0 not null, key TEXT ); -create table roles ( +create table groups ( id INTEGER primary key autoincrement, - name TEXT, + name TEXT unique not null, system INTEGER default 0 not null ); +create table user_group ( + id_user INTEGER, + id_group INTEGER, + FOREIGN KEY(id_user) REFERENCES users(id), + FOREIGN KEY(id_group) REFERENCES groups(id), + PRIMARY KEY(id_user, id_group) +); + create table votes ( id INTEGER primary key autoincrement, title TEXT not null, @@ -31,10 +42,18 @@ create table votes ( is_multiplechoice INTEGER default 1 not null, is_weighted INTEGER default 0 not null, is_open INTEGER default 0 not null, + is_terminated INTEGER default 0 not null, id_author INTEGER, -- :COMMENT:maethor:120528: not null ? - id_role INTEGER default 1 not null, + id_group INTEGER default 1 not null, FOREIGN KEY(id_author) REFERENCES users(id) - FOREIGN KEY(id_role) REFERENCES roles(id) + FOREIGN KEY(id_group) REFERENCES groups(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 ( @@ -44,10 +63,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 roles (id, name, system) values (1, "Tous", 1); -insert into roles (name) values ("CA"); -insert into roles (name) values ("Members"); +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 groups (id, name, system) values (1, "Tous", 1); +insert into groups (name) values ("CA"); +insert into groups (name) values ("Membres");