aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorkaelima <kaelima@live.se>2011-11-26 01:46:41 +0100
committerkaelima <kaelima@live.se>2011-11-26 01:46:41 +0100
commitaa215e5e8083c045662151eed67caeb2a7f8caa5 (patch)
tree81d6b131387717bd2f67d9700766f1109f74f77e /sql
parente8c3a3ac9c032cf56ec11620ba7dd33efed487c5 (diff)
Core/Misc: Fix compile and char creation
- Added very basic honor/conquest support, no idea if its works even a little since there's no possibility of testing yet
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/characters/2011_11_26_00_characters_characters.sql5
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/characters/2011_11_26_00_characters_characters.sql b/sql/updates/characters/2011_11_26_00_characters_characters.sql
new file mode 100644
index 00000000000..9fe2b4c804e
--- /dev/null
+++ b/sql/updates/characters/2011_11_26_00_characters_characters.sql
@@ -0,0 +1,5 @@
+ALTER TABLE `characters`
+DROP COLUMN `todayHonorPoints`,
+DROP COLUMN `yesterdayHonorPoints`,
+DROP COLUMN `knownCurrencies`,
+CHANGE COLUMN `arenaPoints` `conquestPoints` INT(10) UNSIGNED NOT NULL DEFAULT '0' AFTER `taxi_path`;