Update to main
This commit is contained in:
13
database/schema.sql
Normal file
13
database/schema.sql
Normal file
@ -0,0 +1,13 @@
|
||||
CREATE TABLE IF NOT EXISTS `blacklist` (
|
||||
`user_id` varchar(20) NOT NULL,
|
||||
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `warns` (
|
||||
`id` int(11) NOT NULL,
|
||||
`user_id` varchar(20) NOT NULL,
|
||||
`server_id` varchar(20) NOT NULL,
|
||||
`moderator_id` varchar(20) NOT NULL,
|
||||
`reason` varchar(255) NOT NULL,
|
||||
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
|
||||
);
|
Reference in New Issue
Block a user