mirror of
https://github.com/araxiaonline/TrinityCore2.git
synced 2026-06-14 03:53:03 -04:00
* Fix potential crash issue caused by improper datatype, SQL included to alter column (Thanks Paradox) --HG-- branch : trunk
5 lines
247 B
SQL
5 lines
247 B
SQL
ALTER TABLE `gm_tickets` CHANGE `closed` `closed` tinyint(1) NOT NULL default '0';
|
|
ALTER TABLE `gm_tickets` ADD `closed` bit(1) NOT NULL AFTER `timestamp`;
|
|
ALTER TABLE `gm_tickets` ADD `assignedto` int(10) NOT NULL default '0' AFTER `timestamp`;
|
|
|