diff options
author | shennetsind <ind@henn.et> | 2013-10-10 13:38:19 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-10-10 13:38:19 -0300 |
commit | c87b1a65164f7ce3e7436a8bfe079f7b8a093ee9 (patch) | |
tree | a653b066356d95f8603e869d62df0846e9159c14 | |
parent | c5c3381b0b8b0b59c669d474acf749db82d7edb1 (diff) | |
download | hercules-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>
-rw-r--r-- | sql-files/upgrades/2013-10-10--16-36.sql | 7 | ||||
-rw-r--r-- | sql-files/upgrades/index.txt | 3 |
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 |