castle_manor_procure.sql 512 B

12345678910111213
  1. -- ---------------------------
  2. -- Table structure for `castle_manor_procure`
  3. -- ---------------------------
  4. CREATE TABLE IF NOT EXISTS `castle_manor_procure` (
  5. `castle_id` INT NOT NULL DEFAULT '0',
  6. `crop_id` int(11) NOT NULL DEFAULT '0',
  7. `can_buy` int(11) NOT NULL DEFAULT '0',
  8. `start_buy` int(11) NOT NULL DEFAULT '0',
  9. `price` int(11) NOT NULL DEFAULT '0',
  10. `reward_type` int(11) NOT NULL DEFAULT '0',
  11. `period` INT NOT NULL DEFAULT '1',
  12. PRIMARY KEY (`castle_id`,`crop_id`,`period`)
  13. );