castle_manor_production.sql 484 B

123456789101112
  1. -- ---------------------------
  2. -- Table structure for `castle_manor_production`
  3. -- ---------------------------
  4. CREATE TABLE IF NOT EXISTS `castle_manor_production` (
  5. `castle_id` INT NOT NULL DEFAULT '0',
  6. `seed_id` int(11) NOT NULL DEFAULT '0',
  7. `can_produce` int(11) NOT NULL DEFAULT '0',
  8. `start_produce` int(11) NOT NULL DEFAULT '0',
  9. `seed_price` int(11) NOT NULL DEFAULT '0',
  10. `period` INT NOT NULL DEFAULT '1',
  11. PRIMARY KEY (`castle_id`,`seed_id`,`period`)
  12. );