Example PS Table: sectors

CREATE TABLE `planeshift.sectors` (
  `id` smallint(3) unsigned NOT NULL auto_increment,
  `name` varchar(30) NOT NULL default '',
  `rain_min_gap` int(10) unsigned NOT NULL default '0',
  `rain_max_gap` int(10) unsigned NOT NULL default '0',
  `rain_min_duration` int(10) unsigned NOT NULL default '0',
  `rain_max_duration` int(10) unsigned NOT NULL default '0',
  `rain_min_drops` int(10) unsigned NOT NULL default '0',
  `rain_max_drops` int(10) unsigned default '0',
  `lightning_min_gap` int(10) unsigned default '0',
  `lightning_max_gap` int(10) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `name` (`name`)
) TYPE=MyISAM AUTO_INCREMENT=1;

INSERT INTO `sectors` VALUES
('', 'magicshop', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'magicshopout', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'pink', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'lightgreen', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'yellow', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'purple', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'red', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'blue', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'orange', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'darkgreen01', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'darkgreen02', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'lightblue01', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'lightblue02', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'DR01', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'DRexit', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'ojaroad', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'kor01', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'kor02', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'hyoja01', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'hyoja02', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'ojapath', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'Akk-Central', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'Akk-East', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'hall', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'trans1', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'dngn', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'cntr', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'trans2', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'merc', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'upper', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'entr', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'outer', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'hycorr1', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'hycorr2', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'NPCroom', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'hydlaa_plaza', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'laanx_inside', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'jayose_inside', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'tavern_de_kadel', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'laanxdungeon', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'hydungeon', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'laanxentrance', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'laanxmain', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'laanxwell', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'wtowerdung', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'wtowerexit', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'wtowertop', 0, 0, 0, 0, 0, 0, 0, 0),
('', 'wtower', 0, 0, 0, 0, 0, 0, 0, 0);