]> WPIA git - motion.git/blobdiff - sql/schema.sql
upd: move cancel and finish button and add confirm question
[motion.git] / sql / schema.sql
index c3967a45391b9230a60f436d8508e064ef7ebdfc..56055bc15bb434a91f88f21886b30c2918911765 100644 (file)
@@ -22,6 +22,7 @@ CREATE TABLE motion (id serial NOT NULL,
 CREATE UNIQUE INDEX motion_ident ON motion (identifier);
 
 DROP TABLE IF EXISTS vote;
+DROP TABLE IF EXISTS voteresult;
 DROP TYPE IF EXISTS "vote_type";
 CREATE TYPE "vote_type" AS ENUM ('yes', 'no', 'abstain');
 CREATE TABLE vote (motion_id INTEGER NOT NULL,