-- MySQL dump 10.11 -- -- Host: localhost Database: polytropos -- ------------------------------------------------------ -- Server version 5.0.32-Debian_7etch6-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `mt_templatemap` -- DROP TABLE IF EXISTS `mt_templatemap`; CREATE TABLE `mt_templatemap` ( `templatemap_id` int(11) NOT NULL auto_increment, `templatemap_archive_type` varchar(25) NOT NULL, `templatemap_blog_id` int(11) NOT NULL, `templatemap_build_interval` int(11) default NULL, `templatemap_build_type` smallint(6) default '1', `templatemap_file_template` varchar(255) default NULL, `templatemap_is_preferred` tinyint(4) default NULL, `templatemap_template_id` int(11) NOT NULL, PRIMARY KEY (`templatemap_id`), KEY `mt_templatemap_is_preferred` (`templatemap_is_preferred`), KEY `mt_templatemap_archive_type` (`templatemap_archive_type`), KEY `mt_templatemap_template_id` (`templatemap_template_id`), KEY `mt_templatemap_blog_id` (`templatemap_blog_id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; -- -- Dumping data for table `mt_templatemap` -- LOCK TABLES `mt_templatemap` WRITE; /*!40000 ALTER TABLE `mt_templatemap` DISABLE KEYS */; INSERT INTO `mt_templatemap` VALUES (1,'Category',1,NULL,1,'%-c/%i',1,1),(2,'Individual',1,NULL,1,'%y/%m/%-f',1,3),(3,'Page',1,NULL,1,'%-c/%-f',1,4),(4,'Monthly',1,NULL,1,'%y/%m/%i',1,36); /*!40000 ALTER TABLE `mt_templatemap` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2008-10-27 1:39:53