This commit is contained in:
10
trunk/dist/sql/game/castle_manor_procure.sql
vendored
Normal file
10
trunk/dist/sql/game/castle_manor_procure.sql
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE TABLE IF NOT EXISTS `castle_manor_procure` (
|
||||
`castle_id` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`crop_id` INT(11) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`amount` INT(11) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`start_amount` INT(11) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`price` INT(11) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`reward_type` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
|
||||
`next_period` TINYINT(1) UNSIGNED NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`castle_id`,`crop_id`,`next_period`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
Reference in New Issue
Block a user