IP : 3.147.64.185Hostname : host45.registrar-servers.comKernel : Linux host45.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64Disable Function : None :) OS : Linux
PATH:
/
home/
../
var/
softaculous/
projeqtor/
../
jqplot/
../
phpbb/
../
webcollab/
../
bagisto/
bagisto.sql/
/
-- MySQL dump 10.13 Distrib 5.7.44, for Linux (x86_64) -- -- Host: localhost Database: bagisto222comp -- ------------------------------------------------------ -- Server version 5.7.44
/*!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 */; /*!40101 SET NAMES utf8 */; /*!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 */;
LOCK TABLES `refunds` WRITE; /*!40000 ALTER TABLE `refunds` DISABLE KEYS */; /*!40000 ALTER TABLE `refunds` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `roles` --
DROP TABLE IF EXISTS `roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `roles` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `permission_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `permissions` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `roles` --
LOCK TABLES `roles` WRITE; /*!40000 ALTER TABLE `roles` DISABLE KEYS */; INSERT INTO `roles` VALUES (1,'Administrator','This role users will have all the access','all',NULL,NULL,NULL); /*!40000 ALTER TABLE `roles` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `search_synonyms` --
DROP TABLE IF EXISTS `search_synonyms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `search_synonyms` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `terms` text COLLATE utf8mb4_unicode_ci NOT 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 ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `search_synonyms` --
LOCK TABLES `search_synonyms` WRITE; /*!40000 ALTER TABLE `search_synonyms` DISABLE KEYS */; /*!40000 ALTER TABLE `search_synonyms` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `search_terms` --
DROP TABLE IF EXISTS `search_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `search_terms` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `term` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `results` int(11) NOT NULL DEFAULT '0', `uses` int(11) NOT NULL DEFAULT '0', `redirect_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `display_in_suggested_terms` tinyint(1) NOT NULL DEFAULT '0', `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `channel_id` int(10) unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `search_terms_channel_id_foreign` (`channel_id`), CONSTRAINT `search_terms_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `search_terms` --
LOCK TABLES `search_terms` WRITE; /*!40000 ALTER TABLE `search_terms` DISABLE KEYS */; /*!40000 ALTER TABLE `search_terms` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `shipment_items` --
LOCK TABLES `visits` WRITE; /*!40000 ALTER TABLE `visits` DISABLE KEYS */; /*!40000 ALTER TABLE `visits` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `wishlist` --
DROP TABLE IF EXISTS `wishlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wishlist` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `channel_id` int(10) unsigned NOT NULL, `product_id` int(10) unsigned NOT NULL, `customer_id` int(10) unsigned NOT NULL, `item_options` json DEFAULT NULL, `moved_to_cart` date DEFAULT NULL, `shared` tinyint(1) DEFAULT NULL, `time_of_moving` date DEFAULT NULL, `additional` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `wishlist_channel_id_foreign` (`channel_id`), KEY `wishlist_product_id_foreign` (`product_id`), KEY `wishlist_customer_id_foreign` (`customer_id`), CONSTRAINT `wishlist_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, CONSTRAINT `wishlist_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE, CONSTRAINT `wishlist_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `wishlist` --
LOCK TABLES `wishlist` WRITE; /*!40000 ALTER TABLE `wishlist` DISABLE KEYS */; /*!40000 ALTER TABLE `wishlist` ENABLE KEYS */; UNLOCK TABLES;
-- -- Table structure for table `wishlist_items` --
DROP TABLE IF EXISTS `wishlist_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wishlist_items` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `channel_id` int(10) unsigned NOT NULL, `product_id` int(10) unsigned NOT NULL, `customer_id` int(10) unsigned NOT NULL, `additional` json DEFAULT NULL, `moved_to_cart` date DEFAULT NULL, `shared` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `wishlist_items_channel_id_foreign` (`channel_id`), KEY `wishlist_items_product_id_foreign` (`product_id`), KEY `wishlist_items_customer_id_foreign` (`customer_id`), CONSTRAINT `wishlist_items_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, CONSTRAINT `wishlist_items_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE, CONSTRAINT `wishlist_items_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; /*!40101 SET character_set_client = @saved_cs_client */;
-- -- Dumping data for table `wishlist_items` --
LOCK TABLES `wishlist_items` WRITE; /*!40000 ALTER TABLE `wishlist_items` DISABLE KEYS */; /*!40000 ALTER TABLE `wishlist_items` ENABLE KEYS */; UNLOCK TABLES;
-- -- Dumping routines for database 'bagisto222comp' -- /*!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 */;