aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorkaelima <kaelima@live.se>2012-10-17 00:53:55 +0200
committerkaelima <kaelima@live.se>2012-10-17 00:53:55 +0200
commit98588aa19202c2d259fba0717f9c4a4feac32a0a (patch)
tree5021bf58cb6a602445c5a2cf4252ae8f2599ab13 /sql
parent4ec23cdba5681808a3bc456b997a860d76b1ab16 (diff)
Core/Ticket:
- Fully parse CMSG_GMTICKET_CREATE, use GmTicket::GetChatLog() to access the reporters chat log from this session (unused atm, possible useful to detect chat harassment) - Simplify SMSG_GMTICKET_GETTICKET and fix "category" field (renamed it same as in blizz LUA files) - Store response in DB
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/characters/2012_10_17_00_character_gm_tickets.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/updates/characters/2012_10_17_00_character_gm_tickets.sql b/sql/updates/characters/2012_10_17_00_character_gm_tickets.sql
new file mode 100644
index 00000000000..c41df0c115d
--- /dev/null
+++ b/sql/updates/characters/2012_10_17_00_character_gm_tickets.sql
@@ -0,0 +1,3 @@
+ALTER TABLE `gm_tickets`
+ ADD COLUMN `response` TEXT NOT NULL AFTER `comment`,
+ ADD COLUMN `haveTicket` TINYINT(3) UNSIGNED NOT NULL AFTER `viewed`;