* Remove unused now TcpNoDelay config option. Patch provided by TonyMontana5000.
[getmangos.git] / sql / updates / 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;