castle_functions.sql 451 B

123456789101112
  1. -- ---------------------------
  2. -- Table structure for `castle_functions`
  3. -- ---------------------------
  4. CREATE TABLE IF NOT EXISTS `castle_functions` (
  5. `castle_id` int(2) NOT NULL default '0',
  6. `type` int(1) NOT NULL default '0',
  7. `lvl` int(3) NOT NULL default '0',
  8. `lease` int(10) NOT NULL default '0',
  9. `rate` decimal(20,0) NOT NULL default '0',
  10. `endTime` decimal(20,0) NOT NULL default '0',
  11. PRIMARY KEY (`castle_id`,`type`)
  12. );