initial commit

This commit is contained in:
arrelin
2026-03-06 15:31:24 +03:00
commit 5051b8e9de
38 changed files with 6868 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
CREATE TABLE IF NOT EXISTS responses (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
name TEXT NOT NULL,
alcohol TEXT,
food TEXT,
with_partner BOOLEAN NOT NULL DEFAULT FALSE,
partner_name TEXT,
partner_alcohol TEXT,
partner_food TEXT,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);