1
Fork 0
mirror of https://github.com/wlinator/luminara.git synced 2024-10-02 18:03:12 +00:00

Create DB table for user blacklists

This commit is contained in:
wlinator 2024-03-07 13:05:45 -05:00
parent df556cd229
commit abb31fe6b4

View file

@ -85,3 +85,10 @@ CREATE TABLE guild_config (
PRIMARY KEY (guild_id)
)
CREATE TABLE blacklist_user (
user_id BIGINT NOT NULL,
reason TEXT,
timestamp TIMESTAMP NOT NULL DEFAULT NOW(),
active BOOLEAN DEFAULT TRUE,
PRIMARY KEY (user_id)
)