quotes.sql 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. ###
  2. # date: 200325
  3. # this is a dump file from the database, which you have to import to your databse which you careted during the "install"
  4. # the table name will be "quotes"
  5. # if you want to change the table name, overwrite "quotes" with something else in line 20 and 23.
  6. # unless just import this into your databse.
  7. ###
  8. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  9. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  10. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  11. /*!40101 SET NAMES utf8 */;
  12. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  13. /*!40103 SET TIME_ZONE='+00:00' */;
  14. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  15. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  16. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  17. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  18. DROP TABLE IF EXISTS `quotes`;
  19. /*!40101 SET @saved_cs_client = @@character_set_client */;
  20. /*!40101 SET character_set_client = utf8 */;
  21. CREATE TABLE `quotes` (
  22. `id` bigint(20) NOT NULL AUTO_INCREMENT,
  23. `nick` varchar(20) NOT NULL DEFAULT '',
  24. `host` varchar(100) NOT NULL DEFAULT '',
  25. `quote` text NOT NULL,
  26. `channel` varchar(50) NOT NULL DEFAULT '',
  27. `timestamp` bigint(20) DEFAULT NULL,
  28. PRIMARY KEY (`id`)
  29. ) ENGINE=MyISAM AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
  30. /*!40101 SET character_set_client = @saved_cs_client */;