Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.11 KB | None | 0 0
  1. -- MySQL dump 10.13  Distrib 5.1.73, for debian-linux-gnu (x86_64)
  2. --
  3. -- Host: localhost    Database: StavkyBonusy
  4. -- ------------------------------------------------------
  5. -- Server version   5.1.73-14.12-log
  6.  
  7. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  8. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  9. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  10. /*!40101 SET NAMES utf8 */;
  11. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  12. /*!40103 SET TIME_ZONE='+00:00' */;
  13. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  14. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  15. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  16. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  17.  
  18. --
  19. -- Table structure for table `wp_commentmeta`
  20. --
  21.  
  22. DROP TABLE IF EXISTS `wp_commentmeta`;
  23. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  24. /*!40101 SET character_set_client = utf8 */;
  25. CREATE TABLE `wp_commentmeta` (
  26.   `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  27.   `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  28.   `meta_key` varchar(255) DEFAULT NULL,
  29.   `meta_value` longtext,
  30.   PRIMARY KEY (`meta_id`),
  31.   KEY `comment_id` (`comment_id`),
  32.   KEY `meta_key` (`meta_key`)
  33. ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
  34. /*!40101 SET character_set_client = @saved_cs_client */;
  35.  
  36. --
  37. -- Dumping data for table `wp_commentmeta`
  38. --
  39.  
  40. LOCK TABLES `wp_commentmeta` WRITE;
  41. /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
  42. /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
  43. UNLOCK TABLES;
  44.  
  45. --
  46. -- Table structure for table `wp_comments`
  47. --
  48.  
  49. DROP TABLE IF EXISTS `wp_comments`;
  50. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  51. /*!40101 SET character_set_client = utf8 */;
  52. CREATE TABLE `wp_comments` (
  53.   `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  54.   `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  55.   `comment_author` tinytext NOT NULL,
  56.   `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  57.   `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  58.   `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  59.   `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  60.   `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  61.   `comment_content` text NOT NULL,
  62.   `comment_karma` int(11) NOT NULL DEFAULT '0',
  63.   `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  64.   `comment_agent` varchar(255) NOT NULL DEFAULT '',
  65.   `comment_type` varchar(20) NOT NULL DEFAULT '',
  66.   `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  67.   `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  68.   PRIMARY KEY (`comment_ID`),
  69.   KEY `comment_post_ID` (`comment_post_ID`),
  70.   KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  71.   KEY `comment_date_gmt` (`comment_date_gmt`),
  72.   KEY `comment_parent` (`comment_parent`),
  73.   KEY `comment_author_email` (`comment_author_email`(10))
  74. ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
  75. /*!40101 SET character_set_client = @saved_cs_client */;
  76.  
  77. --
  78. -- Dumping data for table `wp_comments`
  79. --
  80.  
  81. LOCK TABLES `wp_comments` WRITE;
  82. /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
  83. /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
  84. UNLOCK TABLES;
  85.  
  86. --
  87. -- Table structure for table `wp_dynamic_widgets`
  88. --
  89.  
  90. DROP TABLE IF EXISTS `wp_dynamic_widgets`;
  91. /*!40101 SET @saved_cs_client     = @@character_set_client */;
  92. /*!40101 SET character_set_client = utf8 */;
  93. CREATE TABLE `wp_dynamic_widgets` (
  94.   `id` int(11) NOT NULL AUTO_INCREMENT,
  95.   `widget_id` varchar(60) NOT NULL,
  96.   `maintype` varchar(50) NOT NULL,
  97.   `name` varchar(40) NOT NULL,
  98.   `value` longtext NOT NULL,
  99.   PRIMARY KEY (`id`),
  100.   KEY `widget_id` (`widget_id`,`maintype`)
  101. ) ENGINE=MyISAM AUTO_INCREMENT=107 DEFAULT CHARSET=utf8;
  102. /*!40101 SET character_set_client = @saved_cs_client */;
  103.  
  104. --
  105. -- Dumping data for table `wp_dynamic_widgets`
  106. --
  107.  
  108. LOCK TABLES `wp_dynamic_widgets` WRITE;
  109. /*!40000 ALTER TABLE `wp_dynamic_widgets` DISABLE KEYS */;
  110. INSERT INTO `wp_dynamic_widgets` VALUES (106,'text-2','search
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement