rathena/sql-files/upgrades/upgrade_20201105.sql
Lemongrass3110 d01b718cc0
Initial support for enchantgrade (#5445)
Thanks to @LunarSHINING, @idk-whoami and @attackjom
2020-11-05 22:18:12 +01:00

21 lines
656 B
SQL

ALTER TABLE `auction`
ADD COLUMN `enchantgrade` tinyint unsigned NOT NULL default '0';
ALTER TABLE `cart_inventory`
ADD COLUMN `enchantgrade` tinyint unsigned NOT NULL default '0';
ALTER TABLE `guild_storage`
ADD COLUMN `enchantgrade` tinyint unsigned NOT NULL default '0';
ALTER TABLE `guild_storage_log`
ADD COLUMN `enchantgrade` tinyint unsigned NOT NULL default '0';
ALTER TABLE `inventory`
ADD COLUMN `enchantgrade` tinyint unsigned NOT NULL default '0';
ALTER TABLE `mail_attachments`
ADD COLUMN `enchantgrade` tinyint unsigned NOT NULL default '0';
ALTER TABLE `storage`
ADD COLUMN `enchantgrade` tinyint unsigned NOT NULL default '0';