diff options
author | Matias <matiassw@gmail.com> | 2013-06-25 16:59:44 -0400 |
---|---|---|
committer | Matias <matiassw@gmail.com> | 2013-06-25 16:59:44 -0400 |
commit | b40371d3a0772031d12f2782c10976413c6f34b9 (patch) | |
tree | 7aeed5544a9df524a834cc739d3f596b66d6a006 /sql-files/tools/convert_engine_innodb.sql | |
parent | 25914bae30eced388cf8640eead19fbb11a65ade (diff) | |
parent | 5785dbae3f513da20611e3147dadef2b9c911443 (diff) | |
download | hercules-b40371d3a0772031d12f2782c10976413c6f34b9.tar.gz hercules-b40371d3a0772031d12f2782c10976413c6f34b9.tar.bz2 hercules-b40371d3a0772031d12f2782c10976413c6f34b9.tar.xz hercules-b40371d3a0772031d12f2782c10976413c6f34b9.zip |
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to 'sql-files/tools/convert_engine_innodb.sql')
-rw-r--r-- | sql-files/tools/convert_engine_innodb.sql | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sql-files/tools/convert_engine_innodb.sql b/sql-files/tools/convert_engine_innodb.sql index fcb240bb1..5d74b9309 100644 --- a/sql-files/tools/convert_engine_innodb.sql +++ b/sql-files/tools/convert_engine_innodb.sql @@ -1,11 +1,12 @@ -- --- rAthena Database Converter ( MyISAM -> InnoDB ) +-- Hercules Database Converter ( MyISAM -> InnoDB ) -- ALTER TABLE `auction` ENGINE = InnoDB; ALTER TABLE `cart_inventory` ENGINE = InnoDB; ALTER TABLE `char` ENGINE = InnoDB; ALTER TABLE `charlog` ENGINE = InnoDB; +ALTER TABLE `elemental` ENGINE = InnoDB; ALTER TABLE `friends` ENGINE = InnoDB; ALTER TABLE `global_reg_value` ENGINE = InnoDB; ALTER TABLE `guild` ENGINE = InnoDB; @@ -19,6 +20,7 @@ ALTER TABLE `guild_storage` ENGINE = InnoDB; ALTER TABLE `homunculus` ENGINE = InnoDB; ALTER TABLE `hotkey` ENGINE = InnoDB; ALTER TABLE `interlog` ENGINE = InnoDB; +ALTER TABLE `intereg` ENGINE = InnoDB; ALTER TABLE `inventory` ENGINE = InnoDB; ALTER TABLE `ipbanlist` ENGINE = InnoDB; #ALTER TABLE `item_db` ENGINE = InnoDB; @@ -38,5 +40,6 @@ ALTER TABLE `ragsrvinfo` ENGINE = InnoDB; ALTER TABLE `sc_data` ENGINE = InnoDB; ALTER TABLE `skill` ENGINE = InnoDB; ALTER TABLE `skill_homunculus` ENGINE = InnoDB; +ALTER TABLE `sql_updates` ENGINE = InnoDB; ALTER TABLE `sstatus` ENGINE = InnoDB; ALTER TABLE `storage` ENGINE = InnoDB; |