mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 15:40:45 +01:00
* Change trinity_string entry * Fix improper syntax error messages * Fix crash issue when commenting a ticket * By Machiavelli --HG-- branch : trunk
5 lines
398 B
SQL
5 lines
398 B
SQL
ALTER TABLE `character_ticket` RENAME TO `gm_tickets`;
|
|
ALTER TABLE gm_tickets CHANGE `guid` `playerGuid` int(11) unsigned NOT NULL default '0';
|
|
ALTER TABLE gm_tickets CHANGE `ticket_id` `guid` int(11) unsigned NOT NULL default '0';
|
|
ALTER TABLE gm_tickets CHANGE `ticket_text` `message` text(0) NOT NULL;
|
|
ALTER TABLE gm_tickets CHANGE `ticket_lastchange` `timestamp` int(10) NOT NULL default '0'; |