Home page progress + start of db manipulations

This commit is contained in:
2024-09-10 17:59:39 +02:00
parent ccc632a418
commit 20b47856d5
6 changed files with 77 additions and 6 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
)