chore: added a new field to customize the schedule period

This commit is contained in:
Danil 2025-05-15 14:53:52 +03:00
parent b4eba633b9
commit b5d8edcc38

View file

@ -1,5 +1,6 @@
CREATE TABLE IF NOT EXISTS users ( CREATE TABLE IF NOT EXISTS users (
user_id INTEGER UNIQUE NOT NULL, user_id INTEGER PRIMARY KEY,
chart BOOLEAN DEFAULT 1, chart BOOLEAN DEFAULT 1,
chart_period TEXT DEFAULT 'month',
lang TEXT DEFAULT 'en' lang TEXT DEFAULT 'en'
); );