Merge branch 'main' into develop
All checks were successful
Deploy To Stage / build (push) Successful in 24s
Deploy To Stage / deploy (push) Successful in 17s

This commit is contained in:
Ethan Lane 2025-01-24 19:15:20 +00:00
commit 11ba4bb411
18 changed files with 495 additions and 12 deletions

View file

@ -0,0 +1 @@
DROP TABLE auto_kick_config;

View file

@ -0,0 +1,10 @@
CREATE TABLE auto_kick_config (
Id varchar(255) NOT NULL,
WhenCreated datetime NOT NULL,
WhenUpdated datetime NOT NULL,
ServerId varchar(255) NOT NULL,
RoleId varchar(255) NOT NULL,
KickTime int NOT NULL,
NoticeTime int NULL,
NoticeChannelId varchar(255) NULL
);

View file

@ -0,0 +1,2 @@
ALTER TABLE auto_kick_config
ADD PRIMARY KEY (Id);