Commit Graph

2 Commits

Author SHA1 Message Date
megamage
3858dab58b *Fix sql bug in 741_characters.sql.
If you already have "closed" column in gm_tickets table, use ALTER TABLE `gm_tickets` CHANGE `closed` `closed` tinyint(1) NOT NULL default '0';
If you do not have that column, use ALTER TABLE `gm_tickets` ADD `closed` tinyint(1) NOT NULL default '0' AFTER `timestamp`;
Also, you should check if you have "assignedto" column.

--HG--
branch : trunk
2009-01-10 11:11:01 -06:00
Machiavelli
68015c4e94 * Fix Crash issue caused by closing a ticket.
* Fix potential crash issue caused by improper datatype, SQL included to alter column (Thanks Paradox)

--HG--
branch : trunk
2009-01-01 18:25:56 +01:00