forked from sh-edraft.de/sh_discord_bot
		
	Fixed auto-role migration #70
This commit is contained in:
		| @@ -23,7 +23,8 @@ class AutoRoleMigration(MigrationABC): | ||||
|                 `DiscordMessageId` BIGINT NOT NULL, | ||||
|                 `CreatedAt` DATETIME(6), | ||||
|                 `LastModifiedAt` DATETIME(6), | ||||
|                 PRIMARY KEY(`AutoRoleId`) | ||||
|                 PRIMARY KEY(`AutoRoleId`), | ||||
|                 FOREIGN KEY (`ServerId`) REFERENCES `Servers`(`ServerId`) | ||||
|             ); | ||||
|             """) | ||||
|         ) | ||||
| @@ -37,7 +38,8 @@ class AutoRoleMigration(MigrationABC): | ||||
|                 `DiscordRoleId` BIGINT NOT NULL, | ||||
|                 `CreatedAt` DATETIME(6), | ||||
|                 `LastModifiedAt` DATETIME(6), | ||||
|                 PRIMARY KEY(`AutoRoleRuleId`) | ||||
|                 PRIMARY KEY(`AutoRoleRuleId`), | ||||
|                 FOREIGN KEY (`AutoRoleId`) REFERENCES `AutoRoles`(`AutoRoleId`) | ||||
|             ); | ||||
|             """) | ||||
|         ) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user