1
0
This commit is contained in:
2024-05-20 12:34:46 +03:00
parent 18f2160c27
commit 3bcc2b5c5c
35 changed files with 1019 additions and 60 deletions

View File

@@ -1,6 +1,7 @@
CREATE TABLE IF NOT EXISTS users (
CREATE TABLE IF NOT EXISTS user (
id INTEGER PRIMARY KEY AUTOINCREMENT,
username VARCHAR UNIQUE,
password VARCHAR,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
avatar VARCHAR
);