Files
vote-rllhc/migrations/20240911125144_votes_convert.sql
2024-09-12 23:36:55 +02:00

12 lines
261 B
SQL

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
)