Advertisement
Guest User

Untitled

a guest
Aug 16th, 2012
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 2.25 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 3.3.9
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: localhost
  6. -- Generation Time: Aug 16, 2012 at 05:32 PM
  7. -- Server version: 5.5.8
  8. -- PHP Version: 5.3.5
  9.  
  10. SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
  11.  
  12. --
  13. -- Database: `wordpress`
  14. --
  15.  
  16. -- --------------------------------------------------------
  17.  
  18. --
  19. -- Table structure for table `wp_postmeta`
  20. --
  21.  
  22. CREATE TABLE IF NOT EXISTS `wp_postmeta` (
  23.   `meta_id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  24.   `post_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
  25.   `meta_key` VARCHAR(255) DEFAULT NULL,
  26.   `meta_value` longtext,
  27.   PRIMARY KEY (`meta_id`),
  28.   KEY `post_id` (`post_id`),
  29.   KEY `meta_key` (`meta_key`)
  30. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
  31.  
  32. -- --------------------------------------------------------
  33.  
  34. --
  35. -- Table structure for table `wp_posts`
  36. --
  37.  
  38. CREATE TABLE IF NOT EXISTS `wp_posts` (
  39.   `ID` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
  40.   `post_author` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
  41.   `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  42.   `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  43.   `post_content` longtext NOT NULL,
  44.   `post_title` text NOT NULL,
  45.   `post_excerpt` text NOT NULL,
  46.   `post_status` VARCHAR(20) NOT NULL DEFAULT 'publish',
  47.   `comment_status` VARCHAR(20) NOT NULL DEFAULT 'open',
  48.   `ping_status` VARCHAR(20) NOT NULL DEFAULT 'open',
  49.   `post_password` VARCHAR(20) NOT NULL DEFAULT '',
  50.   `post_name` VARCHAR(200) NOT NULL DEFAULT '',
  51.   `to_ping` text NOT NULL,
  52.   `pinged` text NOT NULL,
  53.   `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  54.   `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  55.   `post_content_filtered` text NOT NULL,
  56.   `post_parent` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0',
  57.   `guid` VARCHAR(255) NOT NULL DEFAULT '',
  58.   `menu_order` INT(11) NOT NULL DEFAULT '0',
  59.   `post_type` VARCHAR(20) NOT NULL DEFAULT 'post',
  60.   `post_mime_type` VARCHAR(100) NOT NULL DEFAULT '',
  61.   `comment_count` BIGINT(20) NOT NULL DEFAULT '0',
  62.   PRIMARY KEY (`ID`),
  63.   KEY `post_name` (`post_name`),
  64.   KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  65.   KEY `post_parent` (`post_parent`),
  66.   KEY `post_author` (`post_author`)
  67. ) ENGINE=MyISAM  DEFAULT CHARSET=utf8;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement