.
This commit is contained in:
6
migrations/20240423082838_user_table.sql
Normal file
6
migrations/20240423082838_user_table.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
CREATE TABLE IF NOT EXISTS users (
|
||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||||
username VARCHAR UNIQUE,
|
||||
password VARCHAR,
|
||||
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
||||
);
|
||||
Reference in New Issue
Block a user