mirror of
https://github.com/araxiaonline/TrinityCore2.git
synced 2026-06-14 03:53:03 -04:00
* Also finally cleaned up full scripts file * Reduced amount of querries in sql files --HG-- branch : trunk
5 lines
406 B
SQL
5 lines
406 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'; |