raw_map_data.sql 957 B

12345678910111213141516171819202122
  1. DROP TABLE IF EXISTS `raw_map_data`;
  2. CREATE TABLE `raw_map_data` (
  3. `id` int(10) unsigned NOT NULL auto_increment,
  4. `map_id` int(10) unsigned NOT NULL default '0',
  5. `zone_name` varchar(128) NOT NULL,
  6. `highest` float NOT NULL default '0',
  7. `lowest` float NOT NULL default '0',
  8. `explored_map_name` varchar(255) NOT NULL,
  9. `unexplored_map_name` varchar(255) NOT NULL,
  10. `bounds1_x` float NOT NULL default '0',
  11. `bounds1_z` float NOT NULL default '0',
  12. `bounds2_x` float NOT NULL default '0',
  13. `bounds2_z` float NOT NULL default '0',
  14. `bounds3_x` float NOT NULL default '0',
  15. `bounds3_z` float NOT NULL default '0',
  16. `bounds4_x` float NOT NULL default '0',
  17. `bounds4_z` float NOT NULL default '0',
  18. `explored_key` bigint(20) unsigned NOT NULL default '0',
  19. `unexplored_key` bigint(20) unsigned NOT NULL default '0',
  20. PRIMARY KEY (`id`),
  21. UNIQUE KEY `MapIDX` (`map_id`,`zone_name`,`unexplored_map_name`,`explored_map_name`)
  22. ) ENGINE=InnoDB;