rathena/sql-files/upgrades/upgrade_20170327.sql
Lemongrass3110 6eb4cc408f Fixes #2004
Thanks to @daisyanne1380

Make sure to make a backup of your tables' content before running the upgrade script - in case of any conversion problems that might occur.
2017-03-27 00:31:02 +02:00

13 lines
288 B
SQL

alter table `item_db2_re`
change `attack` `atk:matk` varchar(11) DEFAULT NULL,
modify `equip_level` varchar(10) DEFAULT NULL
;
alter table `mob_db2`
modify `Mode` int(11) unsigned NOT NULL default '0'
;
alter table `mob_db2_re`
modify `Mode` int(11) unsigned NOT NULL default '0'
;