l2j_mobius/trunk/dist/tools/sql/game/commission_items.sql
MobiusDev 2cf52bad9b Fixed Talking Island and Faeron Village scrolls of escape.
Dropped Batalion Zone due to lack of further development.
Added Various missing syncs from L2jServer Ertheia.
2015-04-22 16:48:31 +00:00

9 lines
284 B
SQL

CREATE TABLE IF NOT EXISTS `commission_items` (
`commission_id` BIGINT NOT NULL AUTO_INCREMENT,
`item_object_id` INT NOT NULL,
`price_per_unit` BIGINT NOT NULL,
`start_time` TIMESTAMP NOT NULL,
`duration_in_days` TINYINT NOT NULL,
PRIMARY KEY (`commission_id`)
) ENGINE=InnoDB;