Advertisement
NFL

Untitled

NFL
Nov 18th, 2016
1,123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 3.24 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.5.4.1deb2ubuntu2
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Хост: localhost
  6. -- Время создания: Ноя 18 2016 г., 10:30
  7. -- Версия сервера: 5.7.16-0ubuntu0.16.04.1
  8. -- Версия PHP: 7.0.8-0ubuntu0.16.04.3
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13. --
  14. -- База данных: `medini_db`
  15. --
  16.  
  17. -- --------------------------------------------------------
  18.  
  19. --
  20. -- Структура таблицы `seo_sitemap_generator_rules`
  21. --
  22.  
  23. CREATE TABLE `seo_sitemap_generator_rules` (
  24.   `id` int(11) NOT NULL,
  25.   `module_id` int(11) NOT NULL,
  26.   `lang_id` int(11) DEFAULT NULL,
  27.   `title` varchar(255) NOT NULL,
  28.   `table_name` varchar(255) NOT NULL,
  29.   `main_field` varchar(50) NOT NULL DEFAULT 'alias',
  30.   `secondary_field` varchar(50) NOT NULL DEFAULT 'data_id',
  31.   `record_type` varchar(255) NOT NULL,
  32.   `route_name` varchar(100) NOT NULL DEFAULT 'default',
  33.   `changefreq` varchar(15) NOT NULL,
  34.   `priority` varchar(10) NOT NULL,
  35.   `active` tinyint(1) NOT NULL DEFAULT '1'
  36. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  37.  
  38. --
  39. -- Дамп данных таблицы `seo_sitemap_generator_rules`
  40. --
  41.  
  42. INSERT INTO `seo_sitemap_generator_rules` (`id`, `module_id`, `lang_id`, `title`, `table_name`, `main_field`, `secondary_field`, `record_type`, `route_name`, `changefreq`, `priority`, `active`) VALUES
  43. (5, 3, NULL, 'catalog_product_new', 'system_meta', 'alias', 'data_id', 'catalog_product', 'catalog_product', 'daily', '0.8', 1),
  44. (6, 3, NULL, 'catalog_category', 'system_meta', 'alias', 'data_id', 'catalog_category', 'catalog_category', 'daily', '0.8', 1),
  45. (8, 1, NULL, 'Новости', 'system_meta', 'alias', 'data_id', 'news_general', 'news', 'daily', '0.5', 1);
  46.  
  47. -- --------------------------------------------------------
  48.  
  49. --
  50. -- Структура таблицы `seo_sitemap_generator_static_rules`
  51. --
  52.  
  53. CREATE TABLE `seo_sitemap_generator_static_rules` (
  54.   `id` int(11) NOT NULL,
  55.   `title` varchar(255) NOT NULL,
  56.   `url` varchar(500) NOT NULL,
  57.   `changefreq` varchar(15) NOT NULL,
  58.   `priority` varchar(10) NOT NULL,
  59.   `active` int(1) NOT NULL DEFAULT '1'
  60. ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
  61.  
  62. --
  63. -- Дамп данных таблицы `seo_sitemap_generator_static_rules`
  64. --
  65.  
  66. INSERT INTO `seo_sitemap_generator_static_rules` (`id`, `title`, `url`, `changefreq`, `priority`, `active`) VALUES
  67. (1, 'Главная', 'medini-original.com', 'daily', '1.0', 1);
  68.  
  69. --
  70. -- Индексы сохранённых таблиц
  71. --
  72.  
  73. --
  74. -- Индексы таблицы `seo_sitemap_generator_rules`
  75. --
  76. ALTER TABLE `seo_sitemap_generator_rules`
  77.   ADD PRIMARY KEY (`id`);
  78.  
  79. --
  80. -- Индексы таблицы `seo_sitemap_generator_static_rules`
  81. --
  82. ALTER TABLE `seo_sitemap_generator_static_rules`
  83.   ADD PRIMARY KEY (`id`);
  84.  
  85. --
  86. -- AUTO_INCREMENT для сохранённых таблиц
  87. --
  88.  
  89. --
  90. -- AUTO_INCREMENT для таблицы `seo_sitemap_generator_rules`
  91. --
  92. ALTER TABLE `seo_sitemap_generator_rules`
  93.   MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
  94. --
  95. -- AUTO_INCREMENT для таблицы `seo_sitemap_generator_static_rules`
  96. --
  97. ALTER TABLE `seo_sitemap_generator_static_rules`
  98.   MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement