Increased items table loc length to 13 characters.

This commit is contained in:
mobius 2015-01-31 04:04:49 +00:00
parent e7005fbedd
commit 032e7a5412

View File

@ -4,7 +4,7 @@ CREATE TABLE IF NOT EXISTS `items` (
`item_id` INT, `item_id` INT,
`count` BIGINT UNSIGNED NOT NULL DEFAULT 0, `count` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`enchant_level` INT, `enchant_level` INT,
`loc` VARCHAR(10), -- inventory,paperdoll,npc,clan warehouse,pet,and so on `loc` VARCHAR(13), -- inventory,paperdoll,npc,clan warehouse,pet,and so on
`loc_data` INT, -- depending on location: equiped slot,npc id,pet id,etc `loc_data` INT, -- depending on location: equiped slot,npc id,pet id,etc
`time_of_use` INT, -- time of item use, for calculate of breackages `time_of_use` INT, -- time of item use, for calculate of breackages
`custom_type1` INT DEFAULT 0, `custom_type1` INT DEFAULT 0,