diff options
author | maqc1 <alex--223@hotmail.com> | 2015-12-13 20:53:48 -0500 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-20 18:07:02 +0100 |
commit | 91a3b9831f06e1a7ccb478596e02d463917ba8d3 (patch) | |
tree | 04b9748de0fa4ae39204848d4cfef3a5be615951 | |
parent | b5c5e6c91b0b7009dc17492419c1f116fbd7d037 (diff) | |
download | hercules-91a3b9831f06e1a7ccb478596e02d463917ba8d3.tar.gz hercules-91a3b9831f06e1a7ccb478596e02d463917ba8d3.tar.bz2 hercules-91a3b9831f06e1a7ccb478596e02d463917ba8d3.tar.xz hercules-91a3b9831f06e1a7ccb478596e02d463917ba8d3.zip |
Added a missing parse on line 59 of eathena_upgrade.sql
Closes #945 as merged
Signed-off-by: Haru <haru@dotalux.com>
-rw-r--r-- | sql-files/upgrades/eathena-upgrade.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql-files/upgrades/eathena-upgrade.sql b/sql-files/upgrades/eathena-upgrade.sql index 83eda8c1f..53053fa7a 100644 --- a/sql-files/upgrades/eathena-upgrade.sql +++ b/sql-files/upgrades/eathena-upgrade.sql @@ -74,7 +74,7 @@ ALTER TABLE `item_db_re` MODIFY COLUMN `atk:matk` VARCHAR(11) DEFAULT ''; ALTER TABLE `item_db_re` MODIFY COLUMN `defence` SMALLINT(5) UNSIGNED DEFAULT NULL; -ALTER TABLE `homunculus` ADD `prev_class` MEDIUMINT( 9 ) NOT NULL AFTER `class` +ALTER TABLE `homunculus` ADD `prev_class` MEDIUMINT( 9 ) NOT NULL AFTER `class`; ALTER TABLE `item_db_re` MODIFY `defence` SMALLINT(5) DEFAULT NULL; |