Add lost .c_str() call at send std::string content to ".pdump write" command output.
[auctionmangos.git] / sql / updates / 0.11 / 6298_characters_corpse.sql
blob0cb34d26be36949d1d90702a89e05eda2e1ae2f9
1 ALTER TABLE corpse
2   CHANGE time time_old timestamp NOT NULL default '0000-00-00 00:00:00',
3   ADD COLUMN time bigint(20) unsigned NOT NULL default '0' AFTER data;
5 UPDATE corpse
6   SET time = UNIX_TIMESTAMP(time_old);
8 ALTER TABLE corpse
9   DROP time_old;