X-Git-Url: http://git.cyclocoop.org/?p=cavote.git;a=blobdiff_plain;f=schema.sql;h=b24a7f369193126fac6230426b28c90253d3f123;hp=f52b8b44cd442dae3153782fb404a0353f5255ed;hb=251888ac340c188dcf60da3120a752450663d63e;hpb=e39a423e56697a035ea099e1f0ab4af1917a5d9e diff --git a/schema.sql b/schema.sql index f52b8b4..b24a7f3 100644 --- a/schema.sql +++ b/schema.sql @@ -1,4 +1,5 @@ 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; @@ -37,6 +38,13 @@ create table votes ( 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,