Vote + Results done

This commit is contained in:
2024-09-12 23:36:55 +02:00
parent 20b47856d5
commit 49e2b18e56
17 changed files with 698 additions and 19 deletions

View File

@@ -0,0 +1,2 @@
-- Add migration script here
drop table if exists votes

View File

@@ -0,0 +1,11 @@
create table if not exists votes
(
id integer primary key not null,
timestamp text not null,
plus_id integer not null,
plus_nickname text not null,
plus_reason text not null,
moins_id integer not null,
moins_nickname text not null,
moins_reason text not null
)