castle_manor_procure.sql 521 B

12345678910
  1. CREATE TABLE IF NOT EXISTS `castle_manor_procure` (
  2. `castle_id` TINYINT(3) UNSIGNED NOT NULL DEFAULT '0',
  3. `crop_id` INT(11) UNSIGNED NOT NULL DEFAULT '0',
  4. `amount` INT(11) UNSIGNED NOT NULL DEFAULT '0',
  5. `start_amount` INT(11) UNSIGNED NOT NULL DEFAULT '0',
  6. `price` INT(11) UNSIGNED NOT NULL DEFAULT '0',
  7. `reward_type` TINYINT(1) UNSIGNED NOT NULL DEFAULT '0',
  8. `next_period` TINYINT(1) UNSIGNED NOT NULL DEFAULT '1',
  9. PRIMARY KEY (`castle_id`,`crop_id`,`next_period`)
  10. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;