* 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
This commit is contained in:
Machiavelli
2009-01-01 18:25:56 +01:00
parent ae0ce19a7f
commit 68015c4e94
6 changed files with 33 additions and 19 deletions

View File

@@ -0,0 +1,4 @@
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`;