summaryrefslogtreecommitdiff
path: root/sql-files/upgrades/rAthena-logs-upgrade.sql
diff options
context:
space:
mode:
authorHappy <markaizer@gmail.com>2014-08-21 04:50:46 +0800
committerHappy <markaizer@gmail.com>2014-08-21 04:50:46 +0800
commitf52e1007fe08c67003c0bc4c78231904dd3fd5cc (patch)
tree99907d827264e501774e58ab4630e41fa7103c02 /sql-files/upgrades/rAthena-logs-upgrade.sql
parent2410110dece79b4598c12f1c953219f1d0d1904a (diff)
parent769b1d05aa5cfa8cddfe7d21b35d5c5e4da3bbd6 (diff)
downloadhercules-f52e1007fe08c67003c0bc4c78231904dd3fd5cc.tar.gz
hercules-f52e1007fe08c67003c0bc4c78231904dd3fd5cc.tar.bz2
hercules-f52e1007fe08c67003c0bc4c78231904dd3fd5cc.tar.xz
hercules-f52e1007fe08c67003c0bc4c78231904dd3fd5cc.zip
Merge pull request #1 from HerculesWS/master
Update from original
Diffstat (limited to 'sql-files/upgrades/rAthena-logs-upgrade.sql')
-rw-r--r--sql-files/upgrades/rAthena-logs-upgrade.sql22
1 files changed, 22 insertions, 0 deletions
diff --git a/sql-files/upgrades/rAthena-logs-upgrade.sql b/sql-files/upgrades/rAthena-logs-upgrade.sql
new file mode 100644
index 000000000..a286099a1
--- /dev/null
+++ b/sql-files/upgrades/rAthena-logs-upgrade.sql
@@ -0,0 +1,22 @@
+-- rAthena to Hercules log database upgrade query.
+-- This upgrades a FULLY UPGRADED rAthena to a FULLY UPGRADED Hercules
+-- Please don't use if either rAthena or Hercules launched a SQL update after last revision date of this file.
+-- Remember to make a backup before applying.
+-- We are not liable for any data loss this may cause.
+-- Apply in the same database you applied your logs.sql
+-- Last revised: July 22, 2014 20:45 GMT
+
+-- Drop table `cashlog` since it's not used in Hercules
+-- Comment it if you wish to keep the table
+DROP TABLE IF EXISTS `cashlog`;
+
+-- Upgrades to table `mvplog`
+ALTER TABLE `mvplog` MODIFY `prize` INT(11) NOT NULL DEFAULT '0';
+
+-- Upgrades to table `picklog`
+ALTER TABLE `picklog` MODIFY `type` enum('M','P','L','T','V','S','N','C','A','R','G','E','B','O','I','X','D','U') NOT NULL default 'P';
+ALTER TABLE `picklog` MODIFY `nameid` INT(11) NOT NULL DEFAULT '0';
+ALTER TABLE `picklog` MODIFY `card0` INT(11) NOT NULL DEFAULT '0';
+ALTER TABLE `picklog` MODIFY `card1` INT(11) NOT NULL DEFAULT '0';
+ALTER TABLE `picklog` MODIFY `card2` INT(11) NOT NULL DEFAULT '0';
+ALTER TABLE `picklog` MODIFY `card3` INT(11) NOT NULL DEFAULT '0';