diff options
author | shennetsind <ind@henn.et> | 2013-11-17 17:22:22 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2013-11-17 17:22:22 -0200 |
commit | 0839d5126e62ba9ad0ddf4fe8b548483fbb1c746 (patch) | |
tree | 8faab240afca8ea4a1cc0eaa4a599b59f5a65b6f /sql-files/upgrades | |
parent | 14be5d4d9d79e57e1db3f1e251c7036f8bbe984a (diff) | |
parent | e095650d437c81e6ae90a99a3cd1bb0c8c6eba38 (diff) | |
download | hercules-0839d5126e62ba9ad0ddf4fe8b548483fbb1c746.tar.gz hercules-0839d5126e62ba9ad0ddf4fe8b548483fbb1c746.tar.bz2 hercules-0839d5126e62ba9ad0ddf4fe8b548483fbb1c746.tar.xz hercules-0839d5126e62ba9ad0ddf4fe8b548483fbb1c746.zip |
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to 'sql-files/upgrades')
-rw-r--r-- | sql-files/upgrades/rAthena-main-upgrade.sql | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql-files/upgrades/rAthena-main-upgrade.sql b/sql-files/upgrades/rAthena-main-upgrade.sql index d91ca09fe..19f6d55ec 100644 --- a/sql-files/upgrades/rAthena-main-upgrade.sql +++ b/sql-files/upgrades/rAthena-main-upgrade.sql @@ -4,7 +4,6 @@ -- 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 main.sql --- Last revision: November 10, 2013, 19:00 -- Drop table contents from ´sc_data´ since we use a different status order than rAthena -- /!\ WARNING /!\ This will remove _ALL_ of the status effects active on the server @@ -22,6 +21,7 @@ ALTER TABLE `cart_inventory` MODIFY `bound` tinyint(1) unsigned NOT NULL default ALTER TABLE `char` CHANGE `moves` `slotchange` SMALLINT(3) UNSIGNED NOT NULL default '0', ADD `char_opt` INT( 11 ) UNSIGNED NOT NULL default '0', ADD `font` TINYINT( 3 ) UNSIGNED NOT NULL DEFAULT '0'; + ADD `unban_time` int(11) unsigned NOT NULL default '0'; -- Upgrades for table `guild_storage` ALTER TABLE `guild_storage` MODIFY `bound` tinyint(1) unsigned NOT NULL default '0'; @@ -57,6 +57,7 @@ INSERT INTO `sql_updates` (`timestamp`) VALUES (1383167577); INSERT INTO `sql_updates` (`timestamp`) VALUES (1383205740); INSERT INTO `sql_updates` (`timestamp`) VALUES (1383955424); INSERT INTO `sql_updates` (`timestamp`) VALUES (1384545461); +INSERT INTO `sql_updates` (`timestamp`) VALUES (1384588175); -- Updates to table `storage` ALTER TABLE `storage` MODIFY `bound` tinyint(1) unsigned NOT NULL default '0'; |