
- Thanks for Xantara for providing initial diff as well as Lighta for guild bound help - Adds script commands 'getitembound', 'getitembound2', and 'countbound' - Adds at commands @itembound and @itembound2 - Adds permission pc_can_traded_bounded - Documentation updated Don't forget to run the SQL upgrade file! git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@17351 54d463be-8e91-2dee-dedb-b68131a5f0ec
5 lines
424 B
SQL
5 lines
424 B
SQL
ALTER TABLE `inventory` ADD COLUMN `bound` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0' AFTER `favorite`;
|
|
ALTER TABLE `cart_inventory` ADD COLUMN `bound` TINYINT(3) UNSIGNED NOT NULL default '0' AFTER `expire_time`;
|
|
ALTER TABLE `storage` ADD COLUMN `bound` TINYINT(3) UNSIGNED NOT NULL default '0' AFTER `expire_time`;
|
|
ALTER TABLE `guild_storage` ADD COLUMN `bound` TINYINT(3) UNSIGNED NOT NULL default '0' AFTER `expire_time`;
|