source.sql 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  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. `common_field` int(11) DEFAULT NULL,
  24. `source_field_ignored` int(11) DEFAULT NULL,
  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. INSERT INTO `common_table` VALUES (1,2,3),(2,3,4),(3,4,5),(4,5,6),(5,5,5),(6,6,7),(7,7,7);
  34. /*!40000 ALTER TABLE `common_table` ENABLE KEYS */;
  35. UNLOCK TABLES;
  36. --
  37. -- Table structure for table `common_table_extra_field`
  38. --
  39. DROP TABLE IF EXISTS `common_table_extra_field`;
  40. /*!40101 SET @saved_cs_client = @@character_set_client */;
  41. /*!40101 SET character_set_client = utf8 */;
  42. CREATE TABLE `common_table_extra_field` (
  43. `key` int(11) NOT NULL AUTO_INCREMENT,
  44. `common_field` int(11) DEFAULT NULL,
  45. `source_field_extra` int(11) DEFAULT NULL,
  46. PRIMARY KEY (`key`)
  47. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  48. /*!40101 SET character_set_client = @saved_cs_client */;
  49. --
  50. -- Dumping data for table `common_table_extra_field`
  51. --
  52. LOCK TABLES `common_table_extra_field` WRITE;
  53. /*!40000 ALTER TABLE `common_table_extra_field` DISABLE KEYS */;
  54. INSERT INTO `common_table_extra_field` VALUES (1,2,3),(2,3,4),(3,4,5),(4,5,6),(5,5,5),(6,6,7),(7,7,7);
  55. /*!40000 ALTER TABLE `common_table_extra_field` ENABLE KEYS */;
  56. UNLOCK TABLES;
  57. --
  58. -- Table structure for table `source_table_ignored`
  59. --
  60. DROP TABLE IF EXISTS `source_table_ignored`;
  61. /*!40101 SET @saved_cs_client = @@character_set_client */;
  62. /*!40101 SET character_set_client = utf8 */;
  63. CREATE TABLE `source_table_ignored` (
  64. `field1` int(11) NOT NULL AUTO_INCREMENT,
  65. `field2` int(11) DEFAULT NULL,
  66. PRIMARY KEY (`field1`)
  67. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  68. /*!40101 SET character_set_client = @saved_cs_client */;
  69. --
  70. -- Dumping data for table `source_table_ignored`
  71. --
  72. LOCK TABLES `source_table_ignored` WRITE;
  73. /*!40000 ALTER TABLE `source_table_ignored` DISABLE KEYS */;
  74. INSERT INTO `source_table_ignored` VALUES (1,2),(2,3),(3,4),(4,5),(5,5),(6,6),(7,7);
  75. /*!40000 ALTER TABLE `source_table_ignored` ENABLE KEYS */;
  76. UNLOCK TABLES;
  77. --
  78. -- Table structure for table `table_ignored`
  79. --
  80. DROP TABLE IF EXISTS `table_ignored`;
  81. /*!40101 SET @saved_cs_client = @@character_set_client */;
  82. /*!40101 SET character_set_client = utf8 */;
  83. CREATE TABLE `table_ignored` (
  84. `field1` int(11) NOT NULL AUTO_INCREMENT,
  85. `field2` int(11) DEFAULT NULL,
  86. PRIMARY KEY (`field1`)
  87. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  88. /*!40101 SET character_set_client = @saved_cs_client */;
  89. --
  90. -- Dumping data for table `source_table_ignored`
  91. --
  92. LOCK TABLES `table_ignored` WRITE;
  93. /*!40000 ALTER TABLE `table_ignored` DISABLE KEYS */;
  94. INSERT INTO `table_ignored` VALUES (1,2),(2,3),(3,4),(4,5),(5,5),(6,6),(7,7);
  95. /*!40000 ALTER TABLE `table_ignored` ENABLE KEYS */;
  96. UNLOCK TABLES;
  97. --
  98. -- Table structure for table `source_table_renamed`
  99. --
  100. DROP TABLE IF EXISTS `source_table_renamed`;
  101. /*!40101 SET @saved_cs_client = @@character_set_client */;
  102. /*!40101 SET character_set_client = utf8 */;
  103. CREATE TABLE `source_table_renamed` (
  104. `key` int(11) NOT NULL AUTO_INCREMENT,
  105. PRIMARY KEY (`key`)
  106. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  107. /*!40101 SET character_set_client = @saved_cs_client */;
  108. --
  109. -- Dumping data for table `source_table_renamed`
  110. --
  111. LOCK TABLES `source_table_renamed` WRITE;
  112. /*!40000 ALTER TABLE `source_table_renamed` DISABLE KEYS */;
  113. /*!40000 ALTER TABLE `source_table_renamed` ENABLE KEYS */;
  114. UNLOCK TABLES;
  115. --
  116. -- Table structure for table `table_with_data`
  117. --
  118. DROP TABLE IF EXISTS `table_with_data`;
  119. /*!40101 SET @saved_cs_client = @@character_set_client */;
  120. /*!40101 SET character_set_client = utf8 */;
  121. CREATE TABLE `table_with_data` (
  122. `key` int(11) NOT NULL AUTO_INCREMENT,
  123. `field1` int(11) DEFAULT NULL,
  124. `field2` int(11) DEFAULT NULL,
  125. `field3` int(11) DEFAULT NULL,
  126. PRIMARY KEY (`key`)
  127. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  128. /*!40101 SET character_set_client = @saved_cs_client */;
  129. --
  130. -- Dumping data for table `table_with_data`
  131. --
  132. LOCK TABLES `table_with_data` WRITE;
  133. /*!40000 ALTER TABLE `table_with_data` DISABLE KEYS */;
  134. INSERT INTO `table_with_data` VALUES (NULL,1,2,3),(NULL,2,3,4),(NULL,3,4,5),(NULL,4,5,6),(NULL,5,5,5),(NULL,6,6,7),(NULL,7,7,7);
  135. /*!40000 ALTER TABLE `table_with_data` ENABLE KEYS */;
  136. UNLOCK TABLES;
  137. --
  138. -- Table structure for table `source_table_1`
  139. --
  140. DROP TABLE IF EXISTS `source_table_1`;
  141. /*!40101 SET @saved_cs_client = @@character_set_client */;
  142. /*!40101 SET character_set_client = utf8 */;
  143. CREATE TABLE `source_table_1` (
  144. `key` int(11) NOT NULL AUTO_INCREMENT,
  145. PRIMARY KEY (`key`)
  146. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  147. /*!40101 SET character_set_client = @saved_cs_client */;
  148. --
  149. -- Dumping data for table `source_table_1`
  150. --
  151. LOCK TABLES `source_table_1` WRITE;
  152. /*!40000 ALTER TABLE `source_table_1` DISABLE KEYS */;
  153. /*!40000 ALTER TABLE `source_table_1` ENABLE KEYS */;
  154. UNLOCK TABLES;
  155. --
  156. -- Table structure for table `source_table_2`
  157. --
  158. DROP TABLE IF EXISTS `source_table_2`;
  159. /*!40101 SET @saved_cs_client = @@character_set_client */;
  160. /*!40101 SET character_set_client = utf8 */;
  161. CREATE TABLE `source_table_2` (
  162. `key` int(11) NOT NULL AUTO_INCREMENT,
  163. PRIMARY KEY (`key`)
  164. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  165. /*!40101 SET character_set_client = @saved_cs_client */;
  166. --
  167. -- Dumping data for table `source_table_2`
  168. --
  169. LOCK TABLES `source_table_2` WRITE;
  170. /*!40000 ALTER TABLE `source_table_2` DISABLE KEYS */;
  171. /*!40000 ALTER TABLE `source_table_2` ENABLE KEYS */;
  172. UNLOCK TABLES;
  173. -- Dumping structure for table magento2mainlinece.core_config_data
  174. DROP TABLE IF EXISTS `core_config_data`;
  175. CREATE TABLE IF NOT EXISTS `core_config_data` (
  176. `config_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Config Id',
  177. `scope` varchar(8) NOT NULL DEFAULT 'default' COMMENT 'Config Scope',
  178. `scope_id` int(11) NOT NULL DEFAULT '0' COMMENT 'Config Scope Id',
  179. `path` varchar(255) NOT NULL DEFAULT 'general' COMMENT 'Config Path',
  180. `value` text COMMENT 'Config Value',
  181. PRIMARY KEY (`config_id`),
  182. UNIQUE KEY `UNQ_CORE_CONFIG_DATA_SCOPE_SCOPE_ID_PATH` (`scope`,`scope_id`,`path`)
  183. ) ENGINE=InnoDB AUTO_INCREMENT=59 DEFAULT CHARSET=utf8 COMMENT='Config Data';
  184. LOCK TABLES `core_config_data` WRITE;
  185. -- Dumping data for table magento2mainlinece.core_config_data: ~58 rows (approximately)
  186. DELETE FROM `core_config_data`;
  187. /*!40000 ALTER TABLE `core_config_data` DISABLE KEYS */;
  188. INSERT INTO `core_config_data` (`config_id`, `scope`, `scope_id`, `path`, `value`) VALUES
  189. (1, 'default', 0, 'web/seo/use_rewrites', '1'),
  190. (2, 'default', 0, 'web/unsecure/base_url', 'http://magento1.dev/'),
  191. (3, 'default', 0, 'admin/security/session_cookie_lifetime', '90'),
  192. (4, 'default', 0, 'catalog/seo/product_url_suffix', 'phtml'),
  193. (5, 'default', 0, 'my/extension/path', 'value1');
  194. /*!40000 ALTER TABLE `core_config_data` ENABLE KEYS */;
  195. UNLOCK TABLES;
  196. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  197. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  198. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  199. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  200. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  201. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  202. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
  203. -- Dump completed on 2015-01-29 19:44:38