Advertisement
Guest User

Untitled

a guest
Sep 20th, 2012
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. DROP TABLE IF EXISTS `phpbb_words`;
  2. SET @saved_cs_client = @@character_set_client;
  3. SET character_set_client = utf8;
  4. CREATE TABLE `phpbb_words` (
  5. `word_id` mediumint(8) unsigned NOT NULL auto_increment,
  6. `word` char(100) collate latin1_general_ci NOT NULL,
  7. `replacement` char(100) collate latin1_general_ci NOT NULL,
  8. PRIMARY KEY (`word_id`)
  9. ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
  10. SET character_set_client = @saved_cs_client;
  11.  
  12. --
  13. -- Dumping data for table `phpbb_words`
  14. --
  15.  
  16. /*!40000 ALTER TABLE `phpbb_words` DISABLE KEYS */;
  17. /*!40000 ALTER TABLE `phpbb_words` ENABLE KEYS */;
  18. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  19.  
  20. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  21. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  22. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  23. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  24. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  25. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  26. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement