summaryrefslogtreecommitdiff
path: root/sql-files
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-10-10 13:38:19 -0300
committershennetsind <ind@henn.et>2013-10-10 13:38:19 -0300
commitc87b1a65164f7ce3e7436a8bfe079f7b8a093ee9 (patch)
treea653b066356d95f8603e869d62df0846e9159c14 /sql-files
parentc5c3381b0b8b0b59c669d474acf749db82d7edb1 (diff)
downloadhercules-c87b1a65164f7ce3e7436a8bfe079f7b8a093ee9.tar.gz
hercules-c87b1a65164f7ce3e7436a8bfe079f7b8a093ee9.tar.bz2
hercules-c87b1a65164f7ce3e7436a8bfe079f7b8a093ee9.tar.xz
hercules-c87b1a65164f7ce3e7436a8bfe079f7b8a093ee9.zip
Follow up c5c3381b0b8b0b59c669d474acf749db82d7edb1
Missed account_data table in the upgrade file, thanks to ossi0110 Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'sql-files')
-rw-r--r--sql-files/upgrades/2013-10-10--16-36.sql7
-rw-r--r--sql-files/upgrades/index.txt3
2 files changed, 9 insertions, 1 deletions
diff --git a/sql-files/upgrades/2013-10-10--16-36.sql b/sql-files/upgrades/2013-10-10--16-36.sql
new file mode 100644
index 000000000..784449898
--- /dev/null
+++ b/sql-files/upgrades/2013-10-10--16-36.sql
@@ -0,0 +1,7 @@
+#1381423003
+CREATE TABLE IF NOT EXISTS `account_data` (
+ `account_id` int(11) unsigned NOT NULL default '0',
+ `bank_vault` int(11) unsigned NOT NULL default '0',
+ PRIMARY KEY (`account_id`)
+) ENGINE=MyISAM;
+INSERT INTO `sql_updates` (`timestamp`) VALUES (1381423003); \ No newline at end of file
diff --git a/sql-files/upgrades/index.txt b/sql-files/upgrades/index.txt
index bffc42f99..2996a07f0 100644
--- a/sql-files/upgrades/index.txt
+++ b/sql-files/upgrades/index.txt
@@ -4,4 +4,5 @@
2013-03-06--00-00.sql
2013-03-09--01-56.sql
2013-04-16--01-24.sql
-2013-10-09--21-38.sql \ No newline at end of file
+2013-10-09--21-38.sql
+2013-10-10--16-36.sql \ No newline at end of file