Database Installer.
This commit is contained in:
9
trunk/dist/db_installer/sql/game/commission_items.sql
vendored
Normal file
9
trunk/dist/db_installer/sql/game/commission_items.sql
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
DROP TABLE IF EXISTS `commission_items`;
|
||||
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;
|
Reference in New Issue
Block a user