mirror of
https://github.com/Redume/Shirino.git
synced 2025-07-04 11:10:55 +01:00
5 lines
131 B
SQL
5 lines
131 B
SQL
CREATE TABLE IF NOT EXISTS users (
|
|
user_id INTEGER UNIQUE NOT NULL,
|
|
chart BOOLEAN DEFAULT 1,
|
|
lang TEXT DEFAULT 'en'
|
|
);
|