mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-22 12:03:25 -04:00
12 lines
168 B
SQL
12 lines
168 B
SQL
-- Up
|
|
|
|
CREATE TABLE audit_log (
|
|
id TEXT not null primary key,
|
|
userId TEXT,
|
|
username TEXT,
|
|
event TEXT not null,
|
|
payload TEXT
|
|
);
|
|
|
|
-- Down
|