mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Achievements: Fixed field type in *_achievement_progress tables
This commit is contained in:
@@ -409,7 +409,7 @@ DROP TABLE IF EXISTS `character_achievement_progress`;
|
||||
CREATE TABLE `character_achievement_progress` (
|
||||
`guid` int(10) unsigned NOT NULL,
|
||||
`criteria` smallint(5) unsigned NOT NULL,
|
||||
`counter` int(10) unsigned NOT NULL,
|
||||
`counter` bigint(20) unsigned NOT NULL,
|
||||
`date` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`,`criteria`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
@@ -1801,7 +1801,7 @@ DROP TABLE IF EXISTS `guild_achievement_progress`;
|
||||
CREATE TABLE `guild_achievement_progress` (
|
||||
`guildId` int(10) unsigned NOT NULL,
|
||||
`criteria` smallint(5) unsigned NOT NULL,
|
||||
`counter` int(10) unsigned NOT NULL,
|
||||
`counter` bigint(20) unsigned NOT NULL,
|
||||
`date` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`completedGuid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guildId`,`criteria`)
|
||||
|
||||
Reference in New Issue
Block a user