* Move sql updates for 0.11 release to sql/updates/0.11
[getmangos.git] / sql / updates / 0.11 / 6326_characters_corpse.sql
blob0ff3d368e76b75acf2e08e701b2bbd8a88ed27ad
1 ALTER TABLE corpse
2   ADD COLUMN corpse_type tinyint(3) unsigned NOT NULL default '0' AFTER bones_flag;
4 UPDATE corpse
5   SET corpse_type = 1 WHERE bones_flag = 0;
7 ALTER TABLE corpse
8   DROP bones_flag;