dest.sql 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. /**
  2. * Copyright © Magento, Inc. All rights reserved.
  3. * See COPYING.txt for license details.
  4. */
  5. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  6. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  7. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  8. /*!40101 SET NAMES utf8 */;
  9. /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
  10. /*!40103 SET TIME_ZONE='+00:00' */;
  11. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  12. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  13. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  14. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  15. --
  16. -- Table structure for table `common_table`
  17. --
  18. DROP TABLE IF EXISTS `common_table`;
  19. /*!40101 SET @saved_cs_client = @@character_set_client */;
  20. /*!40101 SET character_set_client = utf8 */;
  21. CREATE TABLE `common_table` (
  22. `key` int(11) NOT NULL AUTO_INCREMENT,
  23. `dest_field_ignored` int(11) NOT NULL DEFAULT '0',
  24. `common_field` int(11) NOT NULL DEFAULT '0',
  25. PRIMARY KEY (`key`)
  26. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  27. /*!40101 SET character_set_client = @saved_cs_client */;
  28. --
  29. -- Dumping data for table `common_table`
  30. --
  31. LOCK TABLES `common_table` WRITE;
  32. /*!40000 ALTER TABLE `common_table` DISABLE KEYS */;
  33. /*!40000 ALTER TABLE `common_table` ENABLE KEYS */;
  34. UNLOCK TABLES;
  35. --
  36. -- Table structure for table `common_table_extra_field`
  37. --
  38. DROP TABLE IF EXISTS `common_table_extra_field`;
  39. /*!40101 SET @saved_cs_client = @@character_set_client */;
  40. /*!40101 SET character_set_client = utf8 */;
  41. CREATE TABLE `common_table_extra_field` (
  42. `key` int(11) NOT NULL AUTO_INCREMENT,
  43. `common_field` int(11) DEFAULT NULL,
  44. PRIMARY KEY (`key`)
  45. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  46. /*!40101 SET character_set_client = @saved_cs_client */;
  47. --
  48. -- Dumping data for table `common_table_extra_field`
  49. --
  50. LOCK TABLES `common_table_extra_field` WRITE;
  51. /*!40000 ALTER TABLE `common_table_extra_field` DISABLE KEYS */;
  52. /*!40000 ALTER TABLE `common_table_extra_field` ENABLE KEYS */;
  53. UNLOCK TABLES;
  54. --
  55. -- Table structure for table `dest_table_ignored`
  56. --
  57. DROP TABLE IF EXISTS `dest_table_ignored`;
  58. /*!40101 SET @saved_cs_client = @@character_set_client */;
  59. /*!40101 SET character_set_client = utf8 */;
  60. CREATE TABLE `dest_table_ignored` (
  61. `key` int(11) NOT NULL AUTO_INCREMENT,
  62. PRIMARY KEY (`key`)
  63. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  64. /*!40101 SET character_set_client = @saved_cs_client */;
  65. --
  66. -- Dumping data for table `dest_table_ignored`
  67. --
  68. LOCK TABLES `dest_table_ignored` WRITE;
  69. /*!40000 ALTER TABLE `dest_table_ignored` DISABLE KEYS */;
  70. /*!40000 ALTER TABLE `dest_table_ignored` ENABLE KEYS */;
  71. UNLOCK TABLES;
  72. --
  73. -- Table structure for table `dest_table_renamed`
  74. --
  75. DROP TABLE IF EXISTS `dest_table_renamed`;
  76. /*!40101 SET @saved_cs_client = @@character_set_client */;
  77. /*!40101 SET character_set_client = utf8 */;
  78. CREATE TABLE `dest_table_renamed` (
  79. `key` int(11) NOT NULL AUTO_INCREMENT,
  80. PRIMARY KEY (`key`)
  81. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  82. /*!40101 SET character_set_client = @saved_cs_client */;
  83. --
  84. -- Dumping data for table `dest_table_renamed`
  85. --
  86. LOCK TABLES `dest_table_renamed` WRITE;
  87. /*!40000 ALTER TABLE `dest_table_renamed` DISABLE KEYS */;
  88. /*!40000 ALTER TABLE `dest_table_renamed` ENABLE KEYS */;
  89. UNLOCK TABLES;
  90. --
  91. -- Table structure for table `table_without_data`
  92. --
  93. DROP TABLE IF EXISTS `table_without_data`;
  94. /*!40101 SET @saved_cs_client = @@character_set_client */;
  95. /*!40101 SET character_set_client = utf8 */;
  96. CREATE TABLE `table_without_data` (
  97. `key` int(11) NOT NULL AUTO_INCREMENT,
  98. `field1` int(11) DEFAULT NULL,
  99. `field2` int(11) DEFAULT NULL,
  100. `field3` int(11) DEFAULT NULL,
  101. PRIMARY KEY (`key`)
  102. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  103. /*!40101 SET character_set_client = @saved_cs_client */;
  104. --
  105. -- Dumping data for table `table_without_data`
  106. --
  107. LOCK TABLES `table_without_data` WRITE;
  108. /*!40000 ALTER TABLE `table_without_data` DISABLE KEYS */;
  109. /*!40000 ALTER TABLE `table_without_data` ENABLE KEYS */;
  110. UNLOCK TABLES;
  111. --
  112. -- Table structure for table `table_ignored`
  113. --
  114. DROP TABLE IF EXISTS `table_ignored`;
  115. /*!40101 SET @saved_cs_client = @@character_set_client */;
  116. /*!40101 SET character_set_client = utf8 */;
  117. CREATE TABLE `table_ignored` (
  118. `field1` int(11) NOT NULL AUTO_INCREMENT,
  119. `field2` int(11) DEFAULT NULL,
  120. PRIMARY KEY (`field1`)
  121. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  122. /*!40101 SET character_set_client = @saved_cs_client */;
  123. --
  124. -- Dumping data for table `source_table_ignored`
  125. --
  126. LOCK TABLES `table_ignored` WRITE;
  127. /*!40000 ALTER TABLE `table_ignored` DISABLE KEYS */;
  128. /*!40000 ALTER TABLE `table_ignored` ENABLE KEYS */;
  129. UNLOCK TABLES;
  130. --
  131. -- Table structure for table `dest_table_1`
  132. --
  133. DROP TABLE IF EXISTS `dest_table_1`;
  134. /*!40101 SET @saved_cs_client = @@character_set_client */;
  135. /*!40101 SET character_set_client = utf8 */;
  136. CREATE TABLE `dest_table_1` (
  137. `key` int(11) NOT NULL AUTO_INCREMENT,
  138. PRIMARY KEY (`key`)
  139. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  140. /*!40101 SET character_set_client = @saved_cs_client */;
  141. --
  142. -- Dumping data for table `dest_table_1`
  143. --
  144. LOCK TABLES `dest_table_1` WRITE;
  145. /*!40000 ALTER TABLE `dest_table_1` DISABLE KEYS */;
  146. /*!40000 ALTER TABLE `dest_table_1` ENABLE KEYS */;
  147. UNLOCK TABLES;
  148. --
  149. -- Table structure for table `dest_table_2`
  150. --
  151. DROP TABLE IF EXISTS `dest_table_2`;
  152. /*!40101 SET @saved_cs_client = @@character_set_client */;
  153. /*!40101 SET character_set_client = utf8 */;
  154. CREATE TABLE `dest_table_2` (
  155. `key` int(11) NOT NULL AUTO_INCREMENT,
  156. PRIMARY KEY (`key`)
  157. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  158. /*!40101 SET character_set_client = @saved_cs_client */;
  159. --
  160. -- Dumping data for table `dest_table_2`
  161. --
  162. LOCK TABLES `dest_table_2` WRITE;
  163. /*!40000 ALTER TABLE `dest_table_2` DISABLE KEYS */;
  164. /*!40000 ALTER TABLE `dest_table_2` ENABLE KEYS */;
  165. UNLOCK TABLES;
  166. -- Dumping structure for table magento2mainlinece.core_config_data
  167. DROP TABLE IF EXISTS `core_config_data`;
  168. CREATE TABLE IF NOT EXISTS `core_config_data` (
  169. `config_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Config Id',
  170. `scope` varchar(8) NOT NULL DEFAULT 'default' COMMENT 'Config Scope',
  171. `scope_id` int(11) NOT NULL DEFAULT '0' COMMENT 'Config Scope Id',
  172. `path` varchar(255) NOT NULL DEFAULT 'general' COMMENT 'Config Path',
  173. `value` text COMMENT 'Config Value',
  174. PRIMARY KEY (`config_id`),
  175. UNIQUE KEY `UNQ_CORE_CONFIG_DATA_SCOPE_SCOPE_ID_PATH` (`scope`,`scope_id`,`path`)
  176. ) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8 COMMENT='Config Data';
  177. LOCK TABLES `core_config_data` WRITE;
  178. -- Dumping data for table magento2mainlinece.core_config_data: ~58 rows (approximately)
  179. DELETE FROM `core_config_data`;
  180. /*!40000 ALTER TABLE `core_config_data` DISABLE KEYS */;
  181. INSERT INTO `core_config_data` (`config_id`, `scope`, `scope_id`, `path`, `value`) VALUES
  182. (1, 'default', 0, 'web/seo/use_rewrites', '0'),
  183. (2, 'default', 0, 'web/unsecure/base_url', 'http://magento2.dev/'),
  184. (3, 'default', 0, 'admin/security/session_lifetime', '60'),
  185. (4, 'default', 0, 'catalog/seo/product_url_suffix', '.html');
  186. /*!40000 ALTER TABLE `core_config_data` ENABLE KEYS */;
  187. UNLOCK TABLES;
  188. /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
  189. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  190. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  191. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  192. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  193. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  194. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  195. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  196. -- Dump completed on 2015-01-29 19:44:27