gurl_o/gurlushyk28.sql

2044 lines
2.2 MiB
MySQL
Raw Normal View History

2023-07-27 20:21:32 +00:00
-- 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=6 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-23 01:27:57','2023-07-23 01:27:57'),(4,1,'45.137.66.62','2023-07-23 04:39:23','2023-07-23 04:39:23'),(5,1,'45.137.66.62','2023-07-24 11:03:55','2023-07-24 11:03:55');
/*!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=4 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);
/*!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=2 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$uDaF7JG/8JDjMiXz38YOP.drMHZAdcIKr9KXSYmoJ3y2jQJeOA4gq',NULL,'',1,2,NULL,'2023-07-24 11:03:55','2022-06-24 07:15:58','2023-07-24 11:03:55',NULL,1);
/*!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=7 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 */;
/*!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!*','<p>This is your first ever <strong>blog post</strong>! It might be a good idea to update this post with some more relevant content.</p>\n<p>You can edit this content by selecting <strong>Blog</strong> from the administration back-end menu.</p>\n<p><em>Enjoy the good times!</em></p>','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','
/*!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',
/*!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 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 */;
/*!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 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 */;
/*!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 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 */;
/*!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=9 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 (1,'en','2','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(2,'ru','2','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(3,'en','1','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(4,'ru','1','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(5,'en','3','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(6,'ru','3','TPS\\Birzha\\Models\\Product','{\"name\":\"\",\"slug\":\"\",\"description\":\"\"}'),(7,'en','2','TPS\\Birzha\\Models\\Category','{\"name\":\"\",\"slug\":\"\"}'),(8,'ru','2','TPS\\Birzha\\Models\\Category','{\"name\":\"\",\"slug\":\"\"}');
/*!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 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 */;
/*!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=4 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,'en','English',0,1,1),(2,'tm','Turkmen',1,1,2),(3,'ru','Russian',0,1,3);
/*!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 AUTO_INCREMENT=1414 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 */;
INSERT INTO `system_event_logs` VALUES (1,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:21:51','2023-06-09 13:21:51'),(2,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlus in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 18:22:11','2023-06-09 18:22:11'),(3,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-06-09 13:22:51','2023-06-09 13:22:51'
INSERT INTO `system_event_logs` VALUES (636,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:20:07','2023-07-22 12:20:07'),(637,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:21:07','2023-07-22 12:21:07'),(638,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-22 12:22:07','2023-07
INSERT INTO `system_event_logs` VALUES (1406,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:10:10','2023-07-23 01:10:10'),(1407,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:11:10','2023-07-23 01:11:10'),(1408,'error','Symfony\\Component\\Debug\\Exception\\FatalErrorException: Uncaught Illuminate\\Contracts\\Container\\BindingResolutionException: Target [Illuminate\\Contracts\\Auth\\Access\\Gate] is not instantiable. in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(812): Illuminate\\Container\\Container->notInstantiable(\'Illuminate\\\\Cont...\')\n#1 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php(681): Illuminate\\Container\\Container->build(\'Illuminate\\\\Cont...\')\n#2 /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Foundation/Application.php(785): Illuminate\\Container\\Container->resolve(\'Illuminate\\\\Cont...\', Array, true)\n#3 /Users/tmstore/Desktop/projects old/new fol in /Users/tmstore/Desktop/projects old/new folder/Gurlushyk/backend_repair/gurlushyk/vendor/laravel/framework/src/Illuminate/Container/Container.php:978\nStack trace:\n#0 {main}','[]','2023-07-23 01:12:10','2023
/*!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=7 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 (1,'64be774a5cb5f092489372.png','Component 3.png',1667719,'image/png',NULL,NULL,'images','1','TPS\\Birzha\\Models\\Product',1,1,'2023-07-24 08:06:18','2023-07-24 08:06:33'),(2,'64be7a296da4f399204016.png','Component 4.png',304093,'image/png',NULL,NULL,'images','2','TPS\\Birzha\\Models\\Product',1,2,'2023-07-24 08:18:33','2023-07-24 08:18:36'),(3,'64be7cbaa8058739493652.png','Component 2.png',1406299,'image/png',NULL,NULL,'images','1','TPS\\Birzha\\Models\\Product',1,3,'2023-07-24 08:29:30','2023-07-24 08:29:42'),(4,'64be7cc5168ce822933659.png','Component 4.png',304093,'image/png',NULL,NULL,'images','1','TPS\\Birzha\\Models\\Product',1,4,'2023-07-24 08:29:41','2023-07-24 08:29:42'),(5,'64be7cd04e15e857575938.png','Component 3.png',1667719,'image/png',NULL,NULL,'images','2','TPS\\Birzha\\Models\\Product',1,5,'2023-07-24 08:29:52','2023-07-24 08:29:53'),(6,'64be910ca3fcb506396978.png','Component 6.png',1549727,'image/png',NULL,NULL,'images','3','TPS\\Birzha\\Models\\Product',1,6,'2023-07-24 09:56:12','2023-07-24 09:56:14');
/*!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','10'),(2,'cms','theme','active','\"gurlushyk\"'),(3,'system','update','retry','1690258246');
/*!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=1056 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 (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 <br> 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,
/*!40000 ALTER TABLE `system_plugin_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_plugin_versions`
--
DROP TABLE IF EXISTS `system_plugin_versions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_plugin_versions` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`version` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`is_disabled` tinyint(1) NOT NULL DEFAULT '0',
`is_frozen` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `system_plugin_versions_code_index` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_plugin_versions`
--
LOCK TABLES `system_plugin_versions` WRITE;
/*!40000 ALTER TABLE `system_plugin_versions` DISABLE KEYS */;
INSERT INTO `system_plugin_versions` VALUES (2,'JanVince.SmallContactForm','1.63.3','2023-06-09 13:21:42',0,0),(3,'Martin.Forms','1.5.1','2023-06-09 13:21:43',0,0),(4,'OFFLINE.CORS','1.0.7','2023-06-09 13:21:43',0,0),(5,'OFFLINE.SiteSearch','1.5.6','2023-06-09 13:21:43',0,0),(6,'October.Drivers','1.1.3','2023-06-09 13:21:43',0,0),(7,'RainLab.Blog','1.5.1','2023-06-09 13:40:51',0,0),(8,'RainLab.Builder','1.1.0','2023-06-09 13:40:51',0,0),(9,'RainLab.Location','1.2.1','2023-06-09 13:40:53',0,0),(10,'RainLab.Notify','1.1.0','2023-06-09 13:40:54',0,0),(11,'RainLab.Pages','1.4.10','2023-06-09 13:40:54',0,0),(12,'RainLab.Translate','1.9.3','2023-06-09 13:40:55',0,0),(13,'RainLab.User','1.7.2','2023-07-24 11:03:55',0,0),(14,'RainLab.UserPlus','1.1.0','2023-06-09 13:40:56',0,0),(16,'TPS.Birzha','1.0.110','2023-07-23 12:16:58',0,0),(17,'Vdomah.JWTAuth','1.0.12','2023-06-09 15:19:36',0,0),(18,'AhmadFatoni.ApiGenerator','1.0.7','2023-06-09 15:19:36',0,0),(19,'Indikator.DevTools','1.2.3','2023-07-23 05:16:41',0,0);
/*!40000 ALTER TABLE `system_plugin_versions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_request_logs`
--
DROP TABLE IF EXISTS `system_request_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_request_logs` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`status_code` int DEFAULT NULL,
`url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`referer` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`count` int 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_request_logs`
--
LOCK TABLES `system_request_logs` WRITE;
/*!40000 ALTER TABLE `system_request_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `system_request_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_revisions`
--
DROP TABLE IF EXISTS `system_revisions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_revisions` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int unsigned DEFAULT NULL,
`field` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`cast` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`old_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`new_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`revisionable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`revisionable_id` int NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `system_revisions_revisionable_id_revisionable_type_index` (`revisionable_id`,`revisionable_type`),
KEY `system_revisions_user_id_index` (`user_id`),
KEY `system_revisions_field_index` (`field`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_revisions`
--
LOCK TABLES `system_revisions` WRITE;
/*!40000 ALTER TABLE `system_revisions` DISABLE KEYS */;
/*!40000 ALTER TABLE `system_revisions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `system_settings`
--
DROP TABLE IF EXISTS `system_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `system_settings` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`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 `system_settings_item_index` (`item`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `system_settings`
--
LOCK TABLES `system_settings` WRITE;
/*!40000 ALTER TABLE `system_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `system_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_categories`
--
DROP TABLE IF EXISTS `tps_birzha_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_categories` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`meta_desc` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`icon` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` tinyint(1) NOT NULL DEFAULT '1',
`slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`sort_order` int NOT NULL DEFAULT '0',
`is_featured` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_categories`
--
LOCK TABLES `tps_birzha_categories` WRITE;
/*!40000 ALTER TABLE `tps_birzha_categories` DISABLE KEYS */;
INSERT INTO `tps_birzha_categories` VALUES (1,NULL,'2023-07-23 12:15:21','2023-07-23 12:28:17','Eýwanlar','','/Categories/Component 4.png',1,'eywanlar',1,1),(2,NULL,'2023-07-23 12:28:59','2023-07-24 11:18:09','Agaç Önümleri','','/Categories/Component 2.png',1,'agac-onumleri',2,0),(3,NULL,'2023-07-23 12:29:40','2023-07-23 12:29:40','Gipsler','','/Categories/Component 3.png',1,'gipsler',3,1),(4,NULL,'2023-07-23 12:30:10','2023-07-23 12:30:10','3D Modeller','','/Categories/Component 5.png',1,'3d-modeller',5,1),(5,NULL,'2023-07-23 12:30:32','2023-07-23 12:30:32','Turba Önümleri','','/Categories/Component 6.png',1,'turba-onumleri',6,1);
/*!40000 ALTER TABLE `tps_birzha_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_chatrooms`
--
DROP TABLE IF EXISTS `tps_birzha_chatrooms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_chatrooms` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`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 `tps_birzha_chatrooms`
--
LOCK TABLES `tps_birzha_chatrooms` WRITE;
/*!40000 ALTER TABLE `tps_birzha_chatrooms` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_chatrooms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_chatrooms_users`
--
DROP TABLE IF EXISTS `tps_birzha_chatrooms_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_chatrooms_users` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL,
`chatroom_id` int NOT 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 `tps_birzha_chatrooms_users`
--
LOCK TABLES `tps_birzha_chatrooms_users` WRITE;
/*!40000 ALTER TABLE `tps_birzha_chatrooms_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_chatrooms_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_contactform_messages`
--
DROP TABLE IF EXISTS `tps_birzha_contactform_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_contactform_messages` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`surname` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`mobile` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_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 `tps_birzha_contactform_messages`
--
LOCK TABLES `tps_birzha_contactform_messages` WRITE;
/*!40000 ALTER TABLE `tps_birzha_contactform_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_contactform_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_countries`
--
DROP TABLE IF EXISTS `tps_birzha_countries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_countries` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT 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 `tps_birzha_countries`
--
LOCK TABLES `tps_birzha_countries` WRITE;
/*!40000 ALTER TABLE `tps_birzha_countries` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_countries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_currencies`
--
DROP TABLE IF EXISTS `tps_birzha_currencies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_currencies` (
`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 NOT 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 `tps_birzha_currencies`
--
LOCK TABLES `tps_birzha_currencies` WRITE;
/*!40000 ALTER TABLE `tps_birzha_currencies` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_currencies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_docs_one`
--
DROP TABLE IF EXISTS `tps_birzha_docs_one`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_docs_one` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`section_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`section_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`section_docs` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`lang` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT 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 `tps_birzha_docs_one`
--
LOCK TABLES `tps_birzha_docs_one` WRITE;
/*!40000 ALTER TABLE `tps_birzha_docs_one` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_docs_one` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_exchange_requests`
--
DROP TABLE IF EXISTS `tps_birzha_exchange_requests`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_exchange_requests` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`payed_for_request` decimal(10,2) NOT NULL,
`user_id` int NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`content` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`currency` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`total_price` decimal(10,2) NOT NULL,
`converted_to_tmt` decimal(10,2) NOT 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 `tps_birzha_exchange_requests`
--
LOCK TABLES `tps_birzha_exchange_requests` WRITE;
/*!40000 ALTER TABLE `tps_birzha_exchange_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_exchange_requests` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_measures`
--
DROP TABLE IF EXISTS `tps_birzha_measures`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_measures` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci 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 `tps_birzha_measures`
--
LOCK TABLES `tps_birzha_measures` WRITE;
/*!40000 ALTER TABLE `tps_birzha_measures` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_measures` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_payments`
--
DROP TABLE IF EXISTS `tps_birzha_payments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_payments` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`user_id` int NOT NULL,
`amount` decimal(10,2) NOT NULL,
`payment_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`bank_file` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`order_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`card_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci 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 `tps_birzha_payments`
--
LOCK TABLES `tps_birzha_payments` WRITE;
/*!40000 ALTER TABLE `tps_birzha_payments` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_payments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_product_categories`
--
DROP TABLE IF EXISTS `tps_birzha_product_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_product_categories` (
`product_id` int NOT NULL,
`category_id` int NOT NULL,
PRIMARY KEY (`product_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_product_categories`
--
LOCK TABLES `tps_birzha_product_categories` WRITE;
/*!40000 ALTER TABLE `tps_birzha_product_categories` DISABLE KEYS */;
INSERT INTO `tps_birzha_product_categories` VALUES (1,3),(2,1),(3,2);
/*!40000 ALTER TABLE `tps_birzha_product_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_products`
--
DROP TABLE IF EXISTS `tps_birzha_products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_products` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`status_note` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`mark` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`sort_roder` int NOT NULL DEFAULT '0',
`manufacturer` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`ends_at` datetime DEFAULT NULL,
`quantity` decimal(10,2) DEFAULT NULL,
`measure_id` int DEFAULT NULL,
`price` decimal(10,2) DEFAULT NULL,
`currency_id` int DEFAULT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`payment_term_id` int DEFAULT NULL,
`delivery_term_id` int DEFAULT NULL,
`place` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`packaging` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`vendor_id` int DEFAULT NULL,
`payment_id` int DEFAULT NULL,
`payed_fee_for_publ` decimal(10,2) DEFAULT NULL,
`market_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`country` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`number_of_views` int NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_products`
--
LOCK TABLES `tps_birzha_products` WRITE;
/*!40000 ALTER TABLE `tps_birzha_products` DISABLE KEYS */;
INSERT INTO `tps_birzha_products` VALUES (1,'2023-07-23 08:29:22','2023-07-24 08:29:42',NULL,'Test Haryt ady','approved','test-haryt-ady','','Bezeg HK',0,NULL,'2023-07-31 13:11:44',200.00,NULL,300.00,NULL,'Metri 300 manatdan gips onumlerii',NULL,NULL,'Ashgabat, 5 ayak',NULL,2,NULL,NULL,NULL,NULL,0),(2,'2023-07-24 08:28:00','2023-07-24 08:30:25',NULL,'Eywan satlyk','approved','eywan-satlyk','','Hilli HJ',0,NULL,'2023-07-24 13:28:50',200.00,NULL,300.00,NULL,'Yakary hilli eywanlar aljaklar jan etsin',NULL,NULL,'Ahal',NULL,2,NULL,NULL,NULL,NULL,0),(3,'2023-07-24 09:56:03','2023-07-24 09:56:46',NULL,'asdasd','new','asdasd','','asd',0,NULL,'2023-07-29 14:55:59',11.00,NULL,12.00,NULL,'asdasd',NULL,NULL,'asdasd',NULL,2,NULL,NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `tps_birzha_products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_slider_app`
--
DROP TABLE IF EXISTS `tps_birzha_slider_app`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_slider_app` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`img` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'slider1',
`note` text COLLATE utf8mb4_unicode_ci,
`order` int DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_slider_app`
--
LOCK TABLES `tps_birzha_slider_app` WRITE;
/*!40000 ALTER TABLE `tps_birzha_slider_app` DISABLE KEYS */;
INSERT INTO `tps_birzha_slider_app` VALUES (1,'2023-07-23 05:35:14','2023-07-24 11:14:01',NULL,'/slider1/ezgif-5-08c19593c4.jpg','slider1','',1),(2,'2023-07-23 05:35:24','2023-07-24 11:13:12',NULL,'/slider1/ezgif-5-0c28c27db8.jpg','slider2','',1),(3,'2023-07-23 05:35:32','2023-07-23 12:10:29',NULL,'/slider1/ezgif-5-3dc2309fae.jpg','slider2','',1),(4,'2023-07-23 05:35:45','2023-07-23 12:10:33',NULL,'/slider1/ezgif-5-9b4482eca4.jpg','slider2','',2),(5,'2023-07-23 05:35:57','2023-07-23 12:10:38',NULL,'/slider1/ezgif-5-d4c45d4a99.jpg','banner','',1),(6,'2023-07-23 12:06:51','2023-07-23 13:07:57',NULL,'/slider1/ezgif-5-e10220e629.jpg','slider1','',2),(7,'2023-07-24 11:14:38','2023-07-24 11:14:38',NULL,'/slider1/ezgif-5-9b4482eca4.jpg','slider1','',4);
/*!40000 ALTER TABLE `tps_birzha_slider_app` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_sliders`
--
DROP TABLE IF EXISTS `tps_birzha_sliders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_sliders` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`slide_items` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT 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 `tps_birzha_sliders`
--
LOCK TABLES `tps_birzha_sliders` WRITE;
/*!40000 ALTER TABLE `tps_birzha_sliders` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_sliders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_terms`
--
DROP TABLE IF EXISTS `tps_birzha_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_terms` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`deleted_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 `tps_birzha_terms`
--
LOCK TABLES `tps_birzha_terms` WRITE;
/*!40000 ALTER TABLE `tps_birzha_terms` DISABLE KEYS */;
/*!40000 ALTER TABLE `tps_birzha_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_transactions`
--
DROP TABLE IF EXISTS `tps_birzha_transactions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_transactions` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`amount` decimal(10,2) NOT NULL DEFAULT '0.00',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`transactable_id` int DEFAULT NULL,
`transactable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_id` int NOT NULL,
`description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`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 `tps_birzha_transactions`
--
LOCK TABLES `tps_birzha_transactions` WRITE;
/*!40000 ALTER TABLE `tps_birzha_transactions` DISABLE KEYS */;
INSERT INTO `tps_birzha_transactions` VALUES (1,0.00,'2023-07-24 09:56:46','2023-07-24 09:56:46',3,'TPS\\Birzha\\Models\\Product',2,'Lot #3 asdasd haryt ucin tutym.');
/*!40000 ALTER TABLE `tps_birzha_transactions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_user_sliders`
--
DROP TABLE IF EXISTS `tps_birzha_user_sliders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_user_sliders` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int DEFAULT NULL,
`img` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`note` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`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 `tps_birzha_user_sliders`
--
LOCK TABLES `tps_birzha_user_sliders` WRITE;
/*!40000 ALTER TABLE `tps_birzha_user_sliders` DISABLE KEYS */;
INSERT INTO `tps_birzha_user_sliders` VALUES (1,2,'/sliders/8.jpg','','2023-07-24 06:26:55','2023-07-24 06:33:41',NULL),(2,1,'/sliders/8.jpg','','2023-07-24 06:35:30','2023-07-24 06:35:30',NULL);
/*!40000 ALTER TABLE `tps_birzha_user_sliders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `tps_birzha_users_categories`
--
DROP TABLE IF EXISTS `tps_birzha_users_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `tps_birzha_users_categories` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL,
`category_id` int NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `tps_birzha_users_categories`
--
LOCK TABLES `tps_birzha_users_categories` WRITE;
/*!40000 ALTER TABLE `tps_birzha_users_categories` DISABLE KEYS */;
INSERT INTO `tps_birzha_users_categories` VALUES (1,2,1),(2,2,2),(3,2,3);
/*!40000 ALTER TABLE `tps_birzha_users_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_groups`
--
DROP TABLE IF EXISTS `user_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `user_groups` (
`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,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `user_groups_code_index` (`code`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_groups`
--
LOCK TABLES `user_groups` WRITE;
/*!40000 ALTER TABLE `user_groups` DISABLE KEYS */;
INSERT INTO `user_groups` VALUES (1,'Guest','guest','Default group for guest users.','2023-06-09 13:40:55','2023-06-09 13:40:55'),(2,'Registered','registered','Default group for registered users.','2023-06-09 13:40:56','2023-06-09 13:40:56');
/*!40000 ALTER TABLE `user_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_throttle`
--
DROP TABLE IF EXISTS `user_throttle`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `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 `user_throttle_user_id_index` (`user_id`),
KEY `user_throttle_ip_address_index` (`ip_address`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_throttle`
--
LOCK TABLES `user_throttle` WRITE;
/*!40000 ALTER TABLE `user_throttle` DISABLE KEYS */;
INSERT INTO `user_throttle` VALUES (1,2,NULL,0,NULL,0,NULL,0,NULL),(2,3,NULL,0,NULL,0,NULL,0,NULL);
/*!40000 ALTER TABLE `user_throttle` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `users` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 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',
`activated_at` timestamp NULL DEFAULT NULL,
`last_login` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`username` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`surname` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`last_seen` timestamp NULL DEFAULT NULL,
`is_guest` tinyint(1) NOT NULL DEFAULT '0',
`is_superuser` tinyint(1) NOT NULL DEFAULT '0',
`created_ip_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`last_ip_address` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`logo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`shop_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slogan` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`work_time` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`map` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_instagram` tinyint(1) NOT NULL DEFAULT '0',
`note` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`sliders` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`is_featured` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `users_email_unique` (`email`),
UNIQUE KEY `users_login_unique` (`username`),
KEY `users_activation_code_index` (`activation_code`),
KEY `users_reset_password_code_index` (`reset_password_code`),
KEY `users_login_index` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (2,'Shohrat','65809786','$2y$10$RI6bNcsc2tzw2pfcY6MB8e4gdu5639fuyUbxS8/aJ1IC/rzYiFi4K',NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-07-24 01:55:49','2023-07-24 11:17:06','65809786','',NULL,NULL,0,0,NULL,NULL,'bussiness','/accounts/Cards.jpg','Bezeg Eshikleri','Yokary hilli Harytlar','09:00 - 18:00','','',0,NULL,NULL,0),(3,'Shageldi','65123123','$2y$10$MeO6aQd/aUVxTaWvschjB.hU4oZKiogBjexxWo2tSiHwGmGCSIxW.',NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-07-24 07:33:18','2023-07-24 07:33:44','65123123','Test',NULL,NULL,0,0,NULL,NULL,'simple','/accounts/Cards2.jpg','Shageldi Harytlary','asdas asdasd','09:30 - 19:00','','',0,NULL,NULL,1);
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users_groups`
--
DROP TABLE IF EXISTS `users_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `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 `users_groups`
--
LOCK TABLES `users_groups` WRITE;
/*!40000 ALTER TABLE `users_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `users_groups` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-07-28 1:20:44