diff --git a/gurlushyk_2023.sql b/gurlushyk_2023.sql new file mode 100644 index 0000000..65b6b86 --- /dev/null +++ b/gurlushyk_2023.sql @@ -0,0 +1,2249 @@ +-- MySQL dump 10.13 Distrib 8.0.28, for Linux (x86_64) +-- +-- Host: localhost Database: gurlushyk +-- ------------------------------------------------------ +-- Server version 8.0.28-0ubuntu0.20.04.3 + +/*!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 */; +/*!50503 SET NAMES utf8mb4 */; +/*!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 `ahmadfatoni_apigenerator_data` +-- + +DROP TABLE IF EXISTS `ahmadfatoni_apigenerator_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `ahmadfatoni_apigenerator_data` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `endpoint` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `model` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `custom_format` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ahmadfatoni_apigenerator_data` +-- + +LOCK TABLES `ahmadfatoni_apigenerator_data` WRITE; +/*!40000 ALTER TABLE `ahmadfatoni_apigenerator_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `ahmadfatoni_apigenerator_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `backend_access_log` +-- + +DROP TABLE IF EXISTS `backend_access_log`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `backend_access_log` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `user_id` int unsigned NOT NULL, + `ip_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `backend_access_log` +-- + +LOCK TABLES `backend_access_log` WRITE; +/*!40000 ALTER TABLE `backend_access_log` DISABLE KEYS */; +INSERT INTO `backend_access_log` VALUES (1,1,'127.0.0.1','2023-06-09 13:27:22','2023-06-09 13:27:22'),(2,1,'127.0.0.1','2023-07-22 11:26:29','2023-07-22 11:26:29'),(3,1,'45.137.66.62','2023-07-29 06:18:37','2023-07-29 06:18:37'),(4,1,'45.137.66.62','2023-07-29 14:02:32','2023-07-29 14:02:32'),(5,1,'45.137.66.62','2023-07-30 12:17:31','2023-07-30 12:17:31'),(6,1,'45.137.66.62','2023-07-30 15:20:45','2023-07-30 15:20:45'),(7,1,'45.137.66.62','2023-07-30 15:39:37','2023-07-30 15:39:37'),(8,1,'45.137.66.62','2023-08-01 06:57:02','2023-08-01 06:57:02'),(9,1,'119.235.118.26','2023-08-04 10:18:55','2023-08-04 10:18:55'),(10,1,'45.137.66.62','2023-08-14 13:39:04','2023-08-14 13:39:04'),(11,1,'45.137.66.62','2023-08-20 11:25:16','2023-08-20 11:25:16'),(12,2,'45.137.66.62','2023-08-20 11:27:04','2023-08-20 11:27:04'); +/*!40000 ALTER TABLE `backend_access_log` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `backend_user_groups` +-- + +DROP TABLE IF EXISTS `backend_user_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `backend_user_groups` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `is_new_user_default` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `name_unique` (`name`), + KEY `code_index` (`code`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `backend_user_groups` +-- + +LOCK TABLES `backend_user_groups` WRITE; +/*!40000 ALTER TABLE `backend_user_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `backend_user_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `backend_user_preferences` +-- + +DROP TABLE IF EXISTS `backend_user_preferences`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `backend_user_preferences` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `user_id` int unsigned NOT NULL, + `namespace` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `group` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `item` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`id`), + KEY `user_item_index` (`user_id`,`namespace`,`group`,`item`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `backend_user_preferences` +-- + +LOCK TABLES `backend_user_preferences` WRITE; +/*!40000 ALTER TABLE `backend_user_preferences` DISABLE KEYS */; +/*!40000 ALTER TABLE `backend_user_preferences` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `backend_user_roles` +-- + +DROP TABLE IF EXISTS `backend_user_roles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `backend_user_roles` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `permissions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `is_system` tinyint(1) NOT NULL DEFAULT '0', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + UNIQUE KEY `role_unique` (`name`), + KEY `role_code_index` (`code`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `backend_user_roles` +-- + +LOCK TABLES `backend_user_roles` WRITE; +/*!40000 ALTER TABLE `backend_user_roles` DISABLE KEYS */; +/*!40000 ALTER TABLE `backend_user_roles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `backend_user_throttle` +-- + +DROP TABLE IF EXISTS `backend_user_throttle`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `backend_user_throttle` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `user_id` int unsigned DEFAULT NULL, + `ip_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `attempts` int NOT NULL DEFAULT '0', + `last_attempt_at` timestamp NULL DEFAULT NULL, + `is_suspended` tinyint(1) NOT NULL DEFAULT '0', + `suspended_at` timestamp NULL DEFAULT NULL, + `is_banned` tinyint(1) NOT NULL DEFAULT '0', + `banned_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `backend_user_throttle_user_id_index` (`user_id`), + KEY `backend_user_throttle_ip_address_index` (`ip_address`) +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `backend_user_throttle` +-- + +LOCK TABLES `backend_user_throttle` WRITE; +/*!40000 ALTER TABLE `backend_user_throttle` DISABLE KEYS */; +INSERT INTO `backend_user_throttle` VALUES (1,1,'127.0.0.1',0,NULL,0,NULL,0,NULL),(2,1,'45.137.66.62',0,NULL,0,NULL,0,NULL),(3,1,'119.235.118.26',0,NULL,0,NULL,0,NULL),(4,1,'85.132.101.68',0,NULL,0,NULL,0,NULL),(5,2,'45.137.66.62',0,NULL,0,NULL,0,NULL); +/*!40000 ALTER TABLE `backend_user_throttle` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `backend_users` +-- + +DROP TABLE IF EXISTS `backend_users`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `backend_users` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `first_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `last_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `login` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `activation_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `persist_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `reset_password_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `permissions` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `is_activated` tinyint(1) NOT NULL DEFAULT '0', + `role_id` int unsigned DEFAULT NULL, + `activated_at` timestamp NULL DEFAULT NULL, + `last_login` timestamp NULL DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + `deleted_at` timestamp NULL DEFAULT NULL, + `is_superuser` tinyint(1) NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + UNIQUE KEY `login_unique` (`login`), + UNIQUE KEY `email_unique` (`email`), + KEY `act_code_index` (`activation_code`), + KEY `reset_code_index` (`reset_password_code`), + KEY `admin_role_index` (`role_id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `backend_users` +-- + +LOCK TABLES `backend_users` WRITE; +/*!40000 ALTER TABLE `backend_users` DISABLE KEYS */; +INSERT INTO `backend_users` VALUES (1,'Admin','Person','admin','admin@domain.tld','$2y$10$fGfsIo38M1WniqiIBeWtIe5jRnbAlufPqvbHZcIo45PZmvu/FIagS',NULL,'$2y$10$1YzAEHfr7NzgHFE.PPfCo.iYqlqWWtE5yUUwpPrk8ejdY.dnISdlm',NULL,'',1,2,NULL,'2023-08-20 11:25:16','2022-06-24 07:15:58','2023-08-20 11:25:16',NULL,1),(2,'editor','editor','editor','editor@editor.com','$2y$10$9ltpMJ6Ox42RnKdjSONGLO1x4v3iOKEj2mBhg998qTrCJptbbzRp2',NULL,'$2y$10$hl5zQm3Z3rCkWUruuVs0LOaHWxEmsVWMfZXpD1517YD8l6DmVh3sy',NULL,'{\"product\":1,\"category\":1,\"slider\":1,\"rainlab.users.access_users\":1,\"media.manage_media\":1}',0,NULL,NULL,'2023-08-20 11:27:04','2023-08-20 11:26:45','2023-08-20 11:35:40',NULL,0); +/*!40000 ALTER TABLE `backend_users` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `backend_users_groups` +-- + +DROP TABLE IF EXISTS `backend_users_groups`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `backend_users_groups` ( + `user_id` int unsigned NOT NULL, + `user_group_id` int unsigned NOT NULL, + PRIMARY KEY (`user_id`,`user_group_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `backend_users_groups` +-- + +LOCK TABLES `backend_users_groups` WRITE; +/*!40000 ALTER TABLE `backend_users_groups` DISABLE KEYS */; +/*!40000 ALTER TABLE `backend_users_groups` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cache` +-- + +DROP TABLE IF EXISTS `cache`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cache` ( + `key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `expiration` int NOT NULL, + UNIQUE KEY `cache_key_unique` (`key`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cache` +-- + +LOCK TABLES `cache` WRITE; +/*!40000 ALTER TABLE `cache` DISABLE KEYS */; +/*!40000 ALTER TABLE `cache` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cms_theme_data` +-- + +DROP TABLE IF EXISTS `cms_theme_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cms_theme_data` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `theme` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `cms_theme_data_theme_index` (`theme`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cms_theme_data` +-- + +LOCK TABLES `cms_theme_data` WRITE; +/*!40000 ALTER TABLE `cms_theme_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `cms_theme_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cms_theme_logs` +-- + +DROP TABLE IF EXISTS `cms_theme_logs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cms_theme_logs` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `theme` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `template` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `old_template` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `old_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `user_id` int DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `cms_theme_logs_type_index` (`type`), + KEY `cms_theme_logs_theme_index` (`theme`), + KEY `cms_theme_logs_user_id_index` (`user_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cms_theme_logs` +-- + +LOCK TABLES `cms_theme_logs` WRITE; +/*!40000 ALTER TABLE `cms_theme_logs` DISABLE KEYS */; +/*!40000 ALTER TABLE `cms_theme_logs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cms_theme_templates` +-- + +DROP TABLE IF EXISTS `cms_theme_templates`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cms_theme_templates` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `source` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `file_size` int unsigned NOT NULL, + `updated_at` datetime DEFAULT NULL, + `deleted_at` datetime DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `cms_theme_templates_source_index` (`source`), + KEY `cms_theme_templates_path_index` (`path`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cms_theme_templates` +-- + +LOCK TABLES `cms_theme_templates` WRITE; +/*!40000 ALTER TABLE `cms_theme_templates` DISABLE KEYS */; +/*!40000 ALTER TABLE `cms_theme_templates` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `deferred_bindings` +-- + +DROP TABLE IF EXISTS `deferred_bindings`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `deferred_bindings` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `master_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `master_field` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `slave_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `slave_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `pivot_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `session_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `is_bind` tinyint(1) NOT NULL DEFAULT '1', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `deferred_bindings_master_type_index` (`master_type`), + KEY `deferred_bindings_master_field_index` (`master_field`), + KEY `deferred_bindings_slave_type_index` (`slave_type`), + KEY `deferred_bindings_slave_id_index` (`slave_id`), + KEY `deferred_bindings_session_key_index` (`session_key`) +) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `deferred_bindings` +-- + +LOCK TABLES `deferred_bindings` WRITE; +/*!40000 ALTER TABLE `deferred_bindings` DISABLE KEYS */; +INSERT INTO `deferred_bindings` VALUES (13,'RainLab\\Notify\\Models\\NotificationRule','rule_conditions','RainLab\\Notify\\Models\\RuleCondition','1',NULL,'OLAslZ6KWxGZp1850DyedvvNUybqFHRM4wTmgz8T',1,'2023-07-31 15:20:40','2023-07-31 15:20:40'),(14,'RainLab\\Notify\\Models\\NotificationRule','rule_conditions','RainLab\\Notify\\Models\\RuleCondition','2',NULL,'MJwOWzaKilJRIDR8VxkEqZJiEEHhTG6CQjqwdLv8',1,'2023-07-31 15:21:32','2023-07-31 15:21:32'); +/*!40000 ALTER TABLE `deferred_bindings` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `failed_jobs` +-- + +DROP TABLE IF EXISTS `failed_jobs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `failed_jobs` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `connection` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `queue` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `payload` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `exception` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `failed_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `failed_jobs` +-- + +LOCK TABLES `failed_jobs` WRITE; +/*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */; +/*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `janvince_smallcontactform_messages` +-- + +DROP TABLE IF EXISTS `janvince_smallcontactform_messages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `janvince_smallcontactform_messages` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `email` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `form_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `new_message` tinyint(1) NOT NULL DEFAULT '1', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + `remote_ip` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `form_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `form_alias` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `url` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `form_notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`id`), + KEY `janvince_smallcontactform_messages_remote_ip_index` (`remote_ip`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `janvince_smallcontactform_messages` +-- + +LOCK TABLES `janvince_smallcontactform_messages` WRITE; +/*!40000 ALTER TABLE `janvince_smallcontactform_messages` DISABLE KEYS */; +/*!40000 ALTER TABLE `janvince_smallcontactform_messages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `jobs` +-- + +DROP TABLE IF EXISTS `jobs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `jobs` ( + `id` bigint unsigned NOT NULL AUTO_INCREMENT, + `queue` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `payload` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `attempts` tinyint unsigned NOT NULL, + `reserved_at` int unsigned DEFAULT NULL, + `available_at` int unsigned NOT NULL, + `created_at` int unsigned NOT NULL, + PRIMARY KEY (`id`), + KEY `jobs_queue_reserved_at_index` (`queue`,`reserved_at`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `jobs` +-- + +LOCK TABLES `jobs` WRITE; +/*!40000 ALTER TABLE `jobs` DISABLE KEYS */; +/*!40000 ALTER TABLE `jobs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `martin_forms_records` +-- + +DROP TABLE IF EXISTS `martin_forms_records`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `martin_forms_records` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `group` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '(Empty)', + `form_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `ip` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `unread` tinyint(1) NOT NULL DEFAULT '1', + `deleted_at` timestamp NULL DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `martin_forms_records` +-- + +LOCK TABLES `martin_forms_records` WRITE; +/*!40000 ALTER TABLE `martin_forms_records` DISABLE KEYS */; +/*!40000 ALTER TABLE `martin_forms_records` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `migrations` +-- + +DROP TABLE IF EXISTS `migrations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `migrations` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `migration` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `batch` int NOT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `migrations` +-- + +LOCK TABLES `migrations` WRITE; +/*!40000 ALTER TABLE `migrations` DISABLE KEYS */; +INSERT INTO `migrations` VALUES (1,'2013_10_01_000001_Db_Deferred_Bindings',1),(2,'2013_10_01_000002_Db_System_Files',1),(3,'2013_10_01_000003_Db_System_Plugin_Versions',1),(4,'2013_10_01_000004_Db_System_Plugin_History',1),(5,'2013_10_01_000005_Db_System_Settings',1),(6,'2013_10_01_000006_Db_System_Parameters',1),(7,'2013_10_01_000007_Db_System_Add_Disabled_Flag',1),(8,'2013_10_01_000008_Db_System_Mail_Templates',1),(9,'2013_10_01_000009_Db_System_Mail_Layouts',1),(10,'2014_10_01_000010_Db_Jobs',1),(11,'2014_10_01_000011_Db_System_Event_Logs',1),(12,'2014_10_01_000012_Db_System_Request_Logs',1),(13,'2014_10_01_000013_Db_System_Sessions',1),(14,'2015_10_01_000014_Db_System_Mail_Layout_Rename',1),(15,'2015_10_01_000015_Db_System_Add_Frozen_Flag',1),(16,'2015_10_01_000016_Db_Cache',1),(17,'2015_10_01_000017_Db_System_Revisions',1),(18,'2015_10_01_000018_Db_FailedJobs',1),(19,'2016_10_01_000019_Db_System_Plugin_History_Detail_Text',1),(20,'2016_10_01_000020_Db_System_Timestamp_Fix',1),(21,'2017_08_04_121309_Db_Deferred_Bindings_Add_Index_Session',1),(22,'2017_10_01_000021_Db_System_Sessions_Update',1),(23,'2017_10_01_000022_Db_Jobs_FailedJobs_Update',1),(24,'2017_10_01_000023_Db_System_Mail_Partials',1),(25,'2017_10_23_000024_Db_System_Mail_Layouts_Add_Options_Field',1),(26,'2021_10_01_000025_Db_Add_Pivot_Data_To_Deferred_Bindings',1),(27,'2013_10_01_000001_Db_Backend_Users',2),(28,'2013_10_01_000002_Db_Backend_User_Groups',2),(29,'2013_10_01_000003_Db_Backend_Users_Groups',2),(30,'2013_10_01_000004_Db_Backend_User_Throttle',2),(31,'2014_01_04_000005_Db_Backend_User_Preferences',2),(32,'2014_10_01_000006_Db_Backend_Access_Log',2),(33,'2014_10_01_000007_Db_Backend_Add_Description_Field',2),(34,'2015_10_01_000008_Db_Backend_Add_Superuser_Flag',2),(35,'2016_10_01_000009_Db_Backend_Timestamp_Fix',2),(36,'2017_10_01_000010_Db_Backend_User_Roles',2),(37,'2018_12_16_000011_Db_Backend_Add_Deleted_At',2),(38,'2014_10_01_000001_Db_Cms_Theme_Data',3),(39,'2016_10_01_000002_Db_Cms_Timestamp_Fix',3),(40,'2017_10_01_000003_Db_Cms_Theme_Logs',3),(41,'2018_11_01_000001_Db_Cms_Theme_Templates',3); +/*!40000 ALTER TABLE `migrations` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `offline_sitesearch_query_logs` +-- + +DROP TABLE IF EXISTS `offline_sitesearch_query_logs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `offline_sitesearch_query_logs` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `query` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `location` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `domain` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `useragent` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `session_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `offline_sitesearch_query_logs` +-- + +LOCK TABLES `offline_sitesearch_query_logs` WRITE; +/*!40000 ALTER TABLE `offline_sitesearch_query_logs` DISABLE KEYS */; +/*!40000 ALTER TABLE `offline_sitesearch_query_logs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_blog_categories` +-- + +DROP TABLE IF EXISTS `rainlab_blog_categories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_blog_categories` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `parent_id` int unsigned DEFAULT NULL, + `nest_left` int DEFAULT NULL, + `nest_right` int DEFAULT NULL, + `nest_depth` int DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `rainlab_blog_categories_slug_index` (`slug`), + KEY `rainlab_blog_categories_parent_id_index` (`parent_id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_blog_categories` +-- + +LOCK TABLES `rainlab_blog_categories` WRITE; +/*!40000 ALTER TABLE `rainlab_blog_categories` DISABLE KEYS */; +INSERT INTO `rainlab_blog_categories` VALUES (1,'Uncategorized','uncategorized',NULL,NULL,NULL,1,2,0,'2023-06-09 13:40:50','2023-06-09 13:40:50'); +/*!40000 ALTER TABLE `rainlab_blog_categories` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_blog_posts` +-- + +DROP TABLE IF EXISTS `rainlab_blog_posts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_blog_posts` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `user_id` int unsigned DEFAULT NULL, + `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `content_html` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `published_at` timestamp NULL DEFAULT NULL, + `published` tinyint(1) NOT NULL DEFAULT '0', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + `metadata` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`id`), + KEY `rainlab_blog_posts_user_id_index` (`user_id`), + KEY `rainlab_blog_posts_slug_index` (`slug`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_blog_posts` +-- + +LOCK TABLES `rainlab_blog_posts` WRITE; +/*!40000 ALTER TABLE `rainlab_blog_posts` DISABLE KEYS */; +INSERT INTO `rainlab_blog_posts` VALUES (1,NULL,'First blog post','first-blog-post','The first ever blog post is here. It might be a good idea to update this post with some more relevant content.','This is your first ever **blog post**! It might be a good idea to update this post with some more relevant content.\n\nYou can edit this content by selecting **Blog** from the administration back-end menu.\n\n*Enjoy the good times!*','

This is your first ever blog post! It might be a good idea to update this post with some more relevant content.

\n

You can edit this content by selecting Blog from the administration back-end menu.

\n

Enjoy the good times!

','2023-06-09 13:40:50',1,'2023-06-09 13:40:50','2023-06-09 13:40:50',NULL); +/*!40000 ALTER TABLE `rainlab_blog_posts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_blog_posts_categories` +-- + +DROP TABLE IF EXISTS `rainlab_blog_posts_categories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_blog_posts_categories` ( + `post_id` int unsigned NOT NULL, + `category_id` int unsigned NOT NULL, + PRIMARY KEY (`post_id`,`category_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_blog_posts_categories` +-- + +LOCK TABLES `rainlab_blog_posts_categories` WRITE; +/*!40000 ALTER TABLE `rainlab_blog_posts_categories` DISABLE KEYS */; +/*!40000 ALTER TABLE `rainlab_blog_posts_categories` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_location_countries` +-- + +DROP TABLE IF EXISTS `rainlab_location_countries`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_location_countries` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `is_enabled` tinyint(1) NOT NULL DEFAULT '0', + `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `is_pinned` tinyint(1) NOT NULL DEFAULT '0', + `calling_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `rainlab_location_countries_name_index` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=249 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_location_countries` +-- + +LOCK TABLES `rainlab_location_countries` WRITE; +/*!40000 ALTER TABLE `rainlab_location_countries` DISABLE KEYS */; +INSERT INTO `rainlab_location_countries` VALUES (1,1,'Australia','AU',1,'61'),(2,1,'Canada','CA',1,'1'),(3,1,'United Kingdom','GB',1,'44'),(4,1,'United States','US',1,'1'),(5,0,'Afghanistan','AF',0,'93'),(6,0,'Aland Islands ','AX',0,NULL),(7,0,'Albania','AL',0,'355'),(8,0,'Algeria','DZ',0,'213'),(9,0,'American Samoa','AS',0,'1684'),(10,0,'Andorra','AD',0,'376'),(11,0,'Angola','AO',0,'244'),(12,0,'Anguilla','AI',0,'1264'),(13,0,'Antarctica','AQ',0,'672'),(14,0,'Antigua and Barbuda','AG',0,'1268'),(15,0,'Argentina','AR',0,'54'),(16,0,'Armenia','AM',0,'374'),(17,0,'Aruba','AW',0,'297'),(18,0,'Austria','AT',0,'43'),(19,0,'Azerbaijan','AZ',0,'994'),(20,0,'Bahamas','BS',0,'1242'),(21,0,'Bahrain','BH',0,'973'),(22,0,'Bangladesh','BD',0,'880'),(23,0,'Barbados','BB',0,'1246'),(24,0,'Belarus','BY',0,'375'),(25,0,'Belgium','BE',0,'32'),(26,0,'Belize','BZ',0,'501'),(27,0,'Benin','BJ',0,'229'),(28,0,'Bermuda','BM',0,'1441'),(29,0,'Bhutan','BT',0,'975'),(30,0,'Bolivia, Plurinational State of','BO',0,'591'),(31,0,'Bonaire, Sint Eustatius and Saba','BQ',0,NULL),(32,0,'Bosnia and Herzegovina','BA',0,'387'),(33,0,'Botswana','BW',0,'267'),(34,0,'Bouvet Island','BV',0,NULL),(35,0,'Brazil','BR',0,'55'),(36,0,'British Indian Ocean Territory','IO',0,NULL),(37,0,'Brunei Darussalam','BN',0,'673'),(38,0,'Bulgaria','BG',0,'359'),(39,0,'Burkina Faso','BF',0,'226'),(40,0,'Burundi','BI',0,'257'),(41,0,'Cambodia','KH',0,'855'),(42,0,'Cameroon','CM',0,'237'),(43,0,'Cape Verde','CV',0,'238'),(44,0,'Cayman Islands','KY',0,'1345'),(45,0,'Central African Republic','CF',0,'236'),(46,0,'Chad','TD',0,'235'),(47,0,'Chile','CL',0,'56'),(48,0,'China','CN',0,'86'),(49,0,'Christmas Island','CX',0,'61'),(50,0,'Cocos (Keeling) Islands','CC',0,'61'),(51,0,'Colombia','CO',0,'57'),(52,0,'Comoros','KM',0,'269'),(53,0,'Congo','CG',0,'242'),(54,0,'Congo, the Democratic Republic of the','CD',0,'243'),(55,0,'Cook Islands','CK',0,'682'),(56,0,'Costa Rica','CR',0,'506'),(57,0,'Cote d\'Ivoire','CI',0,'225'),(58,0,'Croatia','HR',0,'385'),(59,0,'Cuba','CU',0,'53'),(60,0,'Curaçao','CW',0,NULL),(61,0,'Cyprus','CY',0,'357'),(62,0,'Czech Republic','CZ',0,'420'),(63,0,'Denmark','DK',0,'45'),(64,0,'Djibouti','DJ',0,'253'),(65,0,'Dominica','DM',0,'1767'),(66,0,'Dominican Republic','DO',0,'1809'),(67,0,'Ecuador','EC',0,'593'),(68,0,'Egypt','EG',0,'20'),(69,0,'El Salvador','SV',0,'503'),(70,0,'Equatorial Guinea','GQ',0,'240'),(71,0,'Eritrea','ER',0,'291'),(72,0,'Estonia','EE',0,'372'),(73,0,'Ethiopia','ET',0,'251'),(74,0,'Falkland Islands (Malvinas)','FK',0,'500'),(75,0,'Faroe Islands','FO',0,'298'),(76,0,'Finland','FI',0,'358'),(77,0,'Fiji','FJ',0,'679'),(78,1,'France','FR',0,'33'),(79,0,'French Guiana','GF',0,NULL),(80,0,'French Polynesia','PF',0,'689'),(81,0,'French Southern Territories','TF',0,NULL),(82,0,'Gabon','GA',0,'241'),(83,0,'Gambia','GM',0,'220'),(84,0,'Georgia','GE',0,'995'),(85,0,'Germany','DE',0,'49'),(86,0,'Ghana','GH',0,'233'),(87,0,'Gibraltar','GI',0,'350'),(88,0,'Greece','GR',0,'30'),(89,0,'Greenland','GL',0,'299'),(90,0,'Grenada','GD',0,'1473'),(91,0,'Guadeloupe','GP',0,NULL),(92,0,'Guam','GU',0,'1671'),(93,0,'Guatemala','GT',0,'502'),(94,0,'Guernsey','GG',0,NULL),(95,0,'Guinea','GN',0,'224'),(96,0,'Guinea-Bissau','GW',0,'245'),(97,0,'Guyana','GY',0,'592'),(98,0,'Haiti','HT',0,'509'),(99,0,'Heard Island and McDonald Islands','HM',0,NULL),(100,0,'Holy See (Vatican City State)','VA',0,'39'),(101,0,'Honduras','HN',0,'504'),(102,0,'Hong Kong','HK',0,'852'),(103,1,'Hungary','HU',0,'36'),(104,0,'Iceland','IS',0,'354'),(105,1,'India','IN',0,'91'),(106,0,'Indonesia','ID',0,'62'),(107,0,'Iran, Islamic Republic of','IR',0,'98'),(108,0,'Iraq','IQ',0,'964'),(109,1,'Ireland','IE',0,'353'),(110,0,'Isle of Man','IM',0,'44'),(111,0,'Israel','IL',0,'972'),(112,0,'Italy','IT',0,'39'),(113,0,'Jamaica','JM',0,'1876'),(114,0,'Japan','JP',0,'81'),(115,0,'Jersey','JE',0,NULL),(116,0,'Jordan','JO',0,'962'),(117,0,'Kazakhstan','KZ',0,'7'),(118,0,'Kenya','KE',0,'254'),(119,0,'Kiribati','KI',0,'686'),(120,0,'Korea, Democratic People\'s Republic of','KP',0,'850'),(121,0,'Korea, Republic of','KR',0,'82'),(122,0,'Kuwait','KW',0,'965'),(123,0,'Kyrgyzstan','KG',0,'996'),(124,0,'Lao People\'s Democratic Republic','LA',0,'856'),(125,0,'Latvia','LV',0,'371'),(126,0,'Lebanon','LB',0,'961'),(127,0,'Lesotho','LS',0,'266'),(128,0,'Liberia','LR',0,'231'),(129,0,'Libyan Arab Jamahiriya','LY',0,'218'),(130,0,'Liechtenstein','LI',0,'423'),(131,0,'Lithuania','LT',0,'370'),(132,0,'Luxembourg','LU',0,'352'),(133,0,'Macao','MO',0,'853'),(134,0,'Macedonia','MK',0,'389'),(135,0,'Madagascar','MG',0,'261'),(136,0,'Malawi','MW',0,'265'),(137,0,'Malaysia','MY',0,'60'),(138,0,'Maldives','MV',0,'960'),(139,0,'Mali','ML',0,'223'),(140,0,'Malta','MT',0,'356'),(141,0,'Marshall Islands','MH',0,'692'),(142,0,'Martinique','MQ',0,NULL),(143,0,'Mauritania','MR',0,'222'),(144,0,'Mauritius','MU',0,'230'),(145,0,'Mayotte','YT',0,'262'),(146,0,'Mexico','MX',0,'52'),(147,0,'Micronesia, Federated States of','FM',0,'691'),(148,0,'Moldova, Republic of','MD',0,'373'),(149,0,'Monaco','MC',0,'377'),(150,0,'Mongolia','MN',0,'976'),(151,0,'Montenegro','ME',0,'382'),(152,0,'Montserrat','MS',0,'1664'),(153,0,'Morocco','MA',0,'212'),(154,0,'Mozambique','MZ',0,'258'),(155,0,'Myanmar','MM',0,'95'),(156,0,'Namibia','NA',0,'264'),(157,0,'Nauru','NR',0,'674'),(158,0,'Nepal','NP',0,'977'),(159,1,'Netherlands','NL',0,'31'),(160,0,'New Caledonia','NC',0,'687'),(161,1,'New Zealand','NZ',0,'64'),(162,0,'Nicaragua','NI',0,'505'),(163,0,'Niger','NE',0,'227'),(164,0,'Nigeria','NG',0,'234'),(165,0,'Niue','NU',0,'683'),(166,0,'Norfolk Island','NF',0,NULL),(167,0,'Northern Mariana Islands','MP',0,'1670'),(168,0,'Norway','NO',0,'47'),(169,0,'Oman','OM',0,'968'),(170,0,'Pakistan','PK',0,'92'),(171,0,'Palau','PW',0,'680'),(172,0,'Palestine','PS',0,NULL),(173,0,'Panama','PA',0,'507'),(174,0,'Papua New Guinea','PG',0,'675'),(175,0,'Paraguay','PY',0,'595'),(176,0,'Peru','PE',0,'51'),(177,0,'Philippines','PH',0,'63'),(178,0,'Pitcairn','PN',0,'870'),(179,0,'Poland','PL',0,'48'),(180,0,'Portugal','PT',0,'351'),(181,0,'Puerto Rico','PR',0,'1'),(182,0,'Qatar','QA',0,'974'),(183,0,'Reunion','RE',0,NULL),(184,1,'Romania','RO',0,'40'),(185,0,'Russian Federation','RU',0,'7'),(186,0,'Rwanda','RW',0,'250'),(187,0,'Saint Barthélemy','BL',0,'590'),(188,0,'Saint Helena','SH',0,'290'),(189,0,'Saint Kitts and Nevis','KN',0,'1869'),(190,0,'Saint Lucia','LC',0,'1758'),(191,0,'Saint Martin (French part)','MF',0,'1599'),(192,0,'Saint Pierre and Miquelon','PM',0,'508'),(193,0,'Saint Vincent and the Grenadines','VC',0,'1784'),(194,0,'Samoa','WS',0,'685'),(195,0,'San Marino','SM',0,'378'),(196,0,'Sao Tome and Principe','ST',0,'239'),(197,0,'Saudi Arabia','SA',0,'966'),(198,0,'Senegal','SN',0,'221'),(199,0,'Serbia','RS',0,'381'),(200,0,'Seychelles','SC',0,'248'),(201,0,'Sierra Leone','SL',0,'232'),(202,0,'Singapore','SG',0,'65'),(203,0,'Sint Maarten (Dutch part)','SX',0,NULL),(204,0,'Slovakia','SK',0,'421'),(205,0,'Slovenia','SI',0,'386'),(206,0,'Solomon Islands','SB',0,'677'),(207,0,'Somalia','SO',0,'252'),(208,0,'South Africa','ZA',0,'27'),(209,0,'South Georgia and the South Sandwich Islands','GS',0,NULL),(210,1,'Spain','ES',0,'34'),(211,0,'Sri Lanka','LK',0,'94'),(212,0,'Sudan','SD',0,'249'),(213,0,'Suriname','SR',0,'597'),(214,0,'Svalbard and Jan Mayen','SJ',0,NULL),(215,0,'Swaziland','SZ',0,'268'),(216,0,'Sweden','SE',0,'46'),(217,0,'Switzerland','CH',0,'41'),(218,0,'Syrian Arab Republic','SY',0,'963'),(219,0,'Taiwan, Province of China','TW',0,'886'),(220,0,'Tajikistan','TJ',0,'992'),(221,0,'Tanzania, United Republic of','TZ',0,'255'),(222,0,'Thailand','TH',0,'66'),(223,0,'Timor-Leste','TL',0,'670'),(224,0,'Togo','TG',0,'228'),(225,0,'Tokelau','TK',0,'690'),(226,0,'Tonga','TO',0,'676'),(227,0,'Trinidad and Tobago','TT',0,'1868'),(228,0,'Tunisia','TN',0,'216'),(229,0,'Turkey','TR',0,'90'),(230,0,'Turkmenistan','TM',0,'993'),(231,0,'Turks and Caicos Islands','TC',0,'1649'),(232,0,'Tuvalu','TV',0,'688'),(233,0,'Uganda','UG',0,'256'),(234,0,'Ukraine','UA',0,'380'),(235,0,'United Arab Emirates','AE',0,'971'),(236,0,'United States Minor Outlying Islands','UM',0,NULL),(237,0,'Uruguay','UY',0,'598'),(238,0,'Uzbekistan','UZ',0,'998'),(239,0,'Vanuatu','VU',0,'678'),(240,0,'Venezuela, Bolivarian Republic of','VE',0,'58'),(241,0,'Viet Nam','VN',0,'84'),(242,0,'Virgin Islands, British','VG',0,'1284'),(243,0,'Virgin Islands, U.S.','VI',0,'1340'),(244,0,'Wallis and Futuna','WF',0,'681'),(245,0,'Western Sahara','EH',0,NULL),(246,0,'Yemen','YE',0,'967'),(247,0,'Zambia','ZM',0,'260'),(248,0,'Zimbabwe','ZW',0,'263'); +/*!40000 ALTER TABLE `rainlab_location_countries` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_location_states` +-- + +DROP TABLE IF EXISTS `rainlab_location_states`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_location_states` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `country_id` int unsigned NOT NULL, + `is_enabled` tinyint(1) NOT NULL DEFAULT '1', + `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + PRIMARY KEY (`id`), + KEY `rainlab_location_states_country_id_index` (`country_id`), + KEY `rainlab_location_states_name_index` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=636 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_location_states` +-- + +LOCK TABLES `rainlab_location_states` WRITE; +/*!40000 ALTER TABLE `rainlab_location_states` DISABLE KEYS */; +INSERT INTO `rainlab_location_states` VALUES (1,4,1,'Alabama','AL'),(2,4,1,'Alaska','AK'),(3,4,1,'American Samoa','AS'),(4,4,1,'Arizona','AZ'),(5,4,1,'Arkansas','AR'),(6,4,1,'California','CA'),(7,4,1,'Colorado','CO'),(8,4,1,'Connecticut','CT'),(9,4,1,'Delaware','DE'),(10,4,1,'Dist. of Columbia','DC'),(11,4,1,'Florida','FL'),(12,4,1,'Georgia','GA'),(13,4,1,'Guam','GU'),(14,4,1,'Hawaii','HI'),(15,4,1,'Idaho','ID'),(16,4,1,'Illinois','IL'),(17,4,1,'Indiana','IN'),(18,4,1,'Iowa','IA'),(19,4,1,'Kansas','KS'),(20,4,1,'Kentucky','KY'),(21,4,1,'Louisiana','LA'),(22,4,1,'Maine','ME'),(23,4,1,'Maryland','MD'),(24,4,1,'Marshall Islands','MH'),(25,4,1,'Massachusetts','MA'),(26,4,1,'Michigan','MI'),(27,4,1,'Micronesia','FM'),(28,4,1,'Minnesota','MN'),(29,4,1,'Mississippi','MS'),(30,4,1,'Missouri','MO'),(31,4,1,'Montana','MT'),(32,4,1,'Nebraska','NE'),(33,4,1,'Nevada','NV'),(34,4,1,'New Hampshire','NH'),(35,4,1,'New Jersey','NJ'),(36,4,1,'New Mexico','NM'),(37,4,1,'New York','NY'),(38,4,1,'North Carolina','NC'),(39,4,1,'North Dakota','ND'),(40,4,1,'Northern Marianas','MP'),(41,4,1,'Ohio','OH'),(42,4,1,'Oklahoma','OK'),(43,4,1,'Oregon','OR'),(44,4,1,'Palau','PW'),(45,4,1,'Pennsylvania','PA'),(46,4,1,'Puerto Rico','PR'),(47,4,1,'Rhode Island','RI'),(48,4,1,'South Carolina','SC'),(49,4,1,'South Dakota','SD'),(50,4,1,'Tennessee','TN'),(51,4,1,'Texas','TX'),(52,4,1,'Utah','UT'),(53,4,1,'Vermont','VT'),(54,4,1,'Virginia','VA'),(55,4,1,'Virgin Islands','VI'),(56,4,1,'Washington','WA'),(57,4,1,'West Virginia','WV'),(58,4,1,'Wisconsin','WI'),(59,4,1,'Wyoming','WY'),(60,35,1,'Acre','AC'),(61,35,1,'Alagoas','AL'),(62,35,1,'Amapá','AP'),(63,35,1,'Amazonas','AM'),(64,35,1,'Bahia','BA'),(65,35,1,'Ceará','CE'),(66,35,1,'Distrito Federal','DF'),(67,35,1,'Espírito Santo','ES'),(68,35,1,'Goiás','GO'),(69,35,1,'Maranhão','MA'),(70,35,1,'Mato Grosso','MT'),(71,35,1,'Mato Grosso do Sul','MS'),(72,35,1,'Minas Gerais','MG'),(73,35,1,'Pará','PA'),(74,35,1,'Paraíba','PB'),(75,35,1,'Paraná','PR'),(76,35,1,'Pernambuco','PE'),(77,35,1,'Piauí','PI'),(78,35,1,'Rio de Janeiro','RJ'),(79,35,1,'Rio Grande do Norte','RN'),(80,35,1,'Rio Grande do Sul','RS'),(81,35,1,'Rondônia','RO'),(82,35,1,'Roraima','RR'),(83,35,1,'Santa Catarina','SC'),(84,35,1,'São Paulo','SP'),(85,35,1,'Sergipe','SE'),(86,35,1,'Tocantins','TO'),(87,2,1,'Alberta','AB'),(88,2,1,'British Columbia','BC'),(89,2,1,'Manitoba','MB'),(90,2,1,'New Brunswick','NB'),(91,2,1,'Newfoundland and Labrador','NL'),(92,2,1,'Northwest Territories','NT'),(93,2,1,'Nova Scotia','NS'),(94,2,1,'Nunavut','NU'),(95,2,1,'Ontario','ON'),(96,2,1,'Prince Edward Island','PE'),(97,2,1,'Quebec','QC'),(98,2,1,'Saskatchewan','SK'),(99,2,1,'Yukon','YT'),(100,217,1,'Aargau','AG'),(101,217,1,'Appenzell Innerrhoden','AI'),(102,217,1,'Appenzell Ausserrhoden','AR'),(103,217,1,'Bern','BE'),(104,217,1,'Basel-Landschaft','BL'),(105,217,1,'Basel-Stadt','BS'),(106,217,1,'Fribourg','FR'),(107,217,1,'Genève','GE'),(108,217,1,'Glarus','GL'),(109,217,1,'Graubünden','GR'),(110,217,1,'Jura','JU'),(111,217,1,'Luzern','LU'),(112,217,1,'Neuchâtel','NE'),(113,217,1,'Nidwalden','NW'),(114,217,1,'Obwalden','OW'),(115,217,1,'St. Gallen','SG'),(116,217,1,'Solothurn','SO'),(117,217,1,'Schwyz','SZ'),(118,217,1,'Thurgau','TG'),(119,217,1,'Ticino','TI'),(120,217,1,'Uri','UR'),(121,217,1,'Vaud','VD'),(122,217,1,'Valais','VS'),(123,217,1,'Zug','ZG'),(124,217,1,'Zürich','ZH'),(125,1,1,'New South Wales','NSW'),(126,1,1,'Queensland','QLD'),(127,1,1,'South Australia','SA'),(128,1,1,'Tasmania','TAS'),(129,1,1,'Victoria','VIC'),(130,1,1,'Western Australia','WA'),(131,1,1,'Northern Territory','NT'),(132,1,1,'Australian Capital Territory','ACT'),(133,85,1,'Baden-Württemberg','BW'),(134,85,1,'Bayern','BY'),(135,85,1,'Berlin','BE'),(136,85,1,'Brandenburg','BB'),(137,85,1,'Bremen','HB'),(138,85,1,'Hamburg','HH'),(139,85,1,'Hessen','HE'),(140,85,1,'Mecklenburg-Vorpommern','MV'),(141,85,1,'Niedersachsen','NI'),(142,85,1,'Nordrhein-Westfalen','NW'),(143,85,1,'Rheinland-Pfalz','RP'),(144,85,1,'Saarland','SL'),(145,85,1,'Sachsen','SN'),(146,85,1,'Sachsen-Anhalt','ST'),(147,85,1,'Schleswig-Holstein','SH'),(148,85,1,'Thüringen','TH'),(149,72,1,'Harju','HA'),(150,72,1,'Hiiu','HI'),(151,72,1,'Ida-Viru','IV'),(152,72,1,'Jõgeva','JR'),(153,72,1,'Järva','JN'),(154,72,1,'Lääne','LN'),(155,72,1,'Lääne-Viru','LV'),(156,72,1,'Põlva','PL'),(157,72,1,'Pärnu','PR'),(158,72,1,'Rapla','RA'),(159,72,1,'Saare','SA'),(160,72,1,'Tartu','TA'),(161,72,1,'Valga','VG'),(162,72,1,'Viljandi','VD'),(163,72,1,'Võru','VR'),(164,109,1,'Dublin','D'),(165,109,1,'Wicklow','WW'),(166,109,1,'Wexford','WX'),(167,109,1,'Carlow','CW'),(168,109,1,'Kildare','KE'),(169,109,1,'Meath','MH'),(170,109,1,'Louth','LH'),(171,109,1,'Monaghan','MN'),(172,109,1,'Cavan','CN'),(173,109,1,'Longford','LD'),(174,109,1,'Westmeath','WH'),(175,109,1,'Offaly','OY'),(176,109,1,'Laois','LS'),(177,109,1,'Kilkenny','KK'),(178,109,1,'Waterford','WD'),(179,109,1,'Cork','C'),(180,109,1,'Kerry','KY'),(181,109,1,'Limerick','LK'),(182,109,1,'North Tipperary','TN'),(183,109,1,'South Tipperary','TS'),(184,109,1,'Clare','CE'),(185,109,1,'Galway','G'),(186,109,1,'Mayo','MO'),(187,109,1,'Roscommon','RN'),(188,109,1,'Sligo','SO'),(189,109,1,'Leitrim','LM'),(190,109,1,'Donegal','DL'),(191,159,1,'Drenthe','DR'),(192,159,1,'Flevoland','FL'),(193,159,1,'Friesland','FR'),(194,159,1,'Gelderland','GE'),(195,159,1,'Groningen','GR'),(196,159,1,'Limburg','LI'),(197,159,1,'Noord-Brabant','NB'),(198,159,1,'Noord-Holland','NH'),(199,159,1,'Overijssel','OV'),(200,159,1,'Utrecht','UT'),(201,159,1,'Zeeland','ZE'),(202,159,1,'Zuid-Holland','ZH'),(203,3,1,'Aberdeenshire','ABE'),(204,3,1,'Anglesey','ALY'),(205,3,1,'Angus','ANG'),(206,3,1,'Argyll','ARG'),(207,3,1,'Ayrshire','AYR'),(208,3,1,'Banffshire','BAN'),(209,3,1,'Bedfordshire','BED'),(210,3,1,'Berkshire','BER'),(211,3,1,'Berwickshire','BWS'),(212,3,1,'Brecknockshire','BRE'),(213,3,1,'Buckinghamshire','BUC'),(214,3,1,'Bute','BUT'),(215,3,1,'Caernarfonshire','CAE'),(216,3,1,'Caithness','CAI'),(217,3,1,'Cambridgeshire','CAM'),(218,3,1,'Cardiganshire','CAR'),(219,3,1,'Carmarthenshire','CMS'),(220,3,1,'Cheshire','CHE'),(221,3,1,'Clackmannanshire','CLA'),(222,3,1,'Cleveland','CLE'),(223,3,1,'Cornwall','COR'),(224,3,1,'Cromartyshire','CRO'),(225,3,1,'Cumberland','CBR'),(226,3,1,'Cumbria','CUM'),(227,3,1,'Denbighshire','DEN'),(228,3,1,'Derbyshire','DER'),(229,3,1,'Devon','DEV'),(230,3,1,'Dorset','DOR'),(231,3,1,'Dumbartonshire','DBS'),(232,3,1,'Dumfriesshire','DUM'),(233,3,1,'Durham','DUR'),(234,3,1,'East Lothian','ELO'),(235,3,1,'Essex','ESS'),(236,3,1,'Flintshire','FLI'),(237,3,1,'Fife','FIF'),(238,3,1,'Glamorgan','GLA'),(239,3,1,'Gloucestershire','GLO'),(240,3,1,'Hampshire','HAM'),(241,3,1,'Herefordshire','HER'),(242,3,1,'Hertfordshire','HTF'),(243,3,1,'Huntingdonshire','HUN'),(244,3,1,'Inverness','INV'),(245,3,1,'Kent','KEN'),(246,3,1,'Kincardineshire','KCD'),(247,3,1,'Kinross-shire','KIN'),(248,3,1,'Kirkcudbrightshire','KIR'),(249,3,1,'Lanarkshire','LKS'),(250,3,1,'Lancashire','LAN'),(251,3,1,'Leicestershire','LEI'),(252,3,1,'Lincolnshire','LIN'),(253,3,1,'London','LON'),(254,3,1,'Manchester','MAN'),(255,3,1,'Merionethshire','MER'),(256,3,1,'Merseyside','MSY'),(257,3,1,'Middlesex','MDX'),(258,3,1,'Midlands','MID'),(259,3,1,'Midlothian','MLT'),(260,3,1,'Monmouthshire','MON'),(261,3,1,'Montgomeryshire','MGY'),(262,3,1,'Moray','MOR'),(263,3,1,'Nairnshire','NAI'),(264,3,1,'Norfolk','NOR'),(265,3,1,'Northamptonshire','NMP'),(266,3,1,'Northumberland','NUM'),(267,3,1,'Nottinghamshire','NOT'),(268,3,1,'Orkney','ORK'),(269,3,1,'Oxfordshire','OXF'),(270,3,1,'Peebleshire','PEE'),(271,3,1,'Pembrokeshire','PEM'),(272,3,1,'Perthshire','PER'),(273,3,1,'Radnorshire','RAD'),(274,3,1,'Renfrewshire','REN'),(275,3,1,'Ross & Cromarty','ROS'),(276,3,1,'Roxburghshire','ROX'),(277,3,1,'Rutland','RUT'),(278,3,1,'Selkirkshire','SEL'),(279,3,1,'Shetland','SHE'),(280,3,1,'Shropshire','SHR'),(281,3,1,'Somerset','SOM'),(282,3,1,'Staffordshire','STA'),(283,3,1,'Stirlingshire','STI'),(284,3,1,'Suffolk','SUF'),(285,3,1,'Surrey','SUR'),(286,3,1,'Sussex','SUS'),(287,3,1,'Sutherland','SUT'),(288,3,1,'Tyne & Wear','TYN'),(289,3,1,'Warwickshire','WAR'),(290,3,1,'West Lothian','WLO'),(291,3,1,'Westmorland','WES'),(292,3,1,'Wigtownshire','WIG'),(293,3,1,'Wiltshire','WIL'),(294,3,1,'Worcestershire','WOR'),(295,3,1,'Yorkshire','YOR'),(296,184,1,'Alba','AB'),(297,184,1,'Arad','AR'),(298,184,1,'Arges','AG'),(299,184,1,'Bacău','BC'),(300,184,1,'Bihor','BH'),(301,184,1,'Bistrita - Nasaud Bistrita','BN'),(302,184,1,'Botosani','BT'),(303,184,1,'Brasov','BV'),(304,184,1,'Braila','BR'),(305,184,1,'Bucuresti','B'),(306,184,1,'Buzau','BZ'),(307,184,1,'Caras - Severin','CS'),(308,184,1,'Calarasi','CL'),(309,184,1,'Cluj','CJ'),(310,184,1,'Constanta','CT'),(311,184,1,'Covasna Sfantu Gheorghe','CV'),(312,184,1,'Dambovita','DB'),(313,184,1,'Dolj','DJ'),(314,184,1,'Galati','GL'),(315,184,1,'Giurgiu','GR'),(316,184,1,'Gorj','GJ'),(317,184,1,'Harghita','HR'),(318,184,1,'Hunedoara','HD'),(319,184,1,'Ialomita','IL'),(320,184,1,'Iasi','IS'),(321,184,1,'Ilfov','IF'),(322,184,1,'Maramures','MM'),(323,184,1,'Mehedinti','MH'),(324,184,1,'Mures','MS'),(325,184,1,'Neamt','NT'),(326,184,1,'Olt','OT'),(327,184,1,'Prahova Ploiesti','PH'),(328,184,1,'Satu Mare','SM'),(329,184,1,'Salaj','SJ'),(330,184,1,'Sibiu','SB'),(331,184,1,'Suceava','SV'),(332,184,1,'Teleorman','TR'),(333,184,1,'Timis','TM'),(334,184,1,'Tulcea','TL'),(335,184,1,'Vaslui','VS'),(336,184,1,'Valcea','VL'),(337,184,1,'Vrancea','VN'),(338,103,1,'Budapest','BUD'),(339,103,1,'Baranya','BAR'),(340,103,1,'Bács-Kiskun','BKM'),(341,103,1,'Békés','BEK'),(342,103,1,'Borsod-Abaúj-Zemplén','BAZ'),(343,103,1,'Csongrád','CSO'),(344,103,1,'Fejér','FEJ'),(345,103,1,'Győr-Moson-Sopron','GMS'),(346,103,1,'Hajdú-Bihar','HBM'),(347,103,1,'Heves','HEV'),(348,103,1,'Jász-Nagykun-Szolnok','JNS'),(349,103,1,'Komárom-Esztergom','KEM'),(350,103,1,'Nógrád','NOG'),(351,103,1,'Pest','PES'),(352,103,1,'Somogy','SOM'),(353,103,1,'Szabolcs-Szatmár-Bereg','SSB'),(354,103,1,'Tolna','TOL'),(355,103,1,'Vas','VAS'),(356,103,1,'Veszprém','VES'),(357,103,1,'Zala','ZAL'),(358,105,1,'Andhra Pradesh','AP'),(359,105,1,'Arunachal Pradesh','AR'),(360,105,1,'Assam','AS'),(361,105,1,'Bihar','BR'),(362,105,1,'Chhattisgarh','CT'),(363,105,1,'Goa','GA'),(364,105,1,'Gujarat','GJ'),(365,105,1,'Haryana','HR'),(366,105,1,'Himachal Pradesh','HP'),(367,105,1,'Jammu and Kashmir','JK'),(368,105,1,'Jharkhand','JH'),(369,105,1,'Karnataka','KA'),(370,105,1,'Kerala','KL'),(371,105,1,'Madhya Pradesh','MP'),(372,105,1,'Maharashtra','MH'),(373,105,1,'Manipur','MN'),(374,105,1,'Meghalaya','ML'),(375,105,1,'Mizoram','MZ'),(376,105,1,'Nagaland','NL'),(377,105,1,'Odisha','OR'),(378,105,1,'Punjab','PB'),(379,105,1,'Rajasthan','RJ'),(380,105,1,'Sikkim','SK'),(381,105,1,'Tamil Nadu','TN'),(382,105,1,'Telangana','TG'),(383,105,1,'Tripura','TR'),(384,105,1,'Uttarakhand','UT'),(385,105,1,'Uttar Pradesh','UP'),(386,105,1,'West Bengal','WB'),(387,105,1,'Andaman and Nicobar Islands','AN'),(388,105,1,'Chandigarh','CH'),(389,105,1,'Dadra and Nagar Haveli','DN'),(390,105,1,'Daman and Diu','DD'),(391,105,1,'Delhi','DL'),(392,105,1,'Lakshadweep','LD'),(393,105,1,'Puducherry','PY'),(394,78,1,'Auvergne-Rhône-Alpes','ARA'),(395,78,1,'Bourgogne-Franche-Comté','BFC'),(396,78,1,'Bretagne','BZH'),(397,78,1,'Centre–Val-de-Loire','CVL'),(398,78,1,'Corse','COR'),(399,78,1,'Guadeloupe','GP'),(400,78,1,'Guyane','GF'),(401,78,1,'Grand-Est','GE'),(402,78,1,'Hauts-de-France','HF'),(403,78,1,'Île-de-France','IDF'),(404,78,1,'Martinique','MQ'),(405,78,1,'Mayotte','YT'),(406,78,1,'Normandie','NOR'),(407,78,1,'Pays-de-la-Loire','PL'),(408,78,1,'Nouvelle-Aquitaine','NA'),(409,78,1,'Occitanie','OCC'),(410,78,1,'Provence-Alpes-Côte-d\'Azur','PACA'),(411,78,1,'Réunion','RE'),(412,161,1,'Northland','NTL'),(413,161,1,'Auckland','AUK'),(414,161,1,'Waikato','WKO'),(415,161,1,'Bay of Plenty','BOP'),(416,161,1,'Gisborne','GIS'),(417,161,1,'Hawke\'s Bay','HKB'),(418,161,1,'Taranaki','TKI'),(419,161,1,'Manawatu-Wanganui','MWT'),(420,161,1,'Wellington','WGN'),(421,161,1,'Tasman','TAS'),(422,161,1,'Nelson','NSN'),(423,161,1,'Marlborough','MBH'),(424,161,1,'West Coast','WTC'),(425,161,1,'Canterbury','CAN'),(426,161,1,'Otago Otago','OTA'),(427,161,1,'Southland','STL'),(428,210,1,'A Coruña (gl) [La Coruña]','ES-C'),(429,210,1,'Araba (eu)','ES-VI'),(430,210,1,'Albacete','ES-AB'),(431,210,1,'Alacant (ca)','ES-A'),(432,210,1,'Almería','ES-AL'),(433,210,1,'Asturias','ES-O'),(434,210,1,'Ávila','ES-AV'),(435,210,1,'Badajoz','ES-BA'),(436,210,1,'Balears (ca) [Baleares]','ES-PM'),(437,210,1,'Barcelona [Barcelona]','ES-B'),(438,210,1,'Burgos','ES-BU'),(439,210,1,'Cáceres','ES-CC'),(440,210,1,'Cádiz','ES-CA'),(441,210,1,'Cantabria','ES-S'),(442,210,1,'Castelló (ca)','ES-CS'),(443,210,1,'Ciudad Real','ES-CR'),(444,210,1,'Córdoba','ES-CO'),(445,210,1,'Cuenca','ES-CU'),(446,210,1,'Girona (ca) [Gerona]','ES-GI'),(447,210,1,'Granada','ES-GR'),(448,210,1,'Guadalajara','ES-GU'),(449,210,1,'Gipuzkoa (eu)','ES-SS'),(450,210,1,'Huelva','ES-H'),(451,210,1,'Huesca','ES-HU'),(452,210,1,'Jaén','ES-J'),(453,210,1,'La Rioja','ES-LO'),(454,210,1,'Las Palmas','ES-GC'),(455,210,1,'León','ES-LE'),(456,210,1,'Lleida (ca) [Lérida]','ES-L'),(457,210,1,'Lugo (gl) [Lugo]','ES-LU'),(458,210,1,'Madrid','ES-M'),(459,210,1,'Málaga','ES-MA'),(460,210,1,'Murcia','ES-MU'),(461,210,1,'Nafarroa (eu)','ES-NA'),(462,210,1,'Ourense (gl) [Orense]','ES-OR'),(463,210,1,'Palencia','ES-P'),(464,210,1,'Pontevedra (gl) [Pontevedra]','ES-PO'),(465,210,1,'Salamanca','ES-SA'),(466,210,1,'Santa Cruz de Tenerife','ES-TF'),(467,210,1,'Segovia','ES-SG'),(468,210,1,'Sevilla','ES-SE'),(469,210,1,'Soria','ES-SO'),(470,210,1,'Tarragona (ca) [Tarragona]','ES-T'),(471,210,1,'Teruel','ES-TE'),(472,210,1,'Toledo','ES-TO'),(473,210,1,'València (ca)','ES-V'),(474,210,1,'Valladolid','ES-VA'),(475,210,1,'Bizkaia (eu)','ES-BI'),(476,210,1,'Zamora','ES-ZA'),(477,210,1,'Zaragoza','ES-Z'),(478,146,1,'Aguascalientes','MX-AGU'),(479,146,1,'Baja California','MX-BCN'),(480,146,1,'Baja California Sur','MX-BCS'),(481,146,1,'Campeche','MX-CAM'),(482,146,1,'Chiapas','MX-CHP'),(483,146,1,'Chihuahua','MX-CHH'),(484,146,1,'Coahuila','MX-COA'),(485,146,1,'Colima','MX-COL'),(486,146,1,'Ciudad de México','MX-CMX​'),(487,146,1,'Durango','MX-DUR'),(488,146,1,'Guanajuato','MX-GUA'),(489,146,1,'Guerrero','MX-GRO'),(490,146,1,'Hidalgo','MX-HID'),(491,146,1,'Jalisco','MX-JAL'),(492,146,1,'Estado de México','MX-MEX'),(493,146,1,'Michoacán','MX-MIC'),(494,146,1,'Morelos','MX-MOR'),(495,146,1,'Nayarit','MX-NAY'),(496,146,1,'Nuevo León','MX-NLE'),(497,146,1,'Oaxaca','MX-OAX'),(498,146,1,'Puebla','MX-PUE'),(499,146,1,'Querétaro','MX-QUE'),(500,146,1,'Quintana Roo','MX-ROO'),(501,146,1,'San Luis Potosí','MX-SLP'),(502,146,1,'Sinaloa','MX-SIN'),(503,146,1,'Sonora','MX-SON'),(504,146,1,'Tabasco','MX-TAB'),(505,146,1,'Tamaulipas','MX-TAM'),(506,146,1,'Tlaxcala','MX-TLA'),(507,146,1,'Veracruz','MX-VER'),(508,146,1,'Yucatán','MX-YUC'),(509,146,1,'Zacatecas','MX-ZAC'),(510,15,1,'Buenos Aires','BA'),(511,15,1,'Catamarca','CA'),(512,15,1,'Chaco','CH'),(513,15,1,'Chubut','CT'),(514,15,1,'Córdoba','CB'),(515,15,1,'Corrientes','CR'),(516,15,1,'Entre Ríos','ER'),(517,15,1,'Formosa','FO'),(518,15,1,'Jujuy','JY'),(519,15,1,'La Pampa','LP'),(520,15,1,'La Rioja','LR'),(521,15,1,'Mendoza','MZ'),(522,15,1,'Misiones','MI'),(523,15,1,'Neuquén','NQ'),(524,15,1,'Río Negro','RN'),(525,15,1,'Salta','SA'),(526,15,1,'San Juan','SJ'),(527,15,1,'San Luis','SL'),(528,15,1,'Santa Cruz','SC'),(529,15,1,'Santa Fe','SF'),(530,15,1,'Santiago del Estero','SE'),(531,15,1,'Tierra del Fuego','TF'),(532,15,1,'Tucumán','TU'),(533,112,1,'Agrigento','AG'),(534,112,1,'Alessandria','AL'),(535,112,1,'Ancona','AN'),(536,112,1,'Aosta','AO'),(537,112,1,'Arezzo','AR'),(538,112,1,'Ascoli Piceno','AP'),(539,112,1,'Asti','AT'),(540,112,1,'Avellino','AV'),(541,112,1,'Bari','BA'),(542,112,1,'Belluno','BL'),(543,112,1,'Benevento','BN'),(544,112,1,'Bergamo','BG'),(545,112,1,'Biella','BI'),(546,112,1,'Bologna','BO'),(547,112,1,'Bolzano','BZ'),(548,112,1,'Brescia','BS'),(549,112,1,'Brindisi','BR'),(550,112,1,'Cagliari','CA'),(551,112,1,'Caltanissetta','CL'),(552,112,1,'Campobasso','CB'),(553,112,1,'Caserta','CE'),(554,112,1,'Catania','CT'),(555,112,1,'Catanzaro','CZ'),(556,112,1,'Chieti','CH'),(557,112,1,'Como','CO'),(558,112,1,'Cosenza','CS'),(559,112,1,'Cremona','CR'),(560,112,1,'Crotone','KR'),(561,112,1,'Cuneo','CN'),(562,112,1,'Enna','EN'),(563,112,1,'Ferrara','FE'),(564,112,1,'Firenze','FI'),(565,112,1,'Foggia','FG'),(566,112,1,'Forli\'-Cesena','FO'),(567,112,1,'Frosinone','FR'),(568,112,1,'Genova','GE'),(569,112,1,'Gorizia','GO'),(570,112,1,'Grosseto','GR'),(571,112,1,'Imperia','IM'),(572,112,1,'Isernia','IS'),(573,112,1,'La Spezia','SP'),(574,112,1,'L\'Aquila','AQ'),(575,112,1,'Latina','LT'),(576,112,1,'Lecce','LE'),(577,112,1,'Lecco','LC'),(578,112,1,'Livorno','LI'),(579,112,1,'Lodi','LO'),(580,112,1,'Lucca','LU'),(581,112,1,'Macerata','MC'),(582,112,1,'Mantova','MN'),(583,112,1,'Massa-Carrara','MS'),(584,112,1,'Matera','MT'),(585,112,1,'Messina','ME'),(586,112,1,'Milano','MI'),(587,112,1,'Modena','MO'),(588,112,1,'Napoli','NA'),(589,112,1,'Novara','NO'),(590,112,1,'Nuoro','NU'),(591,112,1,'Oristano','OR'),(592,112,1,'Padova','PD'),(593,112,1,'Palermo','PA'),(594,112,1,'Parma','PR'),(595,112,1,'Pavia','PV'),(596,112,1,'Perugia','PG'),(597,112,1,'Pesaro e Urbino','PS'),(598,112,1,'Pescara','PE'),(599,112,1,'Piacenza','PC'),(600,112,1,'Pisa','PI'),(601,112,1,'Pistoia','PT'),(602,112,1,'Pordenone','PN'),(603,112,1,'Potenza','PZ'),(604,112,1,'Prato','PO'),(605,112,1,'Ragusa','RG'),(606,112,1,'Ravenna','RA'),(607,112,1,'Reggio di Calabria','RC'),(608,112,1,'Reggio nell\'Emilia','RE'),(609,112,1,'Rieti','RI'),(610,112,1,'Rimini','RN'),(611,112,1,'Roma','RM'),(612,112,1,'Rovigo','RO'),(613,112,1,'Salerno','SA'),(614,112,1,'Sassari','SS'),(615,112,1,'Savona','SV'),(616,112,1,'Siena','SI'),(617,112,1,'Siracusa','SR'),(618,112,1,'Sondrio','SO'),(619,112,1,'Taranto','TA'),(620,112,1,'Teramo','TE'),(621,112,1,'Terni','TR'),(622,112,1,'Torino','TO'),(623,112,1,'Trapani','TP'),(624,112,1,'Trento','TN'),(625,112,1,'Treviso','TV'),(626,112,1,'Trieste','TS'),(627,112,1,'Udine','UD'),(628,112,1,'Varese','VA'),(629,112,1,'Venezia','VE'),(630,112,1,'Verbano-Cusio-Ossola','VB'),(631,112,1,'Vercelli','VC'),(632,112,1,'Verona','VR'),(633,112,1,'Vibo Valentia','VV'),(634,112,1,'Vicenza','VI'),(635,112,1,'Viterbo','VT'); +/*!40000 ALTER TABLE `rainlab_location_states` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_notify_notification_rules` +-- + +DROP TABLE IF EXISTS `rainlab_notify_notification_rules`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_notify_notification_rules` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `class_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `config_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `condition_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `is_enabled` tinyint(1) NOT NULL DEFAULT '0', + `is_custom` tinyint(1) NOT NULL DEFAULT '1', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `rainlab_notify_notification_rules_code_index` (`code`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_notify_notification_rules` +-- + +LOCK TABLES `rainlab_notify_notification_rules` WRITE; +/*!40000 ALTER TABLE `rainlab_notify_notification_rules` DISABLE KEYS */; +INSERT INTO `rainlab_notify_notification_rules` VALUES (1,'Send welcome email to user','welcome_email','RainLab\\User\\NotifyRules\\UserRegisteredEvent',NULL,NULL,NULL,1,0,'2023-07-31 15:20:28','2023-07-31 15:20:28'); +/*!40000 ALTER TABLE `rainlab_notify_notification_rules` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_notify_notifications` +-- + +DROP TABLE IF EXISTS `rainlab_notify_notifications`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_notify_notifications` ( + `id` char(36) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `event_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `notifiable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `notifiable_id` bigint unsigned NOT NULL, + `icon` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `body` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `read_at` timestamp NULL DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `rainlab_notify_notifications_notifiable_type_notifiable_id_index` (`notifiable_type`,`notifiable_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_notify_notifications` +-- + +LOCK TABLES `rainlab_notify_notifications` WRITE; +/*!40000 ALTER TABLE `rainlab_notify_notifications` DISABLE KEYS */; +/*!40000 ALTER TABLE `rainlab_notify_notifications` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_notify_rule_actions` +-- + +DROP TABLE IF EXISTS `rainlab_notify_rule_actions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_notify_rule_actions` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `class_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `config_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `rule_host_id` int unsigned DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `rainlab_notify_rule_actions_rule_host_id_index` (`rule_host_id`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_notify_rule_actions` +-- + +LOCK TABLES `rainlab_notify_rule_actions` WRITE; +/*!40000 ALTER TABLE `rainlab_notify_rule_actions` DISABLE KEYS */; +INSERT INTO `rainlab_notify_rule_actions` VALUES (1,'RainLab\\Notify\\NotifyRules\\SendMailTemplateAction','{\"mail_template\":\"rainlab.user::welcome\",\"send_to_mode\":\"user\"}',1,'2023-07-31 15:20:28','2023-07-31 15:20:28'); +/*!40000 ALTER TABLE `rainlab_notify_rule_actions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_notify_rule_conditions` +-- + +DROP TABLE IF EXISTS `rainlab_notify_rule_conditions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_notify_rule_conditions` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `class_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `config_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `condition_control_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `rule_host_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `rule_host_id` int unsigned DEFAULT NULL, + `rule_parent_id` int unsigned DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `host_rule_id_type` (`rule_host_id`,`rule_host_type`), + KEY `rainlab_notify_rule_conditions_rule_host_id_index` (`rule_host_id`), + KEY `rainlab_notify_rule_conditions_rule_parent_id_index` (`rule_parent_id`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_notify_rule_conditions` +-- + +LOCK TABLES `rainlab_notify_rule_conditions` WRITE; +/*!40000 ALTER TABLE `rainlab_notify_rule_conditions` DISABLE KEYS */; +INSERT INTO `rainlab_notify_rule_conditions` VALUES (1,'RainLab\\Notify\\Classes\\CompoundCondition','{\"condition_type\":0,\"condition\":\"true\"}',NULL,'any',NULL,NULL,'2023-07-31 15:20:40','2023-07-31 15:20:40'),(2,'RainLab\\Notify\\Classes\\CompoundCondition','{\"condition_type\":0,\"condition\":\"true\"}',NULL,'any',NULL,NULL,'2023-07-31 15:21:32','2023-07-31 15:21:32'); +/*!40000 ALTER TABLE `rainlab_notify_rule_conditions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_translate_attributes` +-- + +DROP TABLE IF EXISTS `rainlab_translate_attributes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_translate_attributes` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `model_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `model_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `attribute_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`id`), + KEY `rainlab_translate_attributes_locale_index` (`locale`), + KEY `rainlab_translate_attributes_model_id_index` (`model_id`), + KEY `rainlab_translate_attributes_model_type_index` (`model_type`) +) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_translate_attributes` +-- + +LOCK TABLES `rainlab_translate_attributes` WRITE; +/*!40000 ALTER TABLE `rainlab_translate_attributes` DISABLE KEYS */; +INSERT INTO `rainlab_translate_attributes` VALUES (7,'tm','7','TPS\\Birzha\\Models\\Product','{\"name\":\"Test tm 22344\",\"slug\":\"test-tm-22344\"}'),(8,'ru','7','TPS\\Birzha\\Models\\Product','{\"name\":\"test ru 22344\",\"slug\":\"test-ru-22344\"}'),(13,'tm','10','TPS\\Birzha\\Models\\Product','{\"name\":\"Test tm 22344q\",\"description\":\"test description pizdes towar\",\"slug\":\"test-tm-22344q\"}'),(14,'ru','10','TPS\\Birzha\\Models\\Product','{\"name\":\"test ru 22344q\",\"description\":\"ru test description pizdes towar\",\"slug\":\"test-ru-22344q\"}'),(15,'tm','11','TPS\\Birzha\\Models\\Product','{\"name\":\"Test tm 22344q\",\"description\":\"test description pizdes towar\",\"slug\":\"test-tm-22344q\"}'),(16,'ru','11','TPS\\Birzha\\Models\\Product','{\"name\":\"test ru 22344q\",\"description\":\"ru test description pizdes towar\",\"slug\":\"test-ru-22344q\"}'),(17,'tm','12','TPS\\Birzha\\Models\\Product','{\"name\":\"asdasd\",\"description\":\"asdasd\",\"slug\":\"asdasd\"}'),(18,'ru','12','TPS\\Birzha\\Models\\Product','{\"name\":\"adsas\",\"description\":\"asdasd\",\"slug\":\"adsas\"}'),(19,'tm','13','TPS\\Birzha\\Models\\Product','{\"name\":\"asdasd\",\"description\":\"asdasd\",\"slug\":\"asdasd\"}'),(20,'ru','13','TPS\\Birzha\\Models\\Product','{\"name\":\"adsas\",\"description\":\"asdasd\",\"slug\":\"adsas\"}'),(21,'tm','14','TPS\\Birzha\\Models\\Product','{\"name\":\"asdasd\",\"description\":\"asdasd\",\"slug\":\"asdasd\"}'),(22,'ru','14','TPS\\Birzha\\Models\\Product','{\"name\":\"adsas\",\"description\":\"asdasd\",\"slug\":\"adsas\"}'),(23,'tm','15','TPS\\Birzha\\Models\\Product','{\"name\":\"asdasd\",\"description\":\"sadasd\",\"slug\":\"asdasd\"}'),(24,'ru','15','TPS\\Birzha\\Models\\Product','{\"name\":\"asdasd\",\"description\":\"asdasd\",\"slug\":\"asdasd\"}'),(25,'tm','16','TPS\\Birzha\\Models\\Product','{\"name\":\"asdasd\",\"description\":\"sadasd\",\"slug\":\"asdasd\"}'),(26,'ru','16','TPS\\Birzha\\Models\\Product','{\"name\":\"asdasd\",\"description\":\"asdasd\",\"slug\":\"asdasd\"}'),(27,'tm','17','TPS\\Birzha\\Models\\Product','{\"name\":\"tm test\",\"description\":\"tm desc\",\"slug\":\"tm-test\"}'),(28,'ru','17','TPS\\Birzha\\Models\\Product','{\"name\":\"ru test\",\"description\":\"ru desc\",\"slug\":\"ru-test\"}'),(29,'ru','1','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(30,'ru','18','TPS\\Birzha\\Models\\Product','{\"name\":\"Test ru\",\"description\":\"description of product ru\",\"slug\":\"test-ru\"}'),(31,'ru','19','TPS\\Birzha\\Models\\Product','{\"name\":\"Test ru\",\"description\":\"description of product ru\",\"slug\":\"test-ru\"}'),(32,'ru','20','TPS\\Birzha\\Models\\Product','{\"name\":\"Test ru\",\"description\":\"description of product ru\",\"slug\":\"test-ru\"}'),(33,'ru','21','TPS\\Birzha\\Models\\Product','{\"name\":\"Test ru file\",\"description\":\"description of product ru\",\"slug\":\"test-ru-file\"}'),(34,'ru','22','TPS\\Birzha\\Models\\Product','{\"name\":\"Test ru file\",\"description\":\"description of product ru\",\"slug\":\"test-ru-file\"}'),(35,'ru','4','TPS\\Birzha\\Models\\Category','{\"name\":\"\",\"slug\":\"\"}'),(36,'ru','23','TPS\\Birzha\\Models\\Product','{\"name\":\"asdasd\",\"description\":\"asdasd\",\"slug\":\"asdasd\"}'),(37,'ru','24','TPS\\Birzha\\Models\\Product','{\"name\":\"asdasd\",\"description\":\"ASDASD\",\"slug\":\"asdasd\"}'),(38,'ru','25','TPS\\Birzha\\Models\\Product','{\"name\":\"ru gipd\",\"description\":\"ru desc\",\"slug\":\"ru-gipd\"}'),(39,'ru','2','TPS\\Birzha\\Models\\Notification','{\"subject\":\"\",\"text\":\"\"}'),(40,'ru','1','TPS\\Birzha\\Models\\Notification','{\"subject\":\"\",\"text\":\"\"}'),(41,'ru','26','TPS\\Birzha\\Models\\Product','{\"name\":\"shekilli gips\",\"description\":\"djdjdj\",\"slug\":\"shekilli-gips\"}'),(42,'ru','27','TPS\\Birzha\\Models\\Product','{\"name\":\"test ruu\",\"description\":\"desc ru\",\"slug\":\"test-ruu\"}'),(43,'ru','28','TPS\\Birzha\\Models\\Product','{\"name\":\"qazwsx ru\",\"description\":\"kgxkgxmgxkg\",\"slug\":\"qazwsx-ru\"}'),(44,'ru','29','TPS\\Birzha\\Models\\Product','{\"name\":\"tetet\",\"description\":\"1dasd\",\"slug\":\"tetet\"}'),(45,'ru','30','TPS\\Birzha\\Models\\Product','{\"name\":\"Stol stul\",\"description\":\"skidka ba aljaga\",\"slug\":\"stol-stul\"}'),(46,'ru','31','TPS\\Birzha\\Models\\Product','{\"name\":\"fghhh\",\"description\":\"fchbj\",\"slug\":\"fghhh\"}'),(47,'ru','4','TPS\\Birzha\\Models\\City','{\"name\":\"\"}'),(48,'ru','3','TPS\\Birzha\\Models\\Category','{\"name\":\"\",\"slug\":\"\"}'),(49,'ru','32','TPS\\Birzha\\Models\\Product','{\"name\":\"hrjfnr\",\"description\":\"xhbxhc\",\"slug\":\"hrjfnr\"}'); +/*!40000 ALTER TABLE `rainlab_translate_attributes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_translate_indexes` +-- + +DROP TABLE IF EXISTS `rainlab_translate_indexes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_translate_indexes` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `model_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `model_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `item` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `value` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`id`), + KEY `rainlab_translate_indexes_locale_index` (`locale`), + KEY `rainlab_translate_indexes_model_id_index` (`model_id`), + KEY `rainlab_translate_indexes_model_type_index` (`model_type`), + KEY `rainlab_translate_indexes_item_index` (`item`) +) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_translate_indexes` +-- + +LOCK TABLES `rainlab_translate_indexes` WRITE; +/*!40000 ALTER TABLE `rainlab_translate_indexes` DISABLE KEYS */; +INSERT INTO `rainlab_translate_indexes` VALUES (13,'tm','7','TPS\\Birzha\\Models\\Product','name','Test tm 22344'),(14,'tm','7','TPS\\Birzha\\Models\\Product','slug','test-tm-22344'),(15,'ru','7','TPS\\Birzha\\Models\\Product','name','test ru 22344'),(16,'ru','7','TPS\\Birzha\\Models\\Product','slug','test-ru-22344'),(25,'tm','10','TPS\\Birzha\\Models\\Product','name','Test tm 22344q'),(26,'tm','10','TPS\\Birzha\\Models\\Product','slug','test-tm-22344q'),(27,'ru','10','TPS\\Birzha\\Models\\Product','name','test ru 22344q'),(28,'ru','10','TPS\\Birzha\\Models\\Product','slug','test-ru-22344q'),(29,'tm','11','TPS\\Birzha\\Models\\Product','name','Test tm 22344q'),(30,'tm','11','TPS\\Birzha\\Models\\Product','slug','test-tm-22344q'),(31,'ru','11','TPS\\Birzha\\Models\\Product','name','test ru 22344q'),(32,'ru','11','TPS\\Birzha\\Models\\Product','slug','test-ru-22344q'),(33,'tm','12','TPS\\Birzha\\Models\\Product','name','asdasd'),(34,'tm','12','TPS\\Birzha\\Models\\Product','slug','asdasd'),(35,'ru','12','TPS\\Birzha\\Models\\Product','name','adsas'),(36,'ru','12','TPS\\Birzha\\Models\\Product','slug','adsas'),(37,'tm','13','TPS\\Birzha\\Models\\Product','name','asdasd'),(38,'tm','13','TPS\\Birzha\\Models\\Product','slug','asdasd'),(39,'ru','13','TPS\\Birzha\\Models\\Product','name','adsas'),(40,'ru','13','TPS\\Birzha\\Models\\Product','slug','adsas'),(41,'tm','14','TPS\\Birzha\\Models\\Product','name','asdasd'),(42,'tm','14','TPS\\Birzha\\Models\\Product','slug','asdasd'),(43,'ru','14','TPS\\Birzha\\Models\\Product','name','adsas'),(44,'ru','14','TPS\\Birzha\\Models\\Product','slug','adsas'),(45,'tm','15','TPS\\Birzha\\Models\\Product','name','asdasd'),(46,'tm','15','TPS\\Birzha\\Models\\Product','slug','asdasd'),(47,'ru','15','TPS\\Birzha\\Models\\Product','name','asdasd'),(48,'ru','15','TPS\\Birzha\\Models\\Product','slug','asdasd'),(49,'tm','16','TPS\\Birzha\\Models\\Product','name','asdasd'),(50,'tm','16','TPS\\Birzha\\Models\\Product','slug','asdasd'),(51,'ru','16','TPS\\Birzha\\Models\\Product','name','asdasd'),(52,'ru','16','TPS\\Birzha\\Models\\Product','slug','asdasd'),(53,'tm','17','TPS\\Birzha\\Models\\Product','name','tm test'),(54,'tm','17','TPS\\Birzha\\Models\\Product','slug','tm-test'),(55,'ru','17','TPS\\Birzha\\Models\\Product','name','ru test'),(56,'ru','17','TPS\\Birzha\\Models\\Product','slug','ru-test'),(57,'ru','18','TPS\\Birzha\\Models\\Product','name','Test ru'),(58,'ru','18','TPS\\Birzha\\Models\\Product','slug','test-ru'),(59,'ru','19','TPS\\Birzha\\Models\\Product','name','Test ru'),(60,'ru','19','TPS\\Birzha\\Models\\Product','slug','test-ru'),(61,'ru','20','TPS\\Birzha\\Models\\Product','name','Test ru'),(62,'ru','20','TPS\\Birzha\\Models\\Product','slug','test-ru'),(63,'ru','21','TPS\\Birzha\\Models\\Product','name','Test ru file'),(64,'ru','21','TPS\\Birzha\\Models\\Product','slug','test-ru-file'),(65,'ru','22','TPS\\Birzha\\Models\\Product','name','Test ru file'),(66,'ru','22','TPS\\Birzha\\Models\\Product','slug','test-ru-file'),(67,'ru','23','TPS\\Birzha\\Models\\Product','name','asdasd'),(68,'ru','23','TPS\\Birzha\\Models\\Product','slug','asdasd'),(69,'ru','24','TPS\\Birzha\\Models\\Product','name','asdasd'),(70,'ru','24','TPS\\Birzha\\Models\\Product','slug','asdasd'),(71,'ru','25','TPS\\Birzha\\Models\\Product','name','ru gipd'),(72,'ru','25','TPS\\Birzha\\Models\\Product','slug','ru-gipd'),(73,'ru','26','TPS\\Birzha\\Models\\Product','name','shekilli gips'),(74,'ru','26','TPS\\Birzha\\Models\\Product','slug','shekilli-gips'),(75,'ru','27','TPS\\Birzha\\Models\\Product','name','test ruu'),(76,'ru','27','TPS\\Birzha\\Models\\Product','slug','test-ruu'),(77,'ru','28','TPS\\Birzha\\Models\\Product','name','qazwsx ru'),(78,'ru','28','TPS\\Birzha\\Models\\Product','slug','qazwsx-ru'),(79,'ru','29','TPS\\Birzha\\Models\\Product','name','tetet'),(80,'ru','29','TPS\\Birzha\\Models\\Product','slug','tetet'),(81,'ru','30','TPS\\Birzha\\Models\\Product','name','Stol stul'),(82,'ru','30','TPS\\Birzha\\Models\\Product','slug','stol-stul'),(83,'ru','31','TPS\\Birzha\\Models\\Product','name','fghhh'),(84,'ru','31','TPS\\Birzha\\Models\\Product','slug','fghhh'),(85,'ru','32','TPS\\Birzha\\Models\\Product','name','hrjfnr'),(86,'ru','32','TPS\\Birzha\\Models\\Product','slug','hrjfnr'); +/*!40000 ALTER TABLE `rainlab_translate_indexes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_translate_locales` +-- + +DROP TABLE IF EXISTS `rainlab_translate_locales`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_translate_locales` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `is_default` tinyint(1) NOT NULL DEFAULT '0', + `is_enabled` tinyint(1) NOT NULL DEFAULT '0', + `sort_order` int NOT NULL DEFAULT '0', + PRIMARY KEY (`id`), + KEY `rainlab_translate_locales_code_index` (`code`), + KEY `rainlab_translate_locales_name_index` (`name`) +) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_translate_locales` +-- + +LOCK TABLES `rainlab_translate_locales` WRITE; +/*!40000 ALTER TABLE `rainlab_translate_locales` DISABLE KEYS */; +INSERT INTO `rainlab_translate_locales` VALUES (1,'ru','Russian',0,1,1),(2,'tm','Turkmen',1,1,2); +/*!40000 ALTER TABLE `rainlab_translate_locales` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_translate_messages` +-- + +DROP TABLE IF EXISTS `rainlab_translate_messages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_translate_messages` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `message_data` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `found` tinyint(1) NOT NULL DEFAULT '1', + PRIMARY KEY (`id`), + KEY `rainlab_translate_messages_code_index` (`code`) +) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_translate_messages` +-- + +LOCK TABLES `rainlab_translate_messages` WRITE; +/*!40000 ALTER TABLE `rainlab_translate_messages` DISABLE KEYS */; +INSERT INTO `rainlab_translate_messages` VALUES (1,'site.main.page','{\"x\":\"site.main_page\"}',1); +/*!40000 ALTER TABLE `rainlab_translate_messages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rainlab_user_mail_blockers` +-- + +DROP TABLE IF EXISTS `rainlab_user_mail_blockers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rainlab_user_mail_blockers` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `template` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `user_id` int unsigned DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `rainlab_user_mail_blockers_email_index` (`email`), + KEY `rainlab_user_mail_blockers_template_index` (`template`), + KEY `rainlab_user_mail_blockers_user_id_index` (`user_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rainlab_user_mail_blockers` +-- + +LOCK TABLES `rainlab_user_mail_blockers` WRITE; +/*!40000 ALTER TABLE `rainlab_user_mail_blockers` DISABLE KEYS */; +/*!40000 ALTER TABLE `rainlab_user_mail_blockers` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sessions` +-- + +DROP TABLE IF EXISTS `sessions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sessions` ( + `id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `payload` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `last_activity` int DEFAULT NULL, + `user_id` int unsigned DEFAULT NULL, + `ip_address` varchar(45) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `user_agent` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + UNIQUE KEY `sessions_id_unique` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sessions` +-- + +LOCK TABLES `sessions` WRITE; +/*!40000 ALTER TABLE `sessions` DISABLE KEYS */; +/*!40000 ALTER TABLE `sessions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `system_event_logs` +-- + +DROP TABLE IF EXISTS `system_event_logs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `system_event_logs` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `level` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `details` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `system_event_logs_level_index` (`level`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `system_event_logs` +-- + +LOCK TABLES `system_event_logs` WRITE; +/*!40000 ALTER TABLE `system_event_logs` DISABLE KEYS */; +/*!40000 ALTER TABLE `system_event_logs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `system_files` +-- + +DROP TABLE IF EXISTS `system_files`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `system_files` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `disk_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `file_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `file_size` int NOT NULL, + `content_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `field` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `attachment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `attachment_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `is_public` tinyint(1) NOT NULL DEFAULT '1', + `sort_order` int DEFAULT NULL, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `system_files_field_index` (`field`), + KEY `system_files_attachment_id_index` (`attachment_id`), + KEY `system_files_attachment_type_index` (`attachment_type`) +) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `system_files` +-- + +LOCK TABLES `system_files` WRITE; +/*!40000 ALTER TABLE `system_files` DISABLE KEYS */; +INSERT INTO `system_files` VALUES (4,'64c2bbab6177b185915532.png','1_online.png',103303,'image/png',NULL,NULL,'images','2','TPS\\Birzha\\Models\\Product',1,4,'2023-07-27 13:47:07','2023-07-27 13:47:14'),(5,'64c2bbab884ea081503824.png','4-biznes_zal.png',124269,'image/png',NULL,NULL,'images','2','TPS\\Birzha\\Models\\Product',1,5,'2023-07-27 13:47:07','2023-07-27 13:47:14'),(6,'64c2c3760e6b3553710434.png','about_1.png',138879,'image/png',NULL,NULL,'images','3','TPS\\Birzha\\Models\\Product',1,6,'2023-07-27 14:20:22','2023-07-27 14:20:28'),(7,'64c2c37637c91043506628.png','about_2.png',98027,'image/png',NULL,NULL,'images','3','TPS\\Birzha\\Models\\Product',1,7,'2023-07-27 14:20:22','2023-07-27 14:20:28'),(8,'64c509c2c7003811342480.jpg','1 (4).jpg',214461,'image/jpeg',NULL,NULL,'images','5','TPS\\Birzha\\Models\\Product',1,8,'2023-07-29 07:44:50','2023-07-29 07:44:50'),(9,'64c509c2ca5b8033595853.png','1_online.png',103303,'image/png',NULL,NULL,'images','5','TPS\\Birzha\\Models\\Product',1,9,'2023-07-29 07:44:50','2023-07-29 07:44:50'),(10,'64c527c286994651329548.png','2_raspisania.png',88991,'image/png',NULL,NULL,'images','6','TPS\\Birzha\\Models\\Product',1,10,'2023-07-29 09:52:50','2023-07-29 09:52:50'),(11,'64c527f1a83de325627048.png','2_raspisania.png',88991,'image/png',NULL,NULL,'images','7','TPS\\Birzha\\Models\\Product',1,11,'2023-07-29 09:53:37','2023-07-29 09:53:37'),(12,'64c52b02b7be3080849576.png','2_raspisania.png',88991,'image/png',NULL,NULL,'images','8','TPS\\Birzha\\Models\\Product',1,12,'2023-07-29 10:06:42','2023-07-29 10:06:42'),(13,'64c52b02ba297326811838.png','3_norm.png',103486,'image/png',NULL,NULL,'images','8','TPS\\Birzha\\Models\\Product',1,13,'2023-07-29 10:06:42','2023-07-29 10:06:42'),(14,'64c52b2857b60436724586.png','2_raspisania.png',88991,'image/png',NULL,NULL,'images','9','TPS\\Birzha\\Models\\Product',1,14,'2023-07-29 10:07:20','2023-07-29 10:07:20'),(15,'64c52b285a128258888954.png','3_norm.png',103486,'image/png',NULL,NULL,'images','9','TPS\\Birzha\\Models\\Product',1,15,'2023-07-29 10:07:20','2023-07-29 10:07:20'),(16,'64c52b3cc5be9214770549.png','2_raspisania.png',88991,'image/png',NULL,NULL,'images','10','TPS\\Birzha\\Models\\Product',1,16,'2023-07-29 10:07:40','2023-07-29 10:07:40'),(17,'64c52b3cc7f51288164447.png','3_norm.png',103486,'image/png',NULL,NULL,'images','10','TPS\\Birzha\\Models\\Product',1,17,'2023-07-29 10:07:40','2023-07-29 10:07:40'),(18,'64c52d1c1a3c3953533088.png','2_raspisania.png',88991,'image/png',NULL,NULL,'images','11','TPS\\Birzha\\Models\\Product',1,18,'2023-07-29 10:15:40','2023-07-29 10:15:40'),(19,'64c52d1c1cd8b834456395.png','3_norm.png',103486,'image/png',NULL,NULL,'images','11','TPS\\Birzha\\Models\\Product',1,19,'2023-07-29 10:15:40','2023-07-29 10:15:40'),(20,'64c542f5010a3338399741.png','scaled_23.png',135766,'image/png',NULL,NULL,'images','12','TPS\\Birzha\\Models\\Product',1,20,'2023-07-29 11:48:53','2023-07-29 11:48:53'),(21,'64c542f5055b1790308450.jpg','scaled_715896_Mix illustration07-01.jpg',56180,'image/jpeg',NULL,NULL,'images','12','TPS\\Birzha\\Models\\Product',1,21,'2023-07-29 11:48:53','2023-07-29 11:48:53'),(22,'64c5435475419148021681.png','scaled_23.png',135766,'image/png',NULL,NULL,'images','13','TPS\\Birzha\\Models\\Product',1,22,'2023-07-29 11:50:28','2023-07-29 11:50:28'),(23,'64c54354781f4364653546.jpg','scaled_715896_Mix illustration07-01.jpg',56180,'image/jpeg',NULL,NULL,'images','13','TPS\\Birzha\\Models\\Product',1,23,'2023-07-29 11:50:28','2023-07-29 11:50:28'),(24,'64c543606c48f924801956.png','scaled_23.png',135766,'image/png',NULL,NULL,'images','14','TPS\\Birzha\\Models\\Product',1,24,'2023-07-29 11:50:40','2023-07-29 11:50:40'),(25,'64c543606efad003936599.jpg','scaled_715896_Mix illustration07-01.jpg',56180,'image/jpeg',NULL,NULL,'images','14','TPS\\Birzha\\Models\\Product',1,25,'2023-07-29 11:50:40','2023-07-29 11:50:40'),(26,'64c5440ed9d01685684512.png','scaled_23.png',135766,'image/png',NULL,NULL,'images','15','TPS\\Birzha\\Models\\Product',1,26,'2023-07-29 11:53:34','2023-07-29 11:53:34'),(27,'64c5440edc2da064143199.jpg','scaled_715896_Mix illustration07-01.jpg',56180,'image/jpeg',NULL,NULL,'images','15','TPS\\Birzha\\Models\\Product',1,27,'2023-07-29 11:53:34','2023-07-29 11:53:34'),(28,'64c544b2f363b603829515.png','scaled_23.png',135766,'image/png',NULL,NULL,'images','16','TPS\\Birzha\\Models\\Product',1,28,'2023-07-29 11:56:18','2023-07-29 11:56:18'),(29,'64c544b3017bc876282110.jpg','scaled_715896_Mix illustration07-01.jpg',56180,'image/jpeg',NULL,NULL,'images','16','TPS\\Birzha\\Models\\Product',1,29,'2023-07-29 11:56:19','2023-07-29 11:56:19'),(30,'64c54e42d6bf7241956514.png','scaled_23.png',135766,'image/png',NULL,NULL,'images','17','TPS\\Birzha\\Models\\Product',1,30,'2023-07-29 12:37:06','2023-07-29 12:37:06'),(31,'64c54e42da292222000310.jpg','scaled_715896_Mix illustration07-01.jpg',56180,'image/jpeg',NULL,NULL,'images','17','TPS\\Birzha\\Models\\Product',1,31,'2023-07-29 12:37:06','2023-07-29 12:37:06'),(32,'64c6a47548858290869302.jpg','tomatoes (1).jpg',4685522,'image/jpeg',NULL,NULL,'images','1','TPS\\Birzha\\Models\\Product',1,32,'2023-07-30 12:57:09','2023-07-30 12:57:14'),(33,'64c6a4765353b606778886.jpg','tomatoes1.jpg',4291809,'image/jpeg',NULL,NULL,'images','1','TPS\\Birzha\\Models\\Product',1,33,'2023-07-30 12:57:10','2023-07-30 12:57:14'),(34,'64c6b89db4967691557856.png','font_rend (2).png',94025,'image/png',NULL,NULL,'images','19','TPS\\Birzha\\Models\\Product',1,34,'2023-07-30 14:23:09','2023-07-30 14:23:09'),(35,'64c6b89db72c2972524281.png','font_rend (1).png',102798,'image/png',NULL,NULL,'images','19','TPS\\Birzha\\Models\\Product',1,35,'2023-07-30 14:23:09','2023-07-30 14:23:09'),(36,'64c6b93f4ddf0878019911.jpg','cfadea116821833.606ad9524b1d3.jpg',17980,'image/jpeg',NULL,NULL,'images','20','TPS\\Birzha\\Models\\Product',1,36,'2023-07-30 14:25:51','2023-07-30 14:25:51'),(37,'64c6bbce9de1e062856446.jpg','cfadea116821833.606ad9524b1d3.jpg',17980,'image/jpeg',NULL,NULL,'images','21','TPS\\Birzha\\Models\\Product',1,37,'2023-07-30 14:36:46','2023-07-30 14:36:46'),(38,'64c6bc736fb9f861629366.docx','api.docx',12579,'application/vnd.openxmlformats-officedocument.wordprocessingml.document',NULL,NULL,'files','22','TPS\\Birzha\\Models\\Product',1,38,'2023-07-30 14:39:31','2023-07-30 14:39:31'),(39,'64c6bc7373d4b896671242.jpg','cfadea116821833.606ad9524b1d3.jpg',17980,'image/jpeg',NULL,NULL,'images','22','TPS\\Birzha\\Models\\Product',1,39,'2023-07-30 14:39:31','2023-07-30 14:39:31'),(40,'64c74aca5cae1364489649.pdf','Baýmuhammet Garryýew Magtymguly. 1959.pdf',1041547,'application/pdf',NULL,NULL,'files','23','TPS\\Birzha\\Models\\Product',1,40,'2023-07-31 00:46:50','2023-07-31 00:46:50'),(41,'64c74aca5f10d486958351.png','23.png',119430,'image/png',NULL,NULL,'files','23','TPS\\Birzha\\Models\\Product',1,41,'2023-07-31 00:46:50','2023-07-31 00:46:50'),(42,'64c74aca618f2304141959.png','scaled_23.png',135766,'image/png',NULL,NULL,'images','23','TPS\\Birzha\\Models\\Product',1,42,'2023-07-31 00:46:50','2023-07-31 00:46:50'),(43,'64c74aca63666352362970.jpg','scaled_715896_Mix illustration07-01.jpg',56180,'image/jpeg',NULL,NULL,'images','23','TPS\\Birzha\\Models\\Product',1,43,'2023-07-31 00:46:50','2023-07-31 00:46:50'),(44,'64c74b3ecd42b461217190.pdf','Baýmuhammet Garryýew Magtymguly. 1959.pdf',1041547,'application/pdf',NULL,NULL,'files','24','TPS\\Birzha\\Models\\Product',1,44,'2023-07-31 00:48:46','2023-07-31 00:48:46'),(45,'64c74b3ed1d4f811168944.png','23.png',119430,'image/png',NULL,NULL,'files','24','TPS\\Birzha\\Models\\Product',1,45,'2023-07-31 00:48:46','2023-07-31 00:48:46'),(46,'64c74b3ed52e2608963097.png','scaled_23.png',135766,'image/png',NULL,NULL,'images','24','TPS\\Birzha\\Models\\Product',1,46,'2023-07-31 00:48:46','2023-07-31 00:48:46'),(47,'64c74b3ed6bac361952653.jpg','scaled_715896_Mix illustration07-01.jpg',56180,'image/jpeg',NULL,NULL,'images','24','TPS\\Birzha\\Models\\Product',1,47,'2023-07-31 00:48:46','2023-07-31 00:48:46'),(48,'64c90644ef9ae012232855.png','scaled_1bb5e199ab2a696e912707458e560693.png',13704,'image/jpeg',NULL,NULL,'images','25','TPS\\Birzha\\Models\\Product',1,48,'2023-08-01 08:19:00','2023-08-01 08:19:00'),(49,'64cc92aea79e0910588916.png','scaled_18755e7f8dd1defc68dd884da4eb0660.png',31851,'image/jpeg',NULL,NULL,'images','26','TPS\\Birzha\\Models\\Product',1,49,'2023-08-04 00:54:54','2023-08-04 00:54:54'),(50,'64d64eba4b35e226384726.png','scaled_Screenshot_1691766433.png',80132,'image/png',NULL,NULL,'images','27','TPS\\Birzha\\Models\\Product',1,50,'2023-08-11 10:07:38','2023-08-11 10:07:38'),(51,'64d675a3b1c19771308665.png','scaled_cc9640273a9d51f8205acb974a5fbad5.png',46000,'image/jpeg',NULL,NULL,'images','28','TPS\\Birzha\\Models\\Product',1,51,'2023-08-11 12:53:39','2023-08-11 12:53:39'),(52,'64d677c7e8324928201587.png','scaled_Screenshot_1691766433.png',80132,'image/png',NULL,NULL,'images','29','TPS\\Birzha\\Models\\Product',1,52,'2023-08-11 13:02:47','2023-08-11 13:02:47'),(53,'64d67ad1599cf415257480.mp4','1456b93d58fc3e68a16bbe25ab1d7dfa.mp4',1107407,'video/mp4',NULL,NULL,'files','30','TPS\\Birzha\\Models\\Product',1,53,'2023-08-11 13:15:45','2023-08-11 13:15:45'),(54,'64d67ad15da2c912717422.png','scaled_edd360ff6b40116fadaa0e08d669f0b0.png',24676,'image/jpeg',NULL,NULL,'images','30','TPS\\Birzha\\Models\\Product',1,54,'2023-08-11 13:15:45','2023-08-11 13:15:45'),(55,'64dba7ca98010602399769.png','scaled_cc9640273a9d51f8205acb974a5fbad5.png',46000,'image/jpeg',NULL,NULL,'images','31','TPS\\Birzha\\Models\\Product',1,55,'2023-08-15 11:28:58','2023-08-15 11:28:58'),(56,'64e24025efc69779323100.jpg','scaled_1000010347.jpg',43665,'image/jpeg',NULL,NULL,'images','32','TPS\\Birzha\\Models\\Product',1,56,'2023-08-20 11:32:37','2023-08-20 11:32:37'); +/*!40000 ALTER TABLE `system_files` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `system_mail_layouts` +-- + +DROP TABLE IF EXISTS `system_mail_layouts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `system_mail_layouts` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content_html` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `content_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `content_css` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `is_locked` tinyint(1) NOT NULL DEFAULT '0', + `options` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `system_mail_layouts` +-- + +LOCK TABLES `system_mail_layouts` WRITE; +/*!40000 ALTER TABLE `system_mail_layouts` DISABLE KEYS */; +/*!40000 ALTER TABLE `system_mail_layouts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `system_mail_partials` +-- + +DROP TABLE IF EXISTS `system_mail_partials`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `system_mail_partials` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `content_html` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `content_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `is_custom` tinyint(1) NOT NULL DEFAULT '0', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `system_mail_partials` +-- + +LOCK TABLES `system_mail_partials` WRITE; +/*!40000 ALTER TABLE `system_mail_partials` DISABLE KEYS */; +/*!40000 ALTER TABLE `system_mail_partials` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `system_mail_templates` +-- + +DROP TABLE IF EXISTS `system_mail_templates`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `system_mail_templates` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `subject` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `content_html` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `content_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `layout_id` int DEFAULT NULL, + `is_custom` tinyint(1) NOT NULL DEFAULT '0', + `created_at` timestamp NULL DEFAULT NULL, + `updated_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `system_mail_templates_layout_id_index` (`layout_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `system_mail_templates` +-- + +LOCK TABLES `system_mail_templates` WRITE; +/*!40000 ALTER TABLE `system_mail_templates` DISABLE KEYS */; +/*!40000 ALTER TABLE `system_mail_templates` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `system_parameters` +-- + +DROP TABLE IF EXISTS `system_parameters`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `system_parameters` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `namespace` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `group` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `item` varchar(150) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + PRIMARY KEY (`id`), + KEY `item_index` (`namespace`,`group`,`item`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `system_parameters` +-- + +LOCK TABLES `system_parameters` WRITE; +/*!40000 ALTER TABLE `system_parameters` DISABLE KEYS */; +INSERT INTO `system_parameters` VALUES (1,'system','update','count','8'),(2,'cms','theme','active','\"gulushyk2\"'),(3,'system','update','retry','1692808412'); +/*!40000 ALTER TABLE `system_parameters` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `system_plugin_history` +-- + +DROP TABLE IF EXISTS `system_plugin_history`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `system_plugin_history` ( + `id` int unsigned NOT NULL AUTO_INCREMENT, + `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `version` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, + `detail` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, + `created_at` timestamp NULL DEFAULT NULL, + PRIMARY KEY (`id`), + KEY `system_plugin_history_code_index` (`code`), + KEY `system_plugin_history_type_index` (`type`) +) ENGINE=InnoDB AUTO_INCREMENT=1332 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `system_plugin_history` +-- + +LOCK TABLES `system_plugin_history` WRITE; +/*!40000 ALTER TABLE `system_plugin_history` DISABLE KEYS */; +INSERT INTO `system_plugin_history` VALUES (1,'Indikator.DevTools','comment','1.0.0','First version of Developer Tools.','2023-06-09 13:21:42'),(2,'Indikator.DevTools','comment','1.1.0','Edit plugins with the code editor.','2023-06-09 13:21:42'),(3,'Indikator.DevTools','comment','1.1.1','Translate some English texts.','2023-06-09 13:21:42'),(4,'Indikator.DevTools','comment','1.1.2','Fixed the Create file issue.','2023-06-09 13:21:42'),(5,'Indikator.DevTools','comment','1.1.3','Added new icon for main navigation.','2023-06-09 13:21:42'),(6,'Indikator.DevTools','comment','1.1.4','Show the PHP\'s configuration.','2023-06-09 13:21:42'),(7,'Indikator.DevTools','comment','1.1.5','Minor code improvements and bugfix.','2023-06-09 13:21:42'),(8,'Indikator.DevTools','comment','1.1.6','The top menu icon shows again.','2023-06-09 13:21:42'),(9,'Indikator.DevTools','comment','1.1.7','Fixed the Create folder issue.','2023-06-09 13:21:42'),(10,'Indikator.DevTools','comment','1.1.8','!!! Updated for October 420+.','2023-06-09 13:21:42'),(11,'Indikator.DevTools','comment','1.1.9','Updated the main navigation icon.','2023-06-09 13:21:42'),(12,'Indikator.DevTools','comment','1.1.9','Added last modified date.','2023-06-09 13:21:42'),(13,'Indikator.DevTools','comment','1.2.0','The syntax highlighting works again!','2023-06-09 13:21:42'),(14,'Indikator.DevTools','comment','1.2.1','Help links open in a new window.','2023-06-09 13:21:42'),(15,'Indikator.DevTools','comment','1.2.2','Fixed the dependency bug in asset list.','2023-06-09 13:21:42'),(16,'Indikator.DevTools','comment','1.2.3','The file delete operation works again.','2023-06-09 13:21:42'),(17,'JanVince.SmallContactForm','script','1.0.0','scf_tables.php','2023-06-09 13:21:42'),(18,'JanVince.SmallContactForm','comment','1.0.0','First version of Small Contact Form plugin','2023-06-09 13:21:42'),(19,'JanVince.SmallContactForm','comment','1.0.1','Fix form hiding after successful send','2023-06-09 13:21:42'),(20,'JanVince.SmallContactForm','comment','1.0.1','Fix in README.md','2023-06-09 13:21:42'),(21,'JanVince.SmallContactForm','comment','1.0.2','Fix some typos and add LICENCE file (thanks Szabó Gergő)','2023-06-09 13:21:42'),(22,'JanVince.SmallContactForm','comment','1.1.0','Added function to delete records in Messages list','2023-06-09 13:21:42'),(23,'JanVince.SmallContactForm','comment','1.1.0','Added permission to delete records','2023-06-09 13:21:42'),(24,'JanVince.SmallContactForm','comment','1.2.0','Added dashboard report widgets (Stats and New messages)','2023-06-09 13:21:42'),(25,'JanVince.SmallContactForm','comment','1.2.1','Mail templates now render values with {{ values|raw }}','2023-06-09 13:21:42'),(26,'JanVince.SmallContactForm','comment','1.2.2','Mail templates convert new lines to
with {{ values|raw|nl2br }}','2023-06-09 13:21:42'),(27,'JanVince.SmallContactForm','comment','1.2.3','Fields mapping moved to separate tab *Columns mapping*','2023-06-09 13:21:42'),(28,'JanVince.SmallContactForm','comment','1.2.4','Updated README.md with assets usage example','2023-06-09 13:21:42'),(29,'JanVince.SmallContactForm','script','1.2.5','scf_tables_02.php','2023-06-09 13:21:42'),(30,'JanVince.SmallContactForm','comment','1.2.5','Added IP protection function (limit too many submits from one IP address)','2023-06-09 13:21:42'),(31,'JanVince.SmallContactForm','comment','1.2.5','And Messages list column to show senders IP address (invisible by default)','2023-06-09 13:21:42'),(32,'JanVince.SmallContactForm','comment','1.2.6','Fixed IP protection error message','2023-06-09 13:21:42'),(33,'JanVince.SmallContactForm','comment','1.2.7','Changed remote_ip column type to string','2023-06-09 13:21:42'),(34,'JanVince.SmallContactForm','comment','1.2.8','Added option to use placeholders instead of labels','2023-06-09 13:21:42'),(35,'JanVince.SmallContactForm','comment','1.3.0','Added translation support for Rainlab Translate plugin','2023-06-09 13:21:42'),(36,'JanVince.SmallContactForm','comment','1.3.0','Fixed some typos','2023-06-09 13:21:42'),(37,'JanVince.SmallContactForm','comment','1.3.1','Added default value for getTranslated() method','2023-06-09 13:21:42'),(38,'JanVince.SmallContactForm','comment','1.3.2','Added custom send button wrapper class','2023-06-09 13:21:42'),(39,'JanVince.SmallContactForm','comment','1.4.0','Added redirect option after successful submit (internal and external URL)','2023-06-09 13:21:42'),(40,'JanVince.SmallContactForm','comment','1.4.1','Minor UI fix (thanks Szabó Gergő)','2023-06-09 13:21:42'),(41,'JanVince.SmallContactForm','comment','1.4.2','Added support for default translated mail templates (Czech and English for now)','2023-06-09 13:21:42'),(42,'JanVince.SmallContactForm','comment','1.4.3','Fixed translation of mail templates description in Settings > Mail templates','2023-06-09 13:21:42'),(43,'JanVince.SmallContactForm','comment','1.4.4','Fixed array of enabledLocales','2023-06-09 13:21:42'),(44,'JanVince.SmallContactForm','comment','1.4.5','Fixed email template check','2023-06-09 13:21:42'),(45,'JanVince.SmallContactForm','comment','1.4.5','Added default EN locale to enabled locales array','2023-06-09 13:21:42'),(46,'JanVince.SmallContactForm','comment','1.4.6','Removed field type restriction for Fields mapping','2023-06-09 13:21:42'),(47,'JanVince.SmallContactForm','comment','1.4.7','Removed hardcoded date format for created_at column in messages list, updated README and added hungarian language (thanks Szabó Gergő for all this)','2023-06-09 13:21:42'),(48,'JanVince.SmallContactForm','comment','1.4.8','Changes to allow multiple use of contact form (form and message blocks has now unique IDs)','2023-06-09 13:21:42'),(49,'JanVince.SmallContactForm','comment','1.4.8','Added checkbox field type','2023-06-09 13:21:42'),(50,'JanVince.SmallContactForm','comment','1.4.8','Scoreboard last message time format (thanks Szabó Gergő)','2023-06-09 13:21:42'),(51,'JanVince.SmallContactForm','comment','1.4.9','Added scoreboard button to quickly open form settings','2023-06-09 13:21:42'),(52,'JanVince.SmallContactForm','comment','1.4.10','Fixed typo in lang filename','2023-06-09 13:21:42'),(53,'JanVince.SmallContactForm','comment','1.4.11','Added \"fieldsDetails\" array to all email templates to have access to field labels, types and more','2023-06-09 13:21:42'),(54,'JanVince.SmallContactForm','comment','1.4.11','Updated default autoreply mail templates to include fieldsDetail array','2023-06-09 13:21:42'),(55,'JanVince.SmallContactForm','comment','1.4.11','Added function to detect non-defined fields in sent data','2023-06-09 13:21:42'),(56,'JanVince.SmallContactForm','comment','1.4.11','Updated README.md file','2023-06-09 13:21:42'),(57,'JanVince.SmallContactForm','comment','1.5.0','Added some component hacking options (override autoreply and notification emails and template, disable fields)','2023-06-09 13:21:42'),(58,'JanVince.SmallContactForm','comment','1.5.0','Fixed some typos','2023-06-09 13:21:42'),(59,'JanVince.SmallContactForm','comment','1.5.0','Updated README.md file','2023-06-09 13:21:42'),(60,'JanVince.SmallContactForm','comment','1.5.1','Fixed flash message visibility when where are some errors','2023-06-09 13:21:42'),(61,'JanVince.SmallContactForm','comment','1.5.2','Fixed flash error for IP protection visibility','2023-06-09 13:21:42'),(62,'JanVince.SmallContactForm','comment','1.5.3','Added option for notification emails to have FROM address set from contact form email field','2023-06-09 13:21:42'),(63,'JanVince.SmallContactForm','comment','1.5.4','Added option to mark selected messages as read','2023-06-09 13:21:42'),(64,'JanVince.SmallContactForm','comment','1.5.5','Changed JSON type for repeater DB column','2023-06-09 13:21:42'),(65,'JanVince.SmallContactForm','comment','1.5.6','Removed value attribute in textarea field','2023-06-09 13:21:42'),(66,'JanVince.SmallContactForm','comment','1.5.7','Added component alias to id attributes for multi-form usage','2023-06-09 13:21:42'),(67,'JanVince.SmallContactForm','comment','1.5.8','Fixed typo in lang files','2023-06-09 13:21:42'),(68,'JanVince.SmallContactForm','comment','1.5.9','Added direct link to messages list from dashboard widget','2023-06-09 13:21:42'),(69,'JanVince.SmallContactForm','comment','1.6.0','Added Google reCAPTCHA validation','2023-06-09 13:21:42'),(70,'JanVince.SmallContactForm','comment','1.6.1','Changed All messages large indicator to New messages in scoreboard','2023-06-09 13:21:42'),(71,'JanVince.SmallContactForm','comment','1.6.2','Removed reCAPTCHA hard coded locale string (thx kuzyk). Added settings option to allow locale detection.','2023-06-09 13:21:42'),(72,'JanVince.SmallContactForm','comment','1.7.0','Added option to specify