Skip to content

Instantly share code, notes, and snippets.

@sunilw
Created December 18, 2014 21:25
Show Gist options
  • Save sunilw/91a973105a1550e1d04d to your computer and use it in GitHub Desktop.
Save sunilw/91a973105a1550e1d04d to your computer and use it in GitHub Desktop.
-- MySQL dump 10.13 Distrib 5.5.40, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: galilee
-- ------------------------------------------------------
-- Server version 5.5.40-0ubuntu0.12.04.1
/*!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 `wp_ai1ec_event_category_meta`
--
DROP TABLE IF EXISTS `wp_ai1ec_event_category_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ai1ec_event_category_meta` (
`term_id` bigint(20) NOT NULL,
`term_color` varchar(255) NOT NULL,
`term_image` varchar(254) DEFAULT NULL,
PRIMARY KEY (`term_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_ai1ec_event_instances`
--
DROP TABLE IF EXISTS `wp_ai1ec_event_instances`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ai1ec_event_instances` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) NOT NULL,
`start` int(10) unsigned NOT NULL,
`end` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `evt_instance` (`post_id`,`start`)
) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_ai1ec_events`
--
DROP TABLE IF EXISTS `wp_ai1ec_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ai1ec_events` (
`post_id` bigint(20) NOT NULL,
`start` int(10) unsigned NOT NULL,
`end` int(10) unsigned DEFAULT NULL,
`timezone_name` varchar(50) DEFAULT NULL,
`allday` tinyint(1) NOT NULL,
`instant_event` tinyint(1) NOT NULL DEFAULT '0',
`recurrence_rules` longtext,
`exception_rules` longtext,
`recurrence_dates` longtext,
`exception_dates` longtext,
`venue` varchar(255) DEFAULT NULL,
`country` varchar(255) DEFAULT NULL,
`address` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`province` varchar(255) DEFAULT NULL,
`postal_code` varchar(32) DEFAULT NULL,
`show_map` tinyint(1) DEFAULT NULL,
`contact_name` varchar(255) DEFAULT NULL,
`contact_phone` varchar(32) DEFAULT NULL,
`contact_email` varchar(128) DEFAULT NULL,
`contact_url` varchar(255) DEFAULT NULL,
`cost` varchar(255) DEFAULT NULL,
`ticket_url` varchar(255) DEFAULT NULL,
`ical_feed_url` varchar(255) DEFAULT NULL,
`ical_source_url` varchar(255) DEFAULT NULL,
`ical_organizer` varchar(255) DEFAULT NULL,
`ical_contact` varchar(255) DEFAULT NULL,
`ical_uid` varchar(255) DEFAULT NULL,
`show_coordinates` tinyint(1) DEFAULT NULL,
`latitude` decimal(20,15) DEFAULT NULL,
`longitude` decimal(20,15) DEFAULT NULL,
`force_regenerate` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`post_id`),
KEY `feed_source` (`ical_feed_url`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned 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` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_duplicator_packages`
--
DROP TABLE IF EXISTS `wp_duplicator_packages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_duplicator_packages` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(250) NOT NULL,
`hash` varchar(50) NOT NULL,
`status` int(11) NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`owner` varchar(60) NOT NULL,
`package` mediumblob NOT NULL,
PRIMARY KEY (`id`),
KEY `hash` (`hash`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_likebtn_item`
--
DROP TABLE IF EXISTS `wp_likebtn_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_likebtn_item` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`identifier` text NOT NULL,
`url` text,
`title` text,
`description` text,
`image` text,
`likes` int(11) NOT NULL DEFAULT '0',
`dislikes` int(11) NOT NULL DEFAULT '0',
`likes_minus_dislikes` int(11) NOT NULL DEFAULT '0',
`identifier_hash` varchar(32) NOT NULL,
PRIMARY KEY (`ID`),
UNIQUE KEY `identifier_hash` (`identifier_hash`),
KEY `title` (`title`(1)),
KEY `likes` (`likes`),
KEY `dislikes` (`dislikes`),
KEY `likes_minus_dislikes` (`likes_minus_dislikes`),
KEY `identifier` (`identifier`(1))
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned 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_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned 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_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_mailpress_formfields`
--
DROP TABLE IF EXISTS `wp_mailpress_formfields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mailpress_formfields` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`form_id` bigint(20) NOT NULL,
`ordre` bigint(20) unsigned NOT NULL DEFAULT '0',
`type` varchar(50) NOT NULL DEFAULT '',
`template` varchar(50) NOT NULL DEFAULT '',
`label` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`settings` longtext,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_mailpress_forms`
--
DROP TABLE IF EXISTS `wp_mailpress_forms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mailpress_forms` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`label` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`template` varchar(50) NOT NULL DEFAULT '',
`settings` longtext,
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_mailpress_mailmeta`
--
DROP TABLE IF EXISTS `wp_mailpress_mailmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mailpress_mailmeta` (
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
`mp_mail_id` bigint(20) NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `mp_mail_id` (`mp_mail_id`,`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_mailpress_mails`
--
DROP TABLE IF EXISTS `wp_mailpress_mails`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mailpress_mails` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`status` enum('draft','unsent','sending','sent','archived','','paused') NOT NULL,
`theme` varchar(255) NOT NULL DEFAULT '',
`themedir` varchar(255) NOT NULL DEFAULT '',
`template` varchar(255) NOT NULL DEFAULT '',
`fromemail` varchar(255) NOT NULL DEFAULT '',
`fromname` varchar(255) NOT NULL DEFAULT '',
`toname` varchar(255) NOT NULL DEFAULT '',
`charset` varchar(255) NOT NULL DEFAULT '',
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`child` bigint(20) NOT NULL DEFAULT '0',
`subject` varchar(255) NOT NULL DEFAULT '',
`created` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`sent` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`sent_user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`toemail` longtext NOT NULL,
`plaintext` longtext NOT NULL,
`html` longtext NOT NULL,
PRIMARY KEY (`id`),
KEY `status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_mailpress_stats`
--
DROP TABLE IF EXISTS `wp_mailpress_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mailpress_stats` (
`sdate` date NOT NULL,
`stype` char(1) NOT NULL,
`slib` varchar(45) NOT NULL,
`scount` bigint(20) NOT NULL,
PRIMARY KEY (`stype`,`sdate`,`slib`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_mailpress_usermeta`
--
DROP TABLE IF EXISTS `wp_mailpress_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mailpress_usermeta` (
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
`mp_user_id` bigint(20) NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `mp_user_id` (`mp_user_id`,`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=150 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_mailpress_users`
--
DROP TABLE IF EXISTS `wp_mailpress_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_mailpress_users` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(100) NOT NULL,
`name` varchar(100) NOT NULL,
`status` enum('waiting','active','bounced','unsubscribed') NOT NULL,
`confkey` varchar(100) NOT NULL,
`created` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_IP` varchar(100) NOT NULL DEFAULT '',
`created_agent` text NOT NULL,
`created_user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`created_country` char(2) NOT NULL DEFAULT 'ZZ',
`created_US_state` char(2) NOT NULL DEFAULT 'ZZ',
`laststatus` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`laststatus_IP` varchar(100) NOT NULL DEFAULT '',
`laststatus_agent` text NOT NULL,
`laststatus_user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=6307 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_participants_database`
--
DROP TABLE IF EXISTS `wp_participants_database`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_participants_database` (
`id` int(6) NOT NULL AUTO_INCREMENT,
`private_id` varchar(6) COLLATE utf8_unicode_ci DEFAULT NULL,
`first_name` tinytext COLLATE utf8_unicode_ci,
`last_name` tinytext COLLATE utf8_unicode_ci,
`address` tinytext COLLATE utf8_unicode_ci,
`city` tinytext COLLATE utf8_unicode_ci,
`state` tinytext COLLATE utf8_unicode_ci,
`country` tinytext COLLATE utf8_unicode_ci,
`zip` tinytext COLLATE utf8_unicode_ci,
`phone` tinytext COLLATE utf8_unicode_ci,
`email` tinytext COLLATE utf8_unicode_ci,
`mailing_list` text COLLATE utf8_unicode_ci,
`photo` text COLLATE utf8_unicode_ci,
`website` text COLLATE utf8_unicode_ci,
`interests` text COLLATE utf8_unicode_ci,
`approved` text COLLATE utf8_unicode_ci,
`date_recorded` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`date_updated` timestamp NULL DEFAULT NULL,
`last_accessed` timestamp NULL DEFAULT NULL,
`prove_you_are_human` text COLLATE utf8_unicode_ci,
`my_skills` text COLLATE utf8_unicode_ci,
`to_promote_the_galilee_blockade_campaign_through_social_media` text COLLATE utf8_unicode_ci,
`i_can_donatelend_the_following_resources_to_support_the_campaig` text COLLATE utf8_unicode_ci,
`i_want_to_make_a_pledge` text COLLATE utf8_unicode_ci,
`i_want_to_volunteer` text COLLATE utf8_unicode_ci,
`i_pledge_to_a` text COLLATE utf8_unicode_ci,
`i_pledge_to_b` text COLLATE utf8_unicode_ci,
`add_me_to_the_volunteers_mailing_list` tinytext COLLATE utf8_unicode_ci,
`inform_me_of_any_volunteering_oportunities` text COLLATE utf8_unicode_ci,
`i_can_donate_resources` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_participants_database_fields`
--
DROP TABLE IF EXISTS `wp_participants_database_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_participants_database_fields` (
`id` int(3) NOT NULL AUTO_INCREMENT,
`order` int(3) NOT NULL DEFAULT '0',
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`title` tinytext COLLATE utf8_unicode_ci NOT NULL,
`default` tinytext COLLATE utf8_unicode_ci,
`group` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`help_text` text COLLATE utf8_unicode_ci,
`form_element` tinytext COLLATE utf8_unicode_ci,
`values` longtext COLLATE utf8_unicode_ci,
`validation` tinytext COLLATE utf8_unicode_ci,
`display_column` int(3) DEFAULT '0',
`admin_column` int(3) DEFAULT '0',
`sortable` tinyint(1) DEFAULT '0',
`CSV` tinyint(1) DEFAULT '0',
`persistent` tinyint(1) DEFAULT '0',
`signup` tinyint(1) DEFAULT '0',
`readonly` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`),
KEY `order` (`order`),
KEY `group` (`group`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_participants_database_groups`
--
DROP TABLE IF EXISTS `wp_participants_database_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_participants_database_groups` (
`id` int(3) NOT NULL AUTO_INCREMENT,
`order` int(3) NOT NULL DEFAULT '0',
`display` tinyint(1) DEFAULT '1',
`admin` tinyint(1) NOT NULL DEFAULT '0',
`title` tinytext COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
`description` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned 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 AUTO_INCREMENT=1739 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned 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_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) 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` longtext NOT NULL,
`post_parent` bigint(20) unsigned 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`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=MyISAM AUTO_INCREMENT=1060 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_sdm_downloads`
--
DROP TABLE IF EXISTS `wp_sdm_downloads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_sdm_downloads` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`post_id` mediumint(9) NOT NULL,
`post_title` mediumtext NOT NULL,
`file_url` mediumtext NOT NULL,
`visitor_ip` mediumtext NOT NULL,
`date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`visitor_country` mediumtext NOT NULL,
`visitor_name` mediumtext NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=30 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
UNIQUE KEY `slug` (`slug`),
KEY `name` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned 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 AUTO_INCREMENT=118 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `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`),
KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfBadLeechers`
--
DROP TABLE IF EXISTS `wp_wfBadLeechers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfBadLeechers` (
`eMin` int(10) unsigned NOT NULL,
`IP` int(10) unsigned NOT NULL,
`hits` int(10) unsigned NOT NULL,
PRIMARY KEY (`eMin`,`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfBlocks`
--
DROP TABLE IF EXISTS `wp_wfBlocks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfBlocks` (
`IP` int(10) unsigned NOT NULL,
`blockedTime` bigint(20) NOT NULL,
`reason` varchar(255) NOT NULL,
`lastAttempt` int(10) unsigned DEFAULT '0',
`blockedHits` int(10) unsigned DEFAULT '0',
`wfsn` tinyint(3) unsigned DEFAULT '0',
`permanent` tinyint(3) unsigned DEFAULT '0',
PRIMARY KEY (`IP`),
KEY `k1` (`wfsn`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfBlocksAdv`
--
DROP TABLE IF EXISTS `wp_wfBlocksAdv`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfBlocksAdv` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`blockType` char(2) NOT NULL,
`blockString` varchar(255) NOT NULL,
`ctime` int(10) unsigned NOT NULL,
`reason` varchar(255) NOT NULL,
`totalBlocked` int(10) unsigned DEFAULT '0',
`lastBlocked` int(10) unsigned DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfConfig`
--
DROP TABLE IF EXISTS `wp_wfConfig`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfConfig` (
`name` varchar(100) NOT NULL,
`val` longblob,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfCrawlers`
--
DROP TABLE IF EXISTS `wp_wfCrawlers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfCrawlers` (
`IP` int(10) unsigned NOT NULL,
`patternSig` binary(16) NOT NULL,
`status` char(8) NOT NULL,
`lastUpdate` int(10) unsigned NOT NULL,
`PTR` varchar(255) DEFAULT '',
PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfFileMods`
--
DROP TABLE IF EXISTS `wp_wfFileMods`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfFileMods` (
`filenameMD5` binary(16) NOT NULL,
`filename` varchar(1000) NOT NULL,
`knownFile` tinyint(3) unsigned NOT NULL,
`oldMD5` binary(16) NOT NULL,
`newMD5` binary(16) NOT NULL,
PRIMARY KEY (`filenameMD5`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfHits`
--
DROP TABLE IF EXISTS `wp_wfHits`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfHits` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ctime` double(17,6) unsigned NOT NULL,
`IP` int(10) unsigned NOT NULL,
`jsRun` tinyint(4) DEFAULT '0',
`is404` tinyint(4) NOT NULL,
`isGoogle` tinyint(4) NOT NULL,
`userID` int(10) unsigned NOT NULL,
`newVisit` tinyint(3) unsigned NOT NULL,
`URL` text,
`referer` text,
`UA` text,
PRIMARY KEY (`id`),
KEY `k1` (`ctime`),
KEY `k2` (`IP`,`ctime`)
) ENGINE=InnoDB AUTO_INCREMENT=120 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfHoover`
--
DROP TABLE IF EXISTS `wp_wfHoover`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfHoover` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`owner` text,
`host` text,
`path` text,
`hostKey` binary(4) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `k2` (`hostKey`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfIssues`
--
DROP TABLE IF EXISTS `wp_wfIssues`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfIssues` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`time` int(10) unsigned NOT NULL,
`status` varchar(10) NOT NULL,
`type` varchar(20) NOT NULL,
`severity` tinyint(3) unsigned NOT NULL,
`ignoreP` char(32) NOT NULL,
`ignoreC` char(32) NOT NULL,
`shortMsg` varchar(255) NOT NULL,
`longMsg` text,
`data` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfLeechers`
--
DROP TABLE IF EXISTS `wp_wfLeechers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfLeechers` (
`eMin` int(10) unsigned NOT NULL,
`IP` int(10) unsigned NOT NULL,
`hits` int(10) unsigned NOT NULL,
PRIMARY KEY (`eMin`,`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfLockedOut`
--
DROP TABLE IF EXISTS `wp_wfLockedOut`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfLockedOut` (
`IP` int(10) unsigned NOT NULL,
`blockedTime` bigint(20) NOT NULL,
`reason` varchar(255) NOT NULL,
`lastAttempt` int(10) unsigned DEFAULT '0',
`blockedHits` int(10) unsigned DEFAULT '0',
PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfLocs`
--
DROP TABLE IF EXISTS `wp_wfLocs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfLocs` (
`IP` int(10) unsigned NOT NULL,
`ctime` int(10) unsigned NOT NULL,
`failed` tinyint(3) unsigned NOT NULL,
`city` varchar(255) DEFAULT '',
`region` varchar(255) DEFAULT '',
`countryName` varchar(255) DEFAULT '',
`countryCode` char(2) DEFAULT '',
`lat` float(10,7) DEFAULT '0.0000000',
`lon` float(10,7) DEFAULT '0.0000000',
PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfLogins`
--
DROP TABLE IF EXISTS `wp_wfLogins`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfLogins` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ctime` double(17,6) unsigned NOT NULL,
`fail` tinyint(3) unsigned NOT NULL,
`action` varchar(40) NOT NULL,
`username` varchar(255) NOT NULL,
`userID` int(10) unsigned NOT NULL,
`IP` int(10) unsigned NOT NULL,
`UA` text,
PRIMARY KEY (`id`),
KEY `k1` (`IP`,`fail`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfNet404s`
--
DROP TABLE IF EXISTS `wp_wfNet404s`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfNet404s` (
`sig` binary(16) NOT NULL,
`ctime` int(10) unsigned NOT NULL,
`URI` varchar(1000) NOT NULL,
PRIMARY KEY (`sig`),
KEY `k1` (`ctime`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfReverseCache`
--
DROP TABLE IF EXISTS `wp_wfReverseCache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfReverseCache` (
`IP` int(10) unsigned NOT NULL,
`host` varchar(255) NOT NULL,
`lastUpdate` int(10) unsigned NOT NULL,
PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfScanners`
--
DROP TABLE IF EXISTS `wp_wfScanners`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfScanners` (
`eMin` int(10) unsigned NOT NULL,
`IP` int(10) unsigned NOT NULL,
`hits` smallint(5) unsigned NOT NULL,
PRIMARY KEY (`eMin`,`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfStatus`
--
DROP TABLE IF EXISTS `wp_wfStatus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfStatus` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ctime` double(17,6) unsigned NOT NULL,
`level` tinyint(3) unsigned NOT NULL,
`type` char(5) NOT NULL,
`msg` varchar(1000) NOT NULL,
PRIMARY KEY (`id`),
KEY `k1` (`ctime`),
KEY `k2` (`type`)
) ENGINE=InnoDB AUTO_INCREMENT=1124 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfThrottleLog`
--
DROP TABLE IF EXISTS `wp_wfThrottleLog`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfThrottleLog` (
`IP` int(10) unsigned NOT NULL,
`startTime` int(10) unsigned NOT NULL,
`endTime` int(10) unsigned NOT NULL,
`timesThrottled` int(10) unsigned NOT NULL,
`lastReason` varchar(255) NOT NULL,
PRIMARY KEY (`IP`),
KEY `k2` (`endTime`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `wp_wfVulnScanners`
--
DROP TABLE IF EXISTS `wp_wfVulnScanners`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfVulnScanners` (
`IP` int(10) unsigned NOT NULL,
`ctime` int(10) unsigned NOT NULL,
`hits` int(10) unsigned NOT NULL,
PRIMARY KEY (`IP`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!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 2014-12-19 10:25:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment