X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=schema.sql;h=757b695613170ce1c7a0b9821f96eb4e1046837e;hb=16be4472e8582f8d8d966b625165ef2e57fc21df;hp=5529a318a4cacf62e26c696c6daa713bc981d8a4;hpb=f42b7613c22add2650031ac5fa04065d82393436;p=cavote.git diff --git a/schema.sql b/schema.sql index 5529a31..757b695 100644 --- a/schema.sql +++ b/schema.sql @@ -1,43 +1,91 @@ +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_group; +drop table if exists groups; drop table if exists users; +PRAGMA foreign_keys = ON; + create table users ( - id INTEGER primary key autoincrement, - email TEXT unique not null, - password TEXT not null, - name TEXT unique, + id INTEGER PRIMARY KEY AUTOINCREMENT, + email TEXT UNIQUE NOT NULL, + password TEXT NOT NULL, + name TEXT UNIQUE NOT NULL, organization TEXT, - is_admin INTEGER default 0 not null, - key TEXT + is_admin BOOLEAN DEFAULT 0 NOT NULL, + key TEXT, + CHECK (is_admin IN (0, 1)) +); + +create table groups ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + name TEXT UNIQUE NOT NULL, + system BOOLEAN DEFAULT 0 NOT NULL, + CHECK (system IN (0, 1)) +); + +create table user_group ( + id_user INTEGER, + id_group INTEGER, + FOREIGN KEY(id_user) REFERENCES users (id) ON DELETE CASCADE, + FOREIGN KEY(id_group) REFERENCES groups (id) ON DELETE CASCADE, + PRIMARY KEY(id_user, id_group) ); create table votes ( - id INTEGER primary key autoincrement, - title TEXT not null, + id INTEGER PRIMARY KEY AUTOINCREMENT, + title TEXT NOT NULL, description TEXT, category TEXT, - date_begin INTEGER default CURRENT_TIMESTAMP not null, - date_end INTEGER not null, - is_transparent INTEGER default 1 not null, - is_public INTEGER default 1 not null, - is_multiplechoice INTEGER default 1 not null, - 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, - FOREIGN KEY(id_author) REFERENCES users(id) - --FOREIGN KEY(id_role) REFERENCES role(id) + date_begin INTEGER DEFAULT CURRENT_TIMESTAMP NOT NULL, + date_end INTEGER NOT NULL, + is_transparent BOOLEAN DEFAULT 1 NOT NULL, + is_public BOOLEAN DEFAULT 1 NOT NULL, + is_multiplechoice BOOLEAN DEFAULT 1 NOT NULL, + is_weighted BOOLEAN DEFAULT 0 NOT NULL, + is_open BOOLEAN DEFAULT 0 NOT NULL, + is_terminated BOOLEAN DEFAULT 0 NOT NULL, + id_author INTEGER DEFAULT 1 NOT NULL, -- :COMMENT:maethor:120528: not null ? + id_group INTEGER DEFAULT 1 NOT NULL, + FOREIGN KEY(id_author) REFERENCES users (id) ON DELETE SET DEFAULT, + FOREIGN KEY(id_group) REFERENCES groups (id), + CHECK (is_transparent IN (0, 1)), + CHECK (is_public IN (0, 1)), + CHECK (is_weighted IN (0, 1)), + CHECK (is_open IN (0, 1)), + CHECK (is_terminated IN (0, 1)) +); + +create table attachments ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + url TEXT NOT NULL, + id_vote INTEGER NOT NULL, + FOREIGN KEY(id_vote) REFERENCES votes (id) ON DELETE CASCADE ); create table choices ( - id INTEGER primary key autoincrement, - name TEXT not null, - id_vote INTEGER not null, - FOREIGN KEY(id_vote) REFERENCES vote(id) + id INTEGER PRIMARY KEY AUTOINCREMENT, + name TEXT NOT NULL, + id_vote INTEGER NOT NULL, + FOREIGN KEY(id_vote) REFERENCES votes (id) ON DELETE CASCADE +); + +create table user_choice ( + id_user INTEGER, + id_choice INTEGER, + weight INTEGER, + FOREIGN KEY(id_user) REFERENCES users (id) ON DELETE CASCADE, + FOREIGN KEY(id_choice) REFERENCES choices (id) ON DELETE CASCADE, + 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 (id, email, password, name, organization, is_admin, key) VALUES (1, "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"); +INSERT INTO user_group (id_user, id_group) VALUES(1, 1);