1 DROP TABLE IF EXISTS `pet_name_generation`;
2 CREATE TABLE `pet_name_generation` (
3 `id` mediumint(8) unsigned NOT NULL auto_increment,
4 `word` tinytext NOT NULL,
5 `entry` mediumint(8) unsigned NOT NULL default '0',
6 `half` tinyint(4) NOT NULL default '0',
8 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10 INSERT INTO `pet_name_generation` (`word`,`entry`,`half`) VALUES