diff options
| author | Shauren <shauren.trinity@gmail.com> | 2014-12-31 18:00:35 +0100 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2014-12-31 18:00:35 +0100 |
| commit | e5b9d815badc99df236bc278b31666dcd7aa2172 (patch) | |
| tree | 885e5ad21a31290e7fccc87df090d23cf27f8e04 /sql/base/characters_database.sql | |
| parent | c831c7548f211802ecbf9d71653e17ae8a3f4c0e (diff) | |
Core/Achievements: Enabled saving progress and converted old saved data
Diffstat (limited to 'sql/base/characters_database.sql')
| -rw-r--r-- | sql/base/characters_database.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/base/characters_database.sql b/sql/base/characters_database.sql index a18782f85b9..c39ae87dafd 100644 --- a/sql/base/characters_database.sql +++ b/sql/base/characters_database.sql @@ -408,7 +408,7 @@ DROP TABLE IF EXISTS `character_achievement_progress`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `character_achievement_progress` ( `guid` bigint(20) unsigned NOT NULL, - `criteria` smallint(5) unsigned NOT NULL, + `criteria` int(10) unsigned NOT NULL, `counter` bigint(20) unsigned NOT NULL, `date` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`guid`,`criteria`) @@ -1816,7 +1816,7 @@ DROP TABLE IF EXISTS `guild_achievement_progress`; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `guild_achievement_progress` ( `guildId` bigint(20) unsigned NOT NULL, - `criteria` smallint(5) unsigned NOT NULL, + `criteria` int(10) unsigned NOT NULL, `counter` bigint(20) unsigned NOT NULL, `date` int(10) unsigned NOT NULL DEFAULT '0', `completedGuid` bigint(20) unsigned NOT NULL DEFAULT '0', |
