mirror of
https://github.com/Redume/Shirino.git
synced 2025-05-19 02:05:26 +01:00
6 lines
166 B
SQL
6 lines
166 B
SQL
CREATE TABLE IF NOT EXISTS users (
|
|
user_id INTEGER PRIMARY KEY,
|
|
chart BOOLEAN DEFAULT 1,
|
|
chart_period TEXT DEFAULT 'month',
|
|
lang TEXT DEFAULT 'en'
|
|
);
|