Files
TrinityCore2/sql/updates/6326_characters_corpse.sql
Neo2003 9b1c0e006f [svn] * Proper SVN structure
--HG--
branch : trunk
2008-10-02 16:23:55 -05:00

9 lines
201 B
SQL

ALTER TABLE corpse
ADD COLUMN corpse_type tinyint(3) unsigned NOT NULL default '0' AFTER bones_flag;
UPDATE corpse
SET corpse_type = 1 WHERE bones_flag = 0;
ALTER TABLE corpse
DROP bones_flag;