mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 01:37:37 +01:00
Core/Misc:
Clearing compile errors since UpdateFields were changed: - Completely remove ammo (Cataclysm change) - Revert some changes with power/maxpower and only store the 5 needed powers in db (the rest is useless) - Remove GuildId from corpse - Move PLAYER_GUILDID to character db (removed updatefield) Note: Compile is still not working as we need to change currency handling
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
ALTER TABLE `character_stats`
|
||||
DROP COLUMN `maxpower6`,
|
||||
DROP COLUMN `maxpower7`,
|
||||
DROP COLUMN `maxpower8`,
|
||||
DROP COLUMN `maxpower9`,
|
||||
DROP COLUMN `maxpower10`,
|
||||
DROP COLUMN `maxpower11`;
|
||||
@@ -0,0 +1,9 @@
|
||||
ALTER TABLE `characters`
|
||||
DROP COLUMN `power6`,
|
||||
DROP COLUMN `power7`,
|
||||
DROP COLUMN `power8`,
|
||||
DROP COLUMN `power9`,
|
||||
DROP COLUMN `power10`,
|
||||
DROP COLUMN `power11`,
|
||||
DROP COLUMN `ammoId`,
|
||||
ADD COLUMN `guildId` int(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `grantableLevels`;
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `corpse` DROP COLUMN `guildId`;
|
||||
Reference in New Issue
Block a user