7 lines
523 B
SQL
Executable file
7 lines
523 B
SQL
Executable file
CREATE TABLE IF NOT EXISTS main.auth (username TEXT, password TEXT);
|
|
CREATE TABLE IF NOT EXISTS main.token (username TEXT, token TEXT);
|
|
CREATE TABLE IF NOT EXISTS main.user (username TEXT, bio TEXT);
|
|
CREATE TABLE IF NOT EXISTS main.role (username TEXT, role TEXT);
|
|
CREATE TABLE IF NOT EXISTS main.follow (username TEXT, target TEXT);
|
|
CREATE TABLE IF NOT EXISTS main.ban (username TEXT, reason TEXT);
|
|
CREATE TABLE IF NOT EXISTS main.comment (username TEXT, targetType TEXT, targetId TEXT, date REAL, content TEXT, id TEXT);
|