-- phpMyAdmin SQL Dump -- version 3.0.1.1 -- http://www.phpmyadmin.net -- -- Host: prod0.aksw.org -- Generation Time: Feb 23, 2010 at 07:20 PM -- Server version: 5.0.32 -- PHP Version: 5.2.0-8+etch16 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!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 */; -- -- Database: `dbpedia_blog` -- -- -------------------------------------------------------- -- -- Table structure for table `wp_categories` -- CREATE TABLE IF NOT EXISTS `wp_categories` ( `cat_ID` bigint(20) NOT NULL auto_increment, `cat_name` varchar(55) NOT NULL default '', `category_nicename` varchar(200) NOT NULL default '', `category_description` longtext NOT NULL, `category_parent` bigint(20) NOT NULL default '0', `category_count` bigint(20) NOT NULL default '0', `link_count` bigint(20) NOT NULL default '0', `posts_private` tinyint(1) NOT NULL default '0', `links_private` tinyint(1) NOT NULL default '0', PRIMARY KEY (`cat_ID`), KEY `category_nicename` (`category_nicename`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ; -- -------------------------------------------------------- -- -- Table structure for table `wp_comments` -- CREATE TABLE IF NOT EXISTS `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL auto_increment, `comment_post_ID` int(11) NOT NULL default '0', `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL default '', `comment_author_url` varchar(200) NOT NULL default '', `comment_author_IP` varchar(100) NOT NULL default '', `comment_date` datetime NOT NULL default '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL default '0', `comment_approved` enum('0','1','spam') NOT NULL default '1', `comment_agent` varchar(255) NOT NULL default '', `comment_type` varchar(20) NOT NULL default '', `comment_parent` bigint(20) NOT NULL default '0', `user_id` bigint(20) NOT NULL default '0', PRIMARY KEY (`comment_ID`), KEY `comment_approved` (`comment_approved`), KEY `comment_post_ID` (`comment_post_ID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=67538 ; -- -------------------------------------------------------- -- -- Table structure for table `wp_falbum_cache` -- CREATE TABLE IF NOT EXISTS `wp_falbum_cache` ( `ID` varchar(40) NOT NULL, `data` text, `expires` datetime default NULL, PRIMARY KEY (`ID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `wp_link2cat` -- CREATE TABLE IF NOT EXISTS `wp_link2cat` ( `rel_id` bigint(20) NOT NULL auto_increment, `link_id` bigint(20) NOT NULL default '0', `category_id` bigint(20) NOT NULL default '0', PRIMARY KEY (`rel_id`), KEY `link_id` (`link_id`,`category_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ; -- -------------------------------------------------------- -- -- Table structure for table `wp_links` -- CREATE TABLE IF NOT EXISTS `wp_links` ( `link_id` bigint(20) NOT NULL auto_increment, `link_url` varchar(255) NOT NULL default '', `link_name` varchar(255) NOT NULL default '', `link_image` varchar(255) NOT NULL default '', `link_target` varchar(25) NOT NULL default '', `link_category` bigint(20) NOT NULL default '0', `link_description` varchar(255) NOT NULL default '', `link_visible` enum('Y','N') NOT NULL default 'Y', `link_owner` int(11) NOT NULL default '1', `link_rating` int(11) NOT NULL default '0', `link_updated` datetime NOT NULL default '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL default '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL default '', PRIMARY KEY (`link_id`), KEY `link_category` (`link_category`), KEY `link_visible` (`link_visible`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ; -- -------------------------------------------------------- -- -- Table structure for table `wp_options` -- CREATE TABLE IF NOT EXISTS `wp_options` ( `option_id` bigint(20) NOT NULL auto_increment, `blog_id` int(11) NOT NULL default '0', `option_name` varchar(64) NOT NULL default '', `option_can_override` enum('Y','N') NOT NULL default 'Y', `option_type` int(11) NOT NULL default '1', `option_value` longtext NOT NULL, `option_width` int(11) NOT NULL default '20', `option_height` int(11) NOT NULL default '8', `option_description` tinytext NOT NULL, `option_admin_level` int(11) NOT NULL default '1', `autoload` enum('yes','no') NOT NULL default 'yes', PRIMARY KEY (`option_id`,`blog_id`,`option_name`), KEY `option_name` (`option_name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=229 ; -- -------------------------------------------------------- -- -- Table structure for table `wp_post2cat` -- CREATE TABLE IF NOT EXISTS `wp_post2cat` ( `rel_id` bigint(20) NOT NULL auto_increment, `post_id` bigint(20) NOT NULL default '0', `category_id` bigint(20) NOT NULL default '0', PRIMARY KEY (`rel_id`), KEY `post_id` (`post_id`,`category_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=75 ; -- -------------------------------------------------------- -- -- Table structure for table `wp_post2tag` -- CREATE TABLE IF NOT EXISTS `wp_post2tag` ( `rel_id` int(11) NOT NULL auto_increment, `tag_id` int(11) NOT NULL default '0', `post_id` int(11) NOT NULL default '0', `ip_address` varchar(15) default NULL, PRIMARY KEY (`rel_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=29 ; -- -------------------------------------------------------- -- -- Table structure for table `wp_postmeta` -- CREATE TABLE IF NOT EXISTS `wp_postmeta` ( `meta_id` bigint(20) NOT NULL auto_increment, `post_id` bigint(20) NOT NULL default '0', `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=450 ; -- -------------------------------------------------------- -- -- Table structure for table `wp_posts` -- CREATE TABLE IF NOT EXISTS `wp_posts` ( `ID` bigint(20) unsigned NOT NULL auto_increment, `post_author` bigint(20) NOT NULL default '0', `post_date` datetime NOT NULL default '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL default '0000-00-00 00:00:00', `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_category` int(4) NOT NULL default '0', `post_excerpt` text NOT NULL, `post_status` enum('publish','draft','private','static','object','attachment','inherit','future') NOT NULL default 'publish', `comment_status` enum('open','closed','registered_only') NOT NULL default 'open', `ping_status` enum('open','closed') NOT NULL default 'open', `post_password` varchar(20) NOT NULL default '', `post_name` varchar(200) NOT NULL default '', `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL default '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL default '0000-00-00 00:00:00', `post_content_filtered` text NOT NULL, `post_parent` bigint(20) NOT NULL default '0', `guid` varchar(255) NOT NULL default '', `menu_order` int(11) NOT NULL default '0', `post_type` varchar(20) NOT NULL default 'post', `post_mime_type` varchar(100) NOT NULL default '', `comment_count` bigint(20) NOT NULL default '0', PRIMARY KEY (`ID`), KEY `post_name` (`post_name`), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=54 ; -- -------------------------------------------------------- -- -- Table structure for table `wp_tags` -- CREATE TABLE IF NOT EXISTS `wp_tags` ( `tag_ID` int(11) NOT NULL auto_increment, `tag` varchar(255) NOT NULL default '', PRIMARY KEY (`tag_ID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=22 ; -- -------------------------------------------------------- -- -- Table structure for table `wp_tag_synonyms` -- CREATE TABLE IF NOT EXISTS `wp_tag_synonyms` ( `tagsynonymid` int(11) NOT NULL auto_increment, `tag_id` int(11) NOT NULL default '0', `synonym` varchar(150) NOT NULL default '', PRIMARY KEY (`tagsynonymid`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Table structure for table `wp_usermeta` -- CREATE TABLE IF NOT EXISTS `wp_usermeta` ( `umeta_id` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) NOT NULL default '0', `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=87 ; -- -------------------------------------------------------- -- -- Table structure for table `wp_users` -- CREATE TABLE IF NOT EXISTS `wp_users` ( `ID` bigint(20) unsigned NOT NULL auto_increment, `user_login` varchar(60) NOT NULL default '', `user_pass` varchar(64) NOT NULL default '', `user_nicename` varchar(50) NOT NULL default '', `user_email` varchar(100) NOT NULL default '', `user_url` varchar(100) NOT NULL default '', `user_registered` datetime NOT NULL default '0000-00-00 00:00:00', `user_activation_key` varchar(60) NOT NULL default '', `user_status` int(11) NOT NULL default '0', `display_name` varchar(250) NOT NULL default '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=16 ;