Add survey bool in postpaid db

This commit is contained in:
2025-05-26 11:06:45 +02:00
parent eec8f54eab
commit ecba2331ef

View File

@@ -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
)
"""))