mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-23 20:54:48 -04:00
12 lines
162 B
SQL
12 lines
162 B
SQL
-- Up
|
|
|
|
CREATE TABLE user_messages (
|
|
id TEXT NOT NULL PRIMARY KEY,
|
|
userId TEXT NOT NULL,
|
|
adminId TEXT NOT NULL,
|
|
message TEXT NOT NULL
|
|
);
|
|
|
|
-- Down
|
|
|