diff options
author | Blaymoira <none@none> | 2009-01-01 20:25:14 +0100 |
---|---|---|
committer | Blaymoira <none@none> | 2009-01-01 20:25:14 +0100 |
commit | 657b4257b2bf476d5655c692fa47a294da1edf5e (patch) | |
tree | b88b05e131acbbc7550a06635cf17504a167bf68 /sql | |
parent | c797bd3843e246bb85c6d73beeb57939ad1dfecd (diff) |
* Fix obsolete string parsing
* Change trinity_string entry
* Fix improper syntax error messages
* Fix crash issue when commenting a ticket
* By Machiavelli
--HG--
branch : trunk
Diffstat (limited to 'sql')
-rw-r--r-- | sql/updates/725_characters.sql | 3 | ||||
-rw-r--r-- | sql/updates/747_world.sql | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sql/updates/725_characters.sql b/sql/updates/725_characters.sql index 6be4ef0e4cf..17a87769b12 100644 --- a/sql/updates/725_characters.sql +++ b/sql/updates/725_characters.sql @@ -2,5 +2,4 @@ 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'; -ALTER TABLE gm_tickets ADD( `closed` bit(1) NOT NULL, `assignedto` int(10) NOT NULL default '0');
\ No newline at end of file +ALTER TABLE gm_tickets CHANGE `ticket_lastchange` `timestamp` int(10) NOT NULL default '0';
\ No newline at end of file diff --git a/sql/updates/747_world.sql b/sql/updates/747_world.sql new file mode 100644 index 00000000000..b526781b141 --- /dev/null +++ b/sql/updates/747_world.sql @@ -0,0 +1 @@ +UPDATE `trinity_string` SET `content_default`='Ticket %d is already assigned.' WHERE (`entry`='2008');
\ No newline at end of file |