fort.sql 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. CREATE TABLE IF NOT EXISTS `fort` (
  2. `id` int(11) NOT NULL DEFAULT 0,
  3. `name` varchar(25) NOT NULL,
  4. `siegeDate` bigint(13) unsigned NOT NULL DEFAULT '0',
  5. `lastOwnedTime` bigint(13) unsigned NOT NULL DEFAULT '0',
  6. `owner` int(11) NOT NULL DEFAULT 0,
  7. `fortType` int(1) NOT NULL DEFAULT 0,
  8. `state` int(1) NOT NULL DEFAULT 0,
  9. `castleId` int(1) NOT NULL DEFAULT 0,
  10. `supplyLvL` int(2) NOT NULL DEFAULT 0,
  11. PRIMARY KEY (`id`),
  12. KEY `owner` (`owner`)
  13. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  14. INSERT IGNORE INTO `fort` VALUES
  15. (101,'Shanty',0,0,0,0,0,0,0),
  16. (102,'Southern',0,0,0,1,0,0,0),
  17. (103,'Hive',0,0,0,0,0,0,0),
  18. (104,'Valley',0,0,0,1,0,0,0),
  19. (105,'Ivory',0,0,0,0,0,0,0),
  20. (106,'Narsell',0,0,0,0,0,0,0),
  21. (107,'Bayou',0,0,0,1,0,0,0),
  22. (108,'White Sands',0,0,0,0,0,0,0),
  23. (109,'Borderland',0,0,0,1,0,0,0),
  24. (110,'Swamp',0,0,0,1,0,0,0),
  25. (111,'Archaic',0,0,0,0,0,0,0),
  26. (112,'Floran',0,0,0,1,0,0,0),
  27. (113,'Cloud Mountain',0,0,0,1,0,0,0),
  28. (114,'Tanor',0,0,0,0,0,0,0),
  29. (115,'Dragonspine',0,0,0,0,0,0,0),
  30. (116,'Antharas',0,0,0,1,0,0,0),
  31. (117,'Western',0,0,0,1,0,0,0),
  32. (118,'Hunters',0,0,0,1,0,0,0),
  33. (119,'Aaru',0,0,0,0,0,0,0),
  34. (120,'Demon',0,0,0,0,0,0,0),
  35. (121,'Monastic',0,0,0,0,0,0,0);