Merge branch 'develop' into feature/300-moon-set
All checks were successful
Test / build (push) Successful in 25s
All checks were successful
Test / build (push) Successful in 25s
This commit is contained in:
commit
238d8d190d
23 changed files with 830 additions and 30 deletions
|
@ -0,0 +1 @@
|
|||
DROP TABLE auto_kick_config;
|
|
@ -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
|
||||
);
|
|
@ -0,0 +1,2 @@
|
|||
ALTER TABLE auto_kick_config
|
||||
ADD PRIMARY KEY (Id);
|
Loading…
Add table
Add a link
Reference in a new issue