Added 0.3.1 migration scripts #428

This commit is contained in:
Sven Heidemann 2023-11-10 13:25:28 +01:00
parent d93c3ad6c7
commit 5461a6d8dc
4 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,4 @@
ALTER TABLE AutoRoles DROP COLUMN DiscordChannelId;

View File

@ -0,0 +1,4 @@
ALTER TABLE AutoRoles ADD DiscordChannelId BIGINT NOT NULL AFTER ServerId;

View File

@ -0,0 +1,2 @@
DROP TABLE `UserMessageCountPerHour`;

View File

@ -0,0 +1,13 @@
CREATE TABLE IF NOT EXISTS `UserMessageCountPerHour` (
`Id` BIGINT NOT NULL AUTO_INCREMENT,
`Date` DATETIME(6) NOT NULL,
`Hour` BIGINT,
`XPCount` BIGINT,
`UserId` BIGINT,
`CreatedAt` DATETIME(6),
`LastModifiedAt` DATETIME(6),
PRIMARY KEY(`Id`),
FOREIGN KEY (`UserId`) REFERENCES `Users`(`UserId`)
);