aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorMachiavelli <none@none>2010-03-18 22:56:48 +0100
committerMachiavelli <none@none>2010-03-18 22:56:48 +0100
commit35a7f4849e161ebab96120a091cce7ed40bb5fc8 (patch)
tree495f4a04523ddec2ac31c217b3f87745ec95759c /sql/updates
parentef57a96ccec821ca63cdf0a6b9f73f6df174fc7f (diff)
Store alternate currency spent on an item by Item ExtendedCost entry instead of honorPts/arenaPts/items seperately. Thanks to Opterman for the idea.
--HG-- branch : trunk
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/7611_characters_item_refund_instance.sql14
1 files changed, 14 insertions, 0 deletions
diff --git a/sql/updates/7611_characters_item_refund_instance.sql b/sql/updates/7611_characters_item_refund_instance.sql
new file mode 100644
index 00000000000..c75a180f731
--- /dev/null
+++ b/sql/updates/7611_characters_item_refund_instance.sql
@@ -0,0 +1,14 @@
+ALTER TABLE `item_refund_instance`
+DROP COLUMN `paidHonor`,
+DROP COLUMN `paidArena`,
+DROP COLUMN `paidItem_1`,
+DROP COLUMN `paidItemCount_1`,
+DROP COLUMN `paidItem_2`,
+DROP COLUMN `paidItemCount_2`,
+DROP COLUMN `paidItem_3`,
+DROP COLUMN `paidItemCount_3`,
+DROP COLUMN `paidItem_4`,
+DROP COLUMN `paidItemCount_4`,
+DROP COLUMN `paidItem_5`,
+DROP COLUMN `paidItemCount_5`,
+ADD COLUMN `paidExtendedCost` int(11) unsigned NOT NULL DEFAULT '0'; \ No newline at end of file