X-Git-Url: http://git.cyclocoop.org/?p=cavote.git;a=blobdiff_plain;f=schema.sql;h=c2d5d2522ef8b221e9f1c5dc806d58b6633b4d3b;hp=541fa23b51c5225104491dd11622454d6b62e5ae;hb=HEAD;hpb=e3913800e8bccbdc364b7f54d28a8d8efcfa2e1b diff --git a/schema.sql b/schema.sql index 541fa23..c2d5d25 100644 --- a/schema.sql +++ b/schema.sql @@ -1,81 +1,129 @@ drop table if exists user_choice; +drop table if exists user_choice_buffer_anonymous; +drop table if exists user_vote; drop table if exists choices; +drop table if exists cardinals; +drop table if exists values_; 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, + openid 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 INTEGER default 0 not null + 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), - FOREIGN KEY(id_group) REFERENCES groups(id), + 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 cardinals ( + id INTEGER UNIQUE NOT NULL PRIMARY KEY, + name TEXT UNIQUE NOT NULL, + first INTEGER +); + +create table values_ ( + name TEXT NOT NULL, + weight INTEGER NOT NULL, + id_cardinal INTEGER NOT NULL, + FOREIGN KEY(id_cardinal) REFERENCES cardinals (id) ON DELETE CASCADE, + PRIMARY KEY(id_cardinal, weight) +); + 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, - is_terminated INTEGER default 0 not null, - id_author INTEGER, -- :COMMENT:maethor:120528: not null ? - id_group INTEGER default 1 not null, - FOREIGN KEY(id_author) REFERENCES users(id) - FOREIGN KEY(id_group) REFERENCES groups(id) + date_begin INTEGER DEFAULT CURRENT_TIMESTAMP NOT NULL, + date_end INTEGER NOT NULL, + quorum FLOAT DEFAULT 1, + reminder_last_days INTEGER DEFAULT 3 NOT NULL, + is_transparent BOOLEAN DEFAULT 1 NOT NULL, + is_public BOOLEAN DEFAULT 1 NOT NULL, + is_anonymous BOOLEAN DEFAULT 1 NOT NULL, + is_open BOOLEAN DEFAULT 0 NOT NULL, + is_terminated BOOLEAN DEFAULT 0 NOT NULL, + is_hidden BOOLEAN DEFAULT 0 NOT NULL, + id_author INTEGER DEFAULT 1 NOT NULL, + id_group INTEGER DEFAULT 1 NOT NULL, + id_cardinal INTEGER NOT NULL, + FOREIGN KEY(id_author) REFERENCES users (id) ON DELETE SET DEFAULT, + FOREIGN KEY(id_group) REFERENCES groups (id), + FOREIGN KEY(id_cardinal) REFERENCES cardinals (id), + CHECK (is_transparent IN (0, 1)), + CHECK (is_public IN (0, 1)), + CHECK (is_open IN (0, 1)), + CHECK (is_terminated IN (0, 1)), + CHECK (is_hidden 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 vote(id) + 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, + id_choice INTEGER NOT NULL, + id_cardinal INTEGER, weight INTEGER, - FOREIGN KEY(id_user) REFERENCES users(id), - FOREIGN KEY(id_choice) REFERENCES choices(id), + FOREIGN KEY(id_user) REFERENCES users (id) ON DELETE CASCADE, + FOREIGN KEY(id_choice) REFERENCES choices (id) ON DELETE CASCADE, + FOREIGN KEY(id_cardinal, weight) REFERENCES values_ (id_cardinal, weight) 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", "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"); +create table user_choice_buffer_anonymous ( + -- NOTE: same table structure as user_choice, used to randomize insertion per vote + id_user INTEGER, + id_choice INTEGER NOT NULL, + id_cardinal INTEGER, + weight INTEGER, + FOREIGN KEY(id_user) REFERENCES users (id) ON DELETE CASCADE, + FOREIGN KEY(id_choice) REFERENCES choices (id) ON DELETE CASCADE, + FOREIGN KEY(id_cardinal, weight) REFERENCES values_ (id_cardinal, weight) ON DELETE CASCADE, + PRIMARY KEY(id_user, id_choice) +); +create table user_vote ( + date INTEGER DEFAULT CURRENT_TIMESTAMP NOT NULL, + id_user INTEGER NOT NULL, + id_vote INTEGER NOT NULL, + comment TEXT, + FOREIGN KEY(id_user) REFERENCES users (id) ON DELETE CASCADE, + FOREIGN KEY(id_vote) REFERENCES votes (id) ON DELETE CASCADE, + PRIMARY KEY(id_user, id_vote) +);