fort_functions.sql 379 B

123456789
  1. CREATE TABLE IF NOT EXISTS `fort_functions` (
  2. `fort_id` int(2) NOT NULL DEFAULT '0',
  3. `type` int(1) NOT NULL DEFAULT '0',
  4. `lvl` int(3) NOT NULL DEFAULT '0',
  5. `lease` int(10) NOT NULL DEFAULT '0',
  6. `rate` decimal(20,0) NOT NULL DEFAULT '0',
  7. `endTime` bigint(13) unsigned NOT NULL DEFAULT '0',
  8. PRIMARY KEY (`fort_id`,`type`)
  9. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;