This commit is contained in:
2024-09-20 19:00:39 +02:00
parent 1ddb019081
commit 8281ce7acd
5 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
create table if not exists votes
(
id integer primary key not null,
timestamp date 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
)