*Fix gm_tickets sql. By Machiavelli.

--HG--
branch : trunk
This commit is contained in:
megamage
2008-12-31 15:26:51 -06:00
parent 1b40ecd785
commit d968a0457b
2 changed files with 2 additions and 1 deletions

View File

@@ -3,4 +3,4 @@ ALTER TABLE gm_tickets CHANGE `guid` `playerGuid` int(11) unsigned NOT NULL defa
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';
ALTER TABLE gm_tickets ADD( `closed` bit(1) NOT NULL, `assignedto` int(10) NOT NULL default '0', `comment` text(0) NOT NULL default '');
ALTER TABLE gm_tickets ADD( `closed` bit(1) NOT NULL, `assignedto` int(10) NOT NULL default '0');

View File

@@ -0,0 +1 @@
ALTER TABLE gm_tickets ADD `comment` text(0) NOT NULL;