Changeset 420

Show
Ignore:
Timestamp:
03/18/08 02:09:04 (5 months ago)
Author:
eevee
Message:

Converted all tables to UTF-8, hopefully fixing the little shoutbox problem. (#287, kinda #58)

Location:
veekun/trunk/script
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • veekun/trunk/script/base.sql

    r406 r420  
    1515 
    1616DROP TABLE IF EXISTS edits; 
     17SET @saved_cs_client     = @@character_set_client; 
     18SET character_set_client = utf8; 
    1719CREATE TABLE edits ( 
    1820  id int(10) unsigned NOT NULL auto_increment, 
     
    2022  user_id int(10) unsigned NOT NULL default '0', 
    2123  `time` int(10) unsigned NOT NULL default '0', 
    22   old_content text NOT NULL, 
     24  old_content mediumtext NOT NULL, 
    2325  PRIMARY KEY  (id), 
    2426  KEY POSTID USING BTREE (post_id) 
    25 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     27) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     28SET character_set_client = @saved_cs_client; 
    2629 
    2730-- 
     
    3033 
    3134DROP TABLE IF EXISTS error_log; 
     35SET @saved_cs_client     = @@character_set_client; 
     36SET character_set_client = utf8; 
    3237CREATE TABLE error_log ( 
    3338  id int(10) unsigned NOT NULL auto_increment, 
     
    4146  PRIMARY KEY  (id) 
    4247) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     48SET character_set_client = @saved_cs_client; 
    4349 
    4450-- 
     
    4753 
    4854DROP TABLE IF EXISTS forums; 
     55SET @saved_cs_client     = @@character_set_client; 
     56SET character_set_client = utf8; 
    4957CREATE TABLE forums ( 
    5058  id int(10) unsigned NOT NULL auto_increment, 
     
    5765  description varchar(255) NOT NULL, 
    5866  PRIMARY KEY  (id) 
    59 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC; 
     67) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; 
     68SET character_set_client = @saved_cs_client; 
    6069 
    6170-- 
     
    6473 
    6574DROP TABLE IF EXISTS group_permissions; 
     75SET @saved_cs_client     = @@character_set_client; 
     76SET character_set_client = utf8; 
    6677CREATE TABLE group_permissions ( 
    6778  group_id int(10) unsigned NOT NULL default '0', 
     
    7081  polarity enum('allow','deny') default NULL, 
    7182  PRIMARY KEY  USING BTREE (group_id,permission,scope) 
    72 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     83) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     84SET character_set_client = @saved_cs_client; 
    7385 
    7486-- 
     
    7789 
    7890DROP TABLE IF EXISTS groups; 
     91SET @saved_cs_client     = @@character_set_client; 
     92SET character_set_client = utf8; 
    7993CREATE TABLE groups ( 
    8094  id int(10) unsigned NOT NULL auto_increment, 
     
    8397  UNIQUE KEY id (id) 
    8498) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
     99SET character_set_client = @saved_cs_client; 
    85100 
    86101-- 
     
    89104 
    90105DROP TABLE IF EXISTS messages; 
     106SET @saved_cs_client     = @@character_set_client; 
     107SET character_set_client = utf8; 
    91108CREATE TABLE messages ( 
    92109  id int(10) unsigned NOT NULL auto_increment, 
     
    95112  `time` int(10) unsigned NOT NULL default '0', 
    96113  `subject` tinytext NOT NULL, 
    97   message text NOT NULL, 
    98   PRIMARY KEY  (id) 
    99 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     114  message mediumtext NOT NULL, 
     115  PRIMARY KEY  (id) 
     116) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     117SET character_set_client = @saved_cs_client; 
    100118 
    101119-- 
     
    104122 
    105123DROP TABLE IF EXISTS posts; 
     124SET @saved_cs_client     = @@character_set_client; 
     125SET character_set_client = utf8; 
    106126CREATE TABLE posts ( 
    107127  id int(10) unsigned NOT NULL auto_increment, 
     
    111131  `time` int(10) unsigned NOT NULL default '0', 
    112132  format enum('bbcode','raw','html') NOT NULL default 'raw', 
    113   content text NOT NULL, 
     133  content mediumtext NOT NULL, 
    114134  last_edit_id int(10) unsigned NOT NULL default '0', 
    115135  PRIMARY KEY  (id), 
    116136  KEY THREAD USING BTREE (thread_id), 
    117137  KEY `USER` USING BTREE (user_id) 
    118 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=FIXED; 
     138) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED; 
     139SET character_set_client = @saved_cs_client; 
    119140 
    120141-- 
     
    123144 
    124145DROP TABLE IF EXISTS sessions; 
     146SET @saved_cs_client     = @@character_set_client; 
     147SET character_set_client = utf8; 
    125148CREATE TABLE sessions ( 
    126149  id varchar(72) NOT NULL default '', 
    127150  user_id int(10) unsigned NOT NULL default '0', 
    128151  time_expires int(10) unsigned default NULL, 
    129   `data` text, 
     152  `data` mediumtext, 
    130153  PRIMARY KEY  USING BTREE (id), 
    131154  KEY USER_ID USING BTREE (user_id) 
    132 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     155) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     156SET character_set_client = @saved_cs_client; 
    133157 
    134158-- 
     
    137161 
    138162DROP TABLE IF EXISTS shoutbox; 
     163SET @saved_cs_client     = @@character_set_client; 
     164SET character_set_client = utf8; 
    139165CREATE TABLE shoutbox ( 
    140166  id int(10) unsigned NOT NULL auto_increment, 
     
    143169  ip int(10) unsigned NOT NULL default '0', 
    144170  `time` int(10) unsigned NOT NULL default '0', 
    145   content text NOT NULL, 
    146   PRIMARY KEY  (id) 
    147 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     171  content mediumtext NOT NULL, 
     172  PRIMARY KEY  (id) 
     173) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     174SET character_set_client = @saved_cs_client; 
    148175 
    149176-- 
     
    152179 
    153180DROP TABLE IF EXISTS threads; 
     181SET @saved_cs_client     = @@character_set_client; 
     182SET character_set_client = utf8; 
    154183CREATE TABLE threads ( 
    155184  id int(10) unsigned NOT NULL auto_increment, 
     
    165194  PRIMARY KEY  (id), 
    166195  KEY FORUMID USING BTREE (forum_id) 
    167 ) ENGINE=InnoDB DEFAULT CHARSET=latin1 ROW_FORMAT=DYNAMIC; 
     196) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; 
     197SET character_set_client = @saved_cs_client; 
    168198 
    169199-- 
     
    172202 
    173203DROP TABLE IF EXISTS thread_views; 
     204SET @saved_cs_client     = @@character_set_client; 
     205SET character_set_client = utf8; 
    174206CREATE TABLE thread_views ( 
    175207  thread_id int(10) unsigned NOT NULL, 
     
    178210  PRIMARY KEY  (thread_id,user_id) 
    179211) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
     212SET character_set_client = @saved_cs_client; 
    180213 
    181214-- 
     
    184217 
    185218DROP TABLE IF EXISTS user_groups; 
     219SET @saved_cs_client     = @@character_set_client; 
     220SET character_set_client = utf8; 
    186221CREATE TABLE user_groups ( 
    187222  user_id int(10) unsigned NOT NULL default '0', 
     
    191226  KEY user_id USING BTREE (user_id), 
    192227  KEY group_id USING BTREE (group_id) 
    193 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     228) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     229SET character_set_client = @saved_cs_client; 
    194230 
    195231-- 
     
    198234 
    199235DROP TABLE IF EXISTS users; 
     236SET @saved_cs_client     = @@character_set_client; 
     237SET character_set_client = utf8; 
    200238CREATE TABLE users ( 
    201239  id int(10) unsigned NOT NULL auto_increment, 
     
    218256  pm_icon enum('bead','bellossom','dream','duskull','eatmail','gorgeous','letter','magnemite','pika','retro','slakoth','vee','wailmer','wingull','zigzagoon') NOT NULL default 'letter', 
    219257  custom_title varchar(32) NOT NULL, 
    220   signature text NOT NULL, 
     258  signature mediumtext NOT NULL, 
    221259  is_dumb tinyint(1) NOT NULL default '0', 
    222260  PRIMARY KEY  (id), 
    223261  UNIQUE KEY `NAME` (`name`) 
    224 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     262) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     263SET character_set_client = @saved_cs_client; 
    225264/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; 
    226265 
  • veekun/trunk/script/gallery.sql

    r406 r420  
    1515 
    1616DROP TABLE IF EXISTS creators; 
     17SET @saved_cs_client     = @@character_set_client; 
     18SET character_set_client = utf8; 
    1719CREATE TABLE creators ( 
    1820  id int(10) unsigned NOT NULL auto_increment, 
     
    2224  PRIMARY KEY  (id) 
    2325) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
     26SET character_set_client = @saved_cs_client; 
    2427 
    2528-- 
     
    2831 
    2932DROP TABLE IF EXISTS gallery; 
     33SET @saved_cs_client     = @@character_set_client; 
     34SET character_set_client = utf8; 
    3035CREATE TABLE gallery ( 
    3136  id int(10) unsigned NOT NULL auto_increment, 
     
    3742  `hash` varchar(32) NOT NULL default '', 
    3843  title varchar(48) NOT NULL default '', 
    39   description text NOT NULL, 
     44  description mediumtext NOT NULL, 
    4045  height smallint(5) unsigned NOT NULL default '0', 
    4146  width smallint(5) unsigned NOT NULL default '0', 
     
    4550  PRIMARY KEY  (id), 
    4651  UNIQUE KEY filename (filename) 
    47 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     52) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     53SET character_set_client = @saved_cs_client; 
    4854 
    4955-- 
     
    5258 
    5359DROP TABLE IF EXISTS gallery_keywords; 
     60SET @saved_cs_client     = @@character_set_client; 
     61SET character_set_client = utf8; 
    5462CREATE TABLE gallery_keywords ( 
    5563  id int(10) unsigned NOT NULL auto_increment, 
     
    5967  PRIMARY KEY  (id), 
    6068  UNIQUE KEY keyword (keyword) 
    61 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     69) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     70SET character_set_client = @saved_cs_client; 
    6271 
    6372-- 
     
    6675 
    6776DROP TABLE IF EXISTS item_keywords; 
     77SET @saved_cs_client     = @@character_set_client; 
     78SET character_set_client = utf8; 
    6879CREATE TABLE item_keywords ( 
    6980  itemid int(10) unsigned NOT NULL default '0', 
     
    7283  KEY itemid (itemid), 
    7384  KEY keywordid (keywordid) 
    74 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     85) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     86SET character_set_client = @saved_cs_client; 
    7587/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; 
    7688 
  • veekun/trunk/script/pokedex.sql

    r410 r420  
    1515 
    1616DROP TABLE IF EXISTS abilities; 
     17SET @saved_cs_client     = @@character_set_client; 
     18SET character_set_client = utf8; 
    1719CREATE TABLE abilities ( 
    1820  id tinyint(3) unsigned NOT NULL default '0', 
     
    2224  PRIMARY KEY  (id) 
    2325) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     26SET character_set_client = @saved_cs_client; 
    2427 
    2528-- 
     
    161164 
    162165DROP TABLE IF EXISTS berries; 
     166SET @saved_cs_client     = @@character_set_client; 
     167SET character_set_client = utf8; 
    163168CREATE TABLE berries ( 
    164169  id int(10) unsigned NOT NULL auto_increment, 
     
    176181  PRIMARY KEY  (id) 
    177182) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
     183SET character_set_client = @saved_cs_client; 
    178184 
    179185-- 
     
    255261 
    256262DROP TABLE IF EXISTS contest_effects; 
     263SET @saved_cs_client     = @@character_set_client; 
     264SET character_set_client = utf8; 
    257265CREATE TABLE contest_effects ( 
    258266  id tinyint(4) NOT NULL default '0', 
     
    263271  PRIMARY KEY  (id) 
    264272) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     273SET character_set_client = @saved_cs_client; 
    265274 
    266275-- 
     
    311320 
    312321DROP TABLE IF EXISTS evo_chains; 
     322SET @saved_cs_client     = @@character_set_client; 
     323SET character_set_client = utf8; 
    313324CREATE TABLE evo_chains ( 
    314325  id tinyint(3) unsigned NOT NULL default '0', 
     
    317328  baby_item varchar(12) NOT NULL, 
    318329  PRIMARY KEY  (id) 
    319 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     330) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     331SET character_set_client = @saved_cs_client; 
    320332 
    321333-- 
     
    581593 
    582594DROP TABLE IF EXISTS flavor_text; 
     595SET @saved_cs_client     = @@character_set_client; 
     596SET character_set_client = utf8; 
    583597CREATE TABLE flavor_text ( 
    584598  pokemon_id smallint(5) unsigned NOT NULL default '0', 
     
    587601  PRIMARY KEY  USING BTREE (pokemon_id,generation) 
    588602) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     603SET character_set_client = @saved_cs_client; 
    589604 
    590605-- 
     
    40884103 
    40894104DROP TABLE IF EXISTS items; 
     4105SET @saved_cs_client     = @@character_set_client; 
     4106SET character_set_client = utf8; 
    40904107CREATE TABLE items ( 
    40914108  id int(10) unsigned NOT NULL, 
     
    41294146  PRIMARY KEY  (id) 
    41304147) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC; 
     4148SET character_set_client = @saved_cs_client; 
    41314149 
    41324150-- 
     
    45854603 
    45864604DROP TABLE IF EXISTS locations; 
     4605SET @saved_cs_client     = @@character_set_client; 
     4606SET character_set_client = utf8; 
    45874607CREATE TABLE locations ( 
    45884608  id int(10) unsigned NOT NULL auto_increment, 
     
    45934613  PRIMARY KEY  (id) 
    45944614) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
     4615SET character_set_client = @saved_cs_client; 
    45954616 
    45964617-- 
     
    46884709 
    46894710DROP TABLE IF EXISTS location_sections; 
     4711SET @saved_cs_client     = @@character_set_client; 
     4712SET character_set_client = utf8; 
    46904713CREATE TABLE location_sections ( 
    46914714  id int(10) unsigned NOT NULL auto_increment, 
     
    46944717  PRIMARY KEY  (id) 
    46954718) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
     4719SET character_set_client = @saved_cs_client; 
    46964720 
    46974721-- 
     
    48494873 
    48504874DROP TABLE IF EXISTS location_encounters; 
     4875SET @saved_cs_client     = @@character_set_client; 
     4876SET character_set_client = utf8; 
    48514877CREATE TABLE location_encounters ( 
    48524878  location_id int(10) unsigned NOT NULL, 
     
    48604886  max_level tinyint(3) unsigned NOT NULL default '0' 
    48614887) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
     4888SET character_set_client = @saved_cs_client; 
    48624889 
    48634890-- 
     
    1152311550 
    1152411551DROP TABLE IF EXISTS machines; 
     11552SET @saved_cs_client     = @@character_set_client; 
     11553SET character_set_client = utf8; 
    1152511554CREATE TABLE machines ( 
    1152611555  id tinyint(3) unsigned NOT NULL default '0', 
     
    1153011559  location tinytext NOT NULL, 
    1153111560  PRIMARY KEY  (id,generation) 
    11532 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     11561) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     11562SET character_set_client = @saved_cs_client; 
    1153311563 
    1153411564-- 
     
    1181611846 
    1181711847DROP TABLE IF EXISTS moves; 
     11848SET @saved_cs_client     = @@character_set_client; 
     11849SET character_set_client = utf8; 
    1181811850CREATE TABLE moves ( 
    1181911851  id smallint(3) NOT NULL default '0', 
    1182011852  `name` varchar(30) NOT NULL default '', 
    11821   name_jp tinyblob NOT NULL, 
     11853  name_jp varchar(7) default NULL, 
    1182211854  name_romaji varchar(16) NOT NULL default '', 
    1182311855  `type` varchar(8) NOT NULL default '', 
     
    1183511867  move_effect_id int(10) unsigned NOT NULL, 
    1183611868  blurb_rusa tinytext NOT NULL, 
    11837   blurb_dp tinytext character set utf8 NOT NULL, 
     11869  blurb_dp tinytext NOT NULL, 
    1183811870  contest_type enum('cute','tough','smart','cool','beauty') NOT NULL default 'cute', 
    1183911871  contest_effect_id tinyint(4) NOT NULL default '0', 
    11840   notes text, 
     11872  notes mediumtext, 
    1184111873  XXX_new_flags char(13) default NULL, 
    1184211874  PRIMARY KEY  (id) 
    11843 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     11875) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     11876SET character_set_client = @saved_cs_client; 
    1184411877 
    1184511878-- 
     
    1233512368 
    1233612369DROP TABLE IF EXISTS move_effects; 
     12370SET @saved_cs_client     = @@character_set_client; 
     12371SET character_set_client = utf8; 
    1233712372CREATE TABLE move_effects ( 
    1233812373  id int(10) unsigned NOT NULL, 
    1233912374  priority tinyint(4) NOT NULL, 
    1234012375  short_description varchar(128) NOT NULL, 
    12341   description text NOT NULL, 
     12376  description mediumtext NOT NULL, 
    1234212377  PRIMARY KEY  (id) 
    12343 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     12378) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     12379SET character_set_client = @saved_cs_client; 
    1234412380 
    1234512381-- 
     
    1261412650 
    1261512651DROP TABLE IF EXISTS pokemon; 
     12652SET @saved_cs_client     = @@character_set_client; 
     12653SET character_set_client = utf8; 
    1261612654CREATE TABLE pokemon ( 
    1261712655  id smallint(3) NOT NULL default '0', 
     
    1262112659  `name` varchar(20) NOT NULL default '', 
    1262212660  alt_form varchar(16) NOT NULL, 
    12623   name_jp tinyblob NOT NULL, 
     12661  name_jp varchar(5) default NULL, 
    1262412662  name_romaji varchar(16) NOT NULL default '', 
    1262512663  evo_chain_id smallint(3) unsigned NOT NULL default '0', 
     
    1264612684  gender_rate tinyint(3) unsigned NOT NULL default '0', 
    1264712685  base_happiness tinyint(3) unsigned NOT NULL, 
    12648   notes text, 
     12686  notes mediumtext, 
    1264912687  flags set('baby','dpfem','dpfemback') NOT NULL default '', 
    1265012688  real_pokemon_id int(10) unsigned NOT NULL, 
     
    1265712695  KEY HP (stat_hp), 
    1265812696  KEY REALID USING BTREE (real_pokemon_id) 
    12659 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     12697) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     12698SET character_set_client = @saved_cs_client; 
    1266012699 
    1266112700-- 
     
    1317313212 
    1317413213DROP TABLE IF EXISTS pokemon_abilities; 
     13214SET @saved_cs_client     = @@character_set_client; 
     13215SET character_set_client = utf8; 
    1317513216CREATE TABLE pokemon_abilities ( 
    1317613217  pokemon_id int(10) unsigned NOT NULL, 
     
    1318113222  KEY abilityid USING BTREE (ability_id) 
    1318213223) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     13224SET character_set_client = @saved_cs_client; 
    1318313225 
    1318413226-- 
     
    1396614008 
    1396714009DROP TABLE IF EXISTS pokemon_breeds; 
     14010SET @saved_cs_client     = @@character_set_client; 
     14011SET character_set_client = utf8; 
    1396814012CREATE TABLE pokemon_breeds ( 
    1396914013  pokemon_id int(10) unsigned NOT NULL, 
     
    1397214016  KEY breed (breed), 
    1397314017  KEY pokeid USING BTREE (pokemon_id) 
    13974 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     14018) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     14019SET character_set_client = @saved_cs_client; 
    1397514020 
    1397614021-- 
     
    1463414679 
    1463514680DROP TABLE IF EXISTS pokemon_items; 
     14681SET @saved_cs_client     = @@character_set_client; 
     14682SET character_set_client = utf8; 
    1463614683CREATE TABLE pokemon_items ( 
    1463714684  pokemon_id smallint(5) unsigned NOT NULL, 
     
    1464214689  KEY item (item_id) 
    1464314690) ENGINE=InnoDB DEFAULT CHARSET=utf8; 
     14691SET character_set_client = @saved_cs_client; 
    1464414692 
    1464514693-- 
     
    1488214930 
    1488314931DROP TABLE IF EXISTS pokemon_moves; 
     14932SET @saved_cs_client     = @@character_set_client; 
     14933SET character_set_client = utf8; 
    1488414934CREATE TABLE pokemon_moves ( 
    1488514935  pokemon_id smallint(5) unsigned NOT NULL default '0', 
     
    1489314943  KEY MOVEID USING BTREE (move_id), 
    1489414944  KEY VERSION USING BTREE (versions) 
    14895 ) ENGINE=MyISAM DEFAULT CHARSET=latin1; 
     14945) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     14946SET character_set_client = @saved_cs_client; 
    1489614947 
    1489714948-- 
     
    5411454165 
    5411554166DROP TABLE IF EXISTS types; 
     54167SET @saved_cs_client     = @@character_set_client; 
     54168SET character_set_client = utf8; 
    5411654169CREATE TABLE `types` ( 
    5411754170  `name` varchar(8) NOT NULL default '', 
     
    5412554178  PRIMARY KEY  (`name`) 
    5412654179) ENGINE=MyISAM DEFAULT CHARSET=utf8; 
     54180SET character_set_client = @saved_cs_client; 
    5412754181 
    5412854182--