Created
April 10, 2015 20:43
-
-
Save Goatform/afb4224f5581002504f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ALTER TABLE `corpse` DROP `phaseMask`; | |
| DROP TABLE IF EXISTS `corpse_phases`; | |
| CREATE TABLE `corpse_phases` ( | |
| `Guid` int(10) unsigned NOT NULL, | |
| `PhaseId` int(10) unsigned NOT NULL, | |
| `OwnerGuid` int(10) unsigned NOT NULL, | |
| `Time` int(10) unsigned NOT NULL DEFAULT '0', | |
| `CorpseType` tinyint(3) unsigned NOT NULL DEFAULT '0', | |
| PRIMARY KEY (`Guid`,`PhaseId`) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment