Refixed migration #179

This commit is contained in:
Sven Heidemann 2023-01-13 23:15:06 +01:00
parent 2401e58827
commit fecb82bf36

View File

@ -19,7 +19,7 @@ class UserMessageCountPerHourMigration(MigrationABC):
str(f"""
CREATE TABLE IF NOT EXISTS `UserMessageCountPerHour` (
`Id` BIGINT NOT NULL AUTO_INCREMENT,
`Date` VARCHAR(255) NOT NULL,
`Date` DATETIME(6) NOT NULL,
`Hour` BIGINT,
`XPCount` BIGINT,
`UserId` BIGINT,