From ecba2331ef6bc56ba1e2a5a195315cdc9b0a32da Mon Sep 17 00:00:00 2001 From: Moritz Kowalski Date: Mon, 26 May 2025 11:06:45 +0200 Subject: [PATCH] Add survey bool in postpaid db --- db/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/db/models.py b/db/models.py index a8f6d50..9be497e 100644 --- a/db/models.py +++ b/db/models.py @@ -34,7 +34,8 @@ with engine.connect() as conn: username TEXT NOT NULL UNIQUE, money INT DEFAULT 0, activated BOOLEAN DEFAULT 0, - last_drink TIMESTAMP DEFAULT CURRENT_TIMESTAMP + last_drink TIMESTAMP DEFAULT CURRENT_TIMESTAMP, + survey BOOLEAN DEFAULT 0 ) """))