Edit file File name : justbyquicklly_1.sql Content :-- MySQL dump 10.13 Distrib 8.0.45, for Linux (x86_64) -- -- Host: localhost Database: justbyquicklly_1 -- ------------------------------------------------------ -- Server version 8.0.45 /*!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 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 */; -- -- Table structure for table `comment` -- DROP TABLE IF EXISTS `comment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `comment` ( `id` int NOT NULL AUTO_INCREMENT, `recipe_id` int NOT NULL, `parent_id` int DEFAULT NULL, `comment` varchar(200) NOT NULL, `sender` varchar(40) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `total_like` int DEFAULT '0', `rating` int DEFAULT '0', `status` int NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `comment` -- LOCK TABLES `comment` WRITE; /*!40000 ALTER TABLE `comment` DISABLE KEYS */; /*!40000 ALTER TABLE `comment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `comment_product` -- DROP TABLE IF EXISTS `comment_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `comment_product` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `parent_id` int DEFAULT NULL, `comment` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL, `img` varchar(150) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `sender` varchar(40) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `rating` int DEFAULT '0', `status` int NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `comment_product` -- LOCK TABLES `comment_product` WRITE; /*!40000 ALTER TABLE `comment_product` DISABLE KEYS */; /*!40000 ALTER TABLE `comment_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `coupon_source` -- DROP TABLE IF EXISTS `coupon_source`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `coupon_source` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `status` tinyint NOT NULL DEFAULT '0', `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `coupon_source` -- LOCK TABLES `coupon_source` WRITE; /*!40000 ALTER TABLE `coupon_source` DISABLE KEYS */; /*!40000 ALTER TABLE `coupon_source` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `event_custom_order_status` -- DROP TABLE IF EXISTS `event_custom_order_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `event_custom_order_status` ( `id` int NOT NULL AUTO_INCREMENT, `status_name` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `event_custom_order_status` -- LOCK TABLES `event_custom_order_status` WRITE; /*!40000 ALTER TABLE `event_custom_order_status` DISABLE KEYS */; /*!40000 ALTER TABLE `event_custom_order_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `go_categoryimage` -- DROP TABLE IF EXISTS `go_categoryimage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `go_categoryimage` ( `id` int NOT NULL AUTO_INCREMENT, `cat_id` int NOT NULL, `photo` varchar(255) NOT NULL, `icon` varchar(255) NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `go_categoryimage` -- LOCK TABLES `go_categoryimage` WRITE; /*!40000 ALTER TABLE `go_categoryimage` DISABLE KEYS */; /*!40000 ALTER TABLE `go_categoryimage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `go_order` -- DROP TABLE IF EXISTS `go_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `go_order` ( `uid` int NOT NULL, `storeid` varchar(10) NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `snap_track_id` varchar(20) NOT NULL, `tracking_no` varchar(100) NOT NULL, `user_id` int NOT NULL, `user_type` varchar(500) NOT NULL, `employee_id` int NOT NULL, `order_via` varchar(255) NOT NULL, `app_ver` varchar(100) DEFAULT NULL, `amount` double NOT NULL, `lowtax` double NOT NULL, `hightax` double NOT NULL, `cityofchicago_sodatax` double NOT NULL, `directtax` double NOT NULL, `tax_value` double NOT NULL, `min_order_charge` double NOT NULL, `pkgcharge` varchar(10) NOT NULL, `discount` double NOT NULL, `discount_via` varchar(255) NOT NULL, `special_discount` varchar(100) NOT NULL, `special_discount_via` varchar(100) NOT NULL, `other_discount` varchar(10) NOT NULL, `other_discount_via` varchar(250) NOT NULL, `saving` varchar(100) NOT NULL, `shipping_amount` double NOT NULL, `payment_method` varchar(255) NOT NULL, `delivery_type` varchar(100) NOT NULL, `delivery_day` varchar(100) NOT NULL, `order_type` varchar(100) NOT NULL, `expres_amt` double NOT NULL, `drivertip` varchar(10) NOT NULL, `total_amount` double NOT NULL, `coupon_code` varchar(255) NOT NULL, `ship_fname` varchar(255) NOT NULL, `ship_lname` varchar(255) NOT NULL, `ship_email` varchar(255) NOT NULL, `ship_company_name` varchar(255) NOT NULL, `ship_house_no` varchar(255) NOT NULL, `ship_street` varchar(255) NOT NULL, `ship_complex` varchar(255) NOT NULL, `ship_landmark` varchar(255) NOT NULL, `ship_pincode` varchar(255) NOT NULL, `ship_area` varchar(255) NOT NULL, `ship_state` varchar(500) NOT NULL, `ship_city_id` varchar(255) NOT NULL, `ship_mobile` varchar(255) NOT NULL, `ship_phone` varchar(255) NOT NULL, `ship_full_address` varchar(255) DEFAULT NULL, `ship_latitude` decimal(10,8) DEFAULT NULL, `ship_longitude` decimal(11,8) DEFAULT NULL, `ship_type` varchar(255) NOT NULL, `ship_timing` varchar(255) NOT NULL, `order_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `deliverby` text NOT NULL, `is_send_to_vendor` varchar(5) NOT NULL, `vendor_sync_comments` text NOT NULL, `usps_expected_delivery` varchar(100) NOT NULL, `usps_tracking_code` varchar(100) NOT NULL, `order_status` int NOT NULL, `last_status_datetime` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `payment_status` int NOT NULL, `transaction_id` varchar(50) NOT NULL, `special_msg` varchar(1000) NOT NULL, `delivery_note` varchar(10000) NOT NULL, `ip` varchar(255) NOT NULL, `status` int NOT NULL, `rating_status` enum('Pending','Rated','Skipped') NOT NULL DEFAULT 'Pending', `overall_rating` float DEFAULT NULL, `overall_review` varchar(300) DEFAULT NULL, `rating_datetime` timestamp NULL DEFAULT NULL, `sub_id` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `storeid` (`storeid`,`id`,`user_id`,`amount`,`lowtax`,`hightax`,`cityofchicago_sodatax`,`directtax`,`tax_value`,`min_order_charge`,`discount`,`saving`,`payment_method`), KEY `order_type` (`order_type`,`drivertip`,`total_amount`,`coupon_code`,`order_date`,`order_status`,`status`), KEY `ship_pincode` (`ship_pincode`,`payment_status`), KEY `id` (`id`,`tracking_no`,`user_id`,`order_via`,`discount_via`,`delivery_type`,`order_type`), KEY `coupon_code` (`coupon_code`,`ship_email`,`ship_pincode`), KEY `ship_type` (`ship_type`,`order_date`,`order_status`,`payment_status`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=220 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `go_order` -- LOCK TABLES `go_order` WRITE; /*!40000 ALTER TABLE `go_order` DISABLE KEYS */; /*!40000 ALTER TABLE `go_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `go_order_breakup` -- DROP TABLE IF EXISTS `go_order_breakup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `go_order_breakup` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` varchar(15) NOT NULL, `storeid` varchar(15) NOT NULL, `store_total` varchar(15) NOT NULL, `website_total` varchar(15) NOT NULL, `hike` varchar(10) NOT NULL, `store_tax_total` varchar(10) NOT NULL, `website_tax_total` varchar(10) NOT NULL, `price_rounding` varchar(10) NOT NULL, `tax_rounding` varchar(10) NOT NULL, `store_commision` varchar(15) NOT NULL, `total_discount` varchar(10) NOT NULL, `discount` varchar(10) NOT NULL, `user_id` varchar(10) NOT NULL, `shipping_amount` varchar(10) NOT NULL, `pkg_charge` varchar(10) NOT NULL, `tip` varchar(10) NOT NULL, `commission_value` varchar(10) NOT NULL, `minimum` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `company_amount` varchar(15) NOT NULL, `storehikerounder` varchar(10) NOT NULL, `storeamount` varchar(15) NOT NULL, `store_amt_percent` varchar(5) NOT NULL, `discount_percent` varchar(5) NOT NULL, `bt_charge` varchar(5) NOT NULL, `service_fee` varchar(15) NOT NULL, `store_discount` varchar(10) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=220 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `go_order_breakup` -- LOCK TABLES `go_order_breakup` WRITE; /*!40000 ALTER TABLE `go_order_breakup` DISABLE KEYS */; /*!40000 ALTER TABLE `go_order_breakup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `go_order_comments` -- DROP TABLE IF EXISTS `go_order_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `go_order_comments` ( `id` int NOT NULL AUTO_INCREMENT, `comments` text NOT NULL, `storeid` int NOT NULL, `order_item_id` int NOT NULL, `order_id` int NOT NULL, `order_status` int NOT NULL, `payment_status` int NOT NULL, `pay_via` varchar(255) NOT NULL, `transaction_id` varchar(255) NOT NULL, `card_number` varchar(255) NOT NULL, `pay_date` date NOT NULL, `pay_amount` double NOT NULL, `posted_date` datetime NOT NULL, `posted_by` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `go_order_comments` -- LOCK TABLES `go_order_comments` WRITE; /*!40000 ALTER TABLE `go_order_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `go_order_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `go_order_fulfillment` -- DROP TABLE IF EXISTS `go_order_fulfillment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `go_order_fulfillment` ( `id` int NOT NULL AUTO_INCREMENT, `order_from` varchar(100) DEFAULT NULL, `order_id` int DEFAULT NULL, `product_id` int DEFAULT NULL, `sf_product_id` int DEFAULT NULL, `product_name` varchar(250) DEFAULT NULL, `quantity` int DEFAULT NULL, `barcode` varchar(50) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `ip_address` varchar(100) DEFAULT NULL, `system_name` varchar(200) DEFAULT NULL, `sell_price` varchar(30) DEFAULT NULL, `tax_value` varchar(30) DEFAULT NULL, `order_for` varchar(250) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `go_order_fulfillment` -- LOCK TABLES `go_order_fulfillment` WRITE; /*!40000 ALTER TABLE `go_order_fulfillment` DISABLE KEYS */; /*!40000 ALTER TABLE `go_order_fulfillment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `go_order_itmes` -- DROP TABLE IF EXISTS `go_order_itmes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `go_order_itmes` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `storeid` int NOT NULL, `productid` varchar(100) NOT NULL, `product_name` varchar(255) NOT NULL, `catering_size_id` int DEFAULT NULL, `size` varchar(100) NOT NULL, `size_type` varchar(100) NOT NULL, `hike` varchar(5) NOT NULL, `wh_price` varchar(100) NOT NULL, `price` double NOT NULL, `mrp_price` varchar(50) NOT NULL, `qty` int NOT NULL, `discount` double NOT NULL, `tax_method` varchar(50) NOT NULL, `wh_tax_value` varchar(100) NOT NULL, `tax_value` double NOT NULL, `sell_price` double NOT NULL, `expres_amt` double NOT NULL, `product_id` int NOT NULL, `user_id` int NOT NULL, `order_via` varchar(100) NOT NULL, `order_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `delivery_date` date NOT NULL, `delivery_from` varchar(100) NOT NULL, `delivery_to` varchar(100) NOT NULL, `customize` varchar(2000) NOT NULL, `add_on_ids` varchar(500) NOT NULL, `add_on_qtys` varchar(500) NOT NULL, `add_on_sizeids` varchar(500) DEFAULT NULL, `remarks` varchar(2000) NOT NULL, `section` varchar(50) NOT NULL, `usps_expected_delivery` varchar(100) NOT NULL, `snap_tracking_no` varchar(500) NOT NULL, `ups_tracking_no` varchar(500) NOT NULL, `twilio_sms_sid` varchar(500) NOT NULL DEFAULT '', `twilio_call_sid` varchar(500) NOT NULL DEFAULT '', `twilio_fax_sid` varchar(500) NOT NULL DEFAULT '', `order_status` varchar(50) NOT NULL, `comments` text NOT NULL, `status_date` datetime NOT NULL, `courier` varchar(20) NOT NULL, `ship_date` varchar(25) NOT NULL, `is_send_to_vendor` varchar(3) NOT NULL DEFAULT 'No', `vendor_sync_comments` varchar(150) NOT NULL, `user_replacement_option` enum('Replace with Best Match','Call Us Before Replacing','Do Not Replace') DEFAULT NULL, `subscription_type` varchar(250) DEFAULT NULL, `delivery_type` varchar(250) DEFAULT NULL, PRIMARY KEY (`id`), KEY `id` (`id`,`order_id`,`storeid`,`productid`,`price`,`qty`,`discount`,`tax_method`,`wh_tax_value`,`tax_value`,`sell_price`,`product_id`,`user_id`,`order_date`), KEY `wh_price` (`wh_price`), KEY `order_id` (`order_id`,`storeid`,`productid`,`product_id`,`user_id`,`order_via`,`order_date`,`delivery_date`,`section`), KEY `usps_expected_delivery` (`usps_expected_delivery`,`ups_tracking_no`,`order_status`,`courier`,`is_send_to_vendor`,`user_replacement_option`,`subscription_type`), KEY `ups_tracking_no` (`ups_tracking_no`,`courier`) ) ENGINE=InnoDB AUTO_INCREMENT=716 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `go_order_itmes` -- LOCK TABLES `go_order_itmes` WRITE; /*!40000 ALTER TABLE `go_order_itmes` DISABLE KEYS */; /*!40000 ALTER TABLE `go_order_itmes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `go_product` -- DROP TABLE IF EXISTS `go_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `go_product` ( `uid` int NOT NULL DEFAULT '10', `storeid` varchar(255) NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `categories` varchar(255) NOT NULL, `cat_id` int NOT NULL, `subcat_id` int NOT NULL DEFAULT '0', `childsubcat_id` int DEFAULT NULL, `gchildsubcat_id` int DEFAULT NULL, `brand_id` int NOT NULL, `addon` varchar(10000) DEFAULT NULL, `product_ref_id` varchar(100) DEFAULT NULL, `product_name` varchar(255) NOT NULL, `product_code` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `product_app_photo` varchar(55) DEFAULT NULL, `product_video` varchar(55) DEFAULT NULL, `description` text, `how_to_use` text, `nutritional_facts` text, `meta_title` text, `meta_keywords` text, `meta_description` text, `latest` int DEFAULT NULL, `price_change` int DEFAULT NULL, `display_order` int NOT NULL DEFAULT '20', `posted_by` varchar(11) DEFAULT NULL, `posted_date` varchar(50) DEFAULT NULL, `display_status` int DEFAULT NULL, `status` tinyint NOT NULL, `desp_plaintext` varchar(1000) DEFAULT NULL, `photo_wide` varchar(500) DEFAULT NULL, `product_tag` varchar(250) DEFAULT NULL, `product_sku` varchar(250) DEFAULT NULL, `order_count` int NOT NULL DEFAULT '0', `update_on` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `stock_quantity` int DEFAULT '0', `quicklly_pids` varchar(250) DEFAULT NULL, `insta_pids` varchar(250) DEFAULT NULL, PRIMARY KEY (`id`), KEY `storeid` (`storeid`,`id`,`categories`,`cat_id`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=790 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `go_product` -- LOCK TABLES `go_product` WRITE; /*!40000 ALTER TABLE `go_product` DISABLE KEYS */; /*!40000 ALTER TABLE `go_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `go_product_history` -- DROP TABLE IF EXISTS `go_product_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `go_product_history` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `productprice_id` int NOT NULL, `product_name` varchar(1000) NOT NULL, `storeid` int NOT NULL, `mrp_price` varchar(10) NOT NULL, `sell_price` varchar(10) NOT NULL, `discount` varchar(5) NOT NULL, `user_id` int NOT NULL, `user_type` varchar(100) NOT NULL, `size` varchar(10) NOT NULL, `size_type` varchar(10) NOT NULL, `stock_quantity` int DEFAULT NULL, `system` varchar(500) NOT NULL, `system_user` varchar(500) NOT NULL, `ip_address` varchar(100) NOT NULL, `modify_date` datetime NOT NULL, `old_mrp` varchar(10) DEFAULT NULL, `old_sell_price` varchar(10) DEFAULT NULL, `old_quantity` int DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1407 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `go_product_history` -- LOCK TABLES `go_product_history` WRITE; /*!40000 ALTER TABLE `go_product_history` DISABLE KEYS */; /*!40000 ALTER TABLE `go_product_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `go_productprice` -- DROP TABLE IF EXISTS `go_productprice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `go_productprice` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `sizes` varchar(255) NOT NULL, `size` varchar(255) NOT NULL, `size_type` varchar(1000) NOT NULL, `weight` varchar(10) NOT NULL, `actual_price` double NOT NULL, `mrp_price` double NOT NULL, `tax` varchar(10) NOT NULL, `tax_method` varchar(50) NOT NULL, `tax_value` varchar(10) NOT NULL DEFAULT '0', `old_tax_value` varchar(50) NOT NULL, `discount` double NOT NULL, `sell_price` double NOT NULL, `old_sell_price` varchar(50) NOT NULL, `in_stock` tinyint NOT NULL, `pphoto` varchar(255) NOT NULL, `barcode` varchar(255) NOT NULL, `barcode_number` varchar(500) NOT NULL, `video` text NOT NULL, `display_order` int NOT NULL DEFAULT '5', `status` tinyint NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`,`product_id`,`tax`,`tax_method`,`tax_value`,`discount`,`sell_price`,`in_stock`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=790 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `go_productprice` -- LOCK TABLES `go_productprice` WRITE; /*!40000 ALTER TABLE `go_productprice` DISABLE KEYS */; /*!40000 ALTER TABLE `go_productprice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `go_transacttion` -- DROP TABLE IF EXISTS `go_transacttion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `go_transacttion` ( `id` int NOT NULL AUTO_INCREMENT, `storeid` varchar(10) NOT NULL, `orderid` varchar(10) NOT NULL, `transaction_id` varchar(200) NOT NULL, `transaction_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `transaction_status` int NOT NULL, `customer_id` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `go_transacttion` -- LOCK TABLES `go_transacttion` WRITE; /*!40000 ALTER TABLE `go_transacttion` DISABLE KEYS */; /*!40000 ALTER TABLE `go_transacttion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `go_user` -- DROP TABLE IF EXISTS `go_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `go_user` ( `uid` int NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `user_type` int NOT NULL, `name_title` varchar(255) NOT NULL, `fname` varchar(255) NOT NULL, `lname` varchar(255) NOT NULL, `photo` text NOT NULL, `dob` date NOT NULL, `gender` text NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `tax_certificate` int NOT NULL, `company_name` varchar(255) NOT NULL, `first_address` varchar(500) NOT NULL, `house_no` varchar(255) NOT NULL, `street` varchar(255) NOT NULL, `complex` varchar(255) NOT NULL, `landmark` varchar(255) NOT NULL, `city_id` varchar(150) NOT NULL, `pincode` varchar(255) NOT NULL, `area` varchar(255) NOT NULL, `state` varchar(100) NOT NULL, `mobile` varchar(255) NOT NULL, `phone` varchar(255) NOT NULL, `second_address` varchar(500) NOT NULL, `full_address` varchar(255) DEFAULT NULL, `latitude` decimal(10,8) DEFAULT NULL, `longitude` decimal(11,8) DEFAULT NULL, `fname1` varchar(100) NOT NULL, `lname1` varchar(100) NOT NULL, `house_no1` varchar(1000) NOT NULL, `street1` varchar(1000) NOT NULL, `complex1` varchar(1000) NOT NULL, `city_id1` varchar(10) NOT NULL, `state1` varchar(200) NOT NULL, `pincode1` varchar(12) NOT NULL, `mobile1` varchar(15) NOT NULL, `email1` varchar(500) NOT NULL, `wallet_balance` double NOT NULL, `reward_points` double NOT NULL, `chef_wallet_flag` enum('1','0') NOT NULL DEFAULT '0', `chef_cash_flag` enum('1','0') NOT NULL DEFAULT '0', `chefmerchantId` varchar(255) NOT NULL, `chef_flag` enum('1','0') NOT NULL DEFAULT '0', `how_did_know` varchar(255) NOT NULL, `receivemail` tinyint NOT NULL, `register_date` datetime NOT NULL, `save_cc` tinyint NOT NULL DEFAULT '0', `reset_date` varchar(20) NOT NULL, `ip` varchar(255) NOT NULL, `status` tinyint NOT NULL, `user_ref_id` int DEFAULT '0', PRIMARY KEY (`id`), KEY `id` (`id`,`user_type`,`fname`,`lname`,`email`) ) ENGINE=InnoDB AUTO_INCREMENT=202 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `go_user` -- LOCK TABLES `go_user` WRITE; /*!40000 ALTER TABLE `go_user` DISABLE KEYS */; /*!40000 ALTER TABLE `go_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `home_new_list` -- DROP TABLE IF EXISTS `home_new_list`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `home_new_list` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `img` varchar(100) NOT NULL, `order_no` int NOT NULL, `sec_id` int NOT NULL, `store_id` int DEFAULT NULL, `prod_id` int DEFAULT NULL, `last_update_datetime` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `home_new_list` -- LOCK TABLES `home_new_list` WRITE; /*!40000 ALTER TABLE `home_new_list` DISABLE KEYS */; /*!40000 ALTER TABLE `home_new_list` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `home_page_prods` -- DROP TABLE IF EXISTS `home_page_prods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `home_page_prods` ( `id` int NOT NULL AUTO_INCREMENT, `home_section` int NOT NULL, `title` varchar(200) NOT NULL, `img` varchar(200) NOT NULL, `order_no` int NOT NULL, `sec_id` int NOT NULL, `store_id` int NOT NULL, `prod_id` int NOT NULL, `last_update_datetime` datetime NOT NULL, PRIMARY KEY (`id`), KEY `home_section` (`home_section`,`order_no`,`sec_id`,`store_id`,`prod_id`) ) ENGINE=InnoDB AUTO_INCREMENT=244 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `home_page_prods` -- LOCK TABLES `home_page_prods` WRITE; /*!40000 ALTER TABLE `home_page_prods` DISABLE KEYS */; /*!40000 ALTER TABLE `home_page_prods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `home_page_setting` -- DROP TABLE IF EXISTS `home_page_setting`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `home_page_setting` ( `id` int NOT NULL AUTO_INCREMENT, `sec_type` varchar(50) NOT NULL, `title` varchar(200) NOT NULL, `sub_title` varchar(200) NOT NULL, `cat_id` varchar(200) DEFAULT NULL, `sec_id` int DEFAULT NULL, `section_slug` varchar(200) DEFAULT NULL, `store_id` int DEFAULT NULL, `photo` varchar(200) NOT NULL, `display_order` int NOT NULL, `status` int NOT NULL, `bgcolor` varchar(100) NOT NULL, `sectionType` varchar(50) NOT NULL, `display_page` varchar(50) NOT NULL, `IsDeal` int NOT NULL DEFAULT '0', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `sec_type` (`sec_type`,`cat_id`,`sec_id`,`store_id`,`status`,`sectionType`,`display_page`) ) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `home_page_setting` -- LOCK TABLES `home_page_setting` WRITE; /*!40000 ALTER TABLE `home_page_setting` DISABLE KEYS */; /*!40000 ALTER TABLE `home_page_setting` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_customer_data` -- DROP TABLE IF EXISTS `insta_customer_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_customer_data` ( `id` int NOT NULL AUTO_INCREMENT, `phone_no` varchar(50) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `insta_user_id` varchar(100) DEFAULT NULL, `first_name` varchar(100) DEFAULT NULL, `last_name` varchar(100) DEFAULT NULL, `user_zipcode` varchar(20) DEFAULT NULL, `user_street` varchar(100) DEFAULT NULL, `user_city` varchar(50) DEFAULT NULL, `user_state` varchar(50) DEFAULT NULL, `section` int DEFAULT NULL, `created_date` timestamp NULL DEFAULT NULL, `tlog_date` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=37015 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_customer_data` -- LOCK TABLES `insta_customer_data` WRITE; /*!40000 ALTER TABLE `insta_customer_data` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_customer_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_customer_data_bk_25` -- DROP TABLE IF EXISTS `insta_customer_data_bk_25`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_customer_data_bk_25` ( `id` int NOT NULL AUTO_INCREMENT, `phone_no` varchar(50) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `insta_user_id` varchar(100) DEFAULT NULL, `first_name` varchar(100) DEFAULT NULL, `last_name` varchar(100) DEFAULT NULL, `user_zipcode` varchar(20) DEFAULT NULL, `user_street` varchar(100) DEFAULT NULL, `user_city` varchar(50) DEFAULT NULL, `user_state` varchar(50) DEFAULT NULL, `section` int DEFAULT NULL, `created_date` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1389 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_customer_data_bk_25` -- LOCK TABLES `insta_customer_data_bk_25` WRITE; /*!40000 ALTER TABLE `insta_customer_data_bk_25` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_customer_data_bk_25` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_ff_dnld` -- DROP TABLE IF EXISTS `insta_ff_dnld`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_ff_dnld` ( `id` int NOT NULL AUTO_INCREMENT, `lookup_code` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `store_identifier` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` double DEFAULT NULL, `brand_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `item_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost_unit` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `size` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `size_uom` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `balance_on_hand` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `available` tinyint NOT NULL DEFAULT '0', `par_weight` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `department` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `aisle` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `item_details` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `remote_image_URL` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `additional_images_url` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `store_id` int DEFAULT NULL, `create_at` timestamp NULL DEFAULT NULL, `updtaed_at` timestamp NULL DEFAULT NULL, `status` tinyint DEFAULT '1', PRIMARY KEY (`id`), KEY `lookup_code` (`lookup_code`), KEY `store_identifier` (`store_identifier`) ) ENGINE=InnoDB AUTO_INCREMENT=201142 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_ff_dnld` -- LOCK TABLES `insta_ff_dnld` WRITE; /*!40000 ALTER TABLE `insta_ff_dnld` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_ff_dnld` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_maincategory` -- DROP TABLE IF EXISTS `insta_maincategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_maincategory` ( `storeid` varchar(1000) DEFAULT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_id` int DEFAULT NULL, `section_id` varchar(250) DEFAULT NULL, `maincategory` varchar(255) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `status` tinyint NOT NULL DEFAULT '1', `sort_order` int NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `storeid` (`storeid`), KEY `parent_id` (`parent_id`,`section_id`,`maincategory`,`slug`,`status`,`sort_order`), KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_maincategory` -- LOCK TABLES `insta_maincategory` WRITE; /*!40000 ALTER TABLE `insta_maincategory` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_maincategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_order_comments` -- DROP TABLE IF EXISTS `insta_order_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_order_comments` ( `id` int NOT NULL AUTO_INCREMENT, `comments` text, `storeid` int DEFAULT NULL, `order_item_id` bigint DEFAULT NULL, `order_id` bigint DEFAULT NULL, `order_status` int DEFAULT NULL, `payment_status` int DEFAULT NULL, `posted_date` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=528 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_order_comments` -- LOCK TABLES `insta_order_comments` WRITE; /*!40000 ALTER TABLE `insta_order_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_order_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_order_itmes` -- DROP TABLE IF EXISTS `insta_order_itmes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_order_itmes` ( `id` bigint NOT NULL AUTO_INCREMENT, `user_id` bigint DEFAULT NULL, `order_id` bigint DEFAULT NULL, `partner_order_id` varchar(200) DEFAULT NULL, `storeid` int DEFAULT NULL, `location` varchar(100) NOT NULL, `product_id` varchar(100) DEFAULT NULL, `category` int DEFAULT NULL, `sub_category` int DEFAULT NULL, `product_name` varchar(500) DEFAULT NULL, `size` varchar(50) DEFAULT NULL, `size_type` varchar(50) DEFAULT NULL, `mrp_price` varchar(10) DEFAULT NULL, `qty` int DEFAULT NULL, `discount` double DEFAULT NULL, `tax_method` varchar(50) DEFAULT NULL, `tax_value` double DEFAULT NULL, `sell_price` double DEFAULT NULL, `order_via` varchar(100) DEFAULT NULL, `order_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `delivery_date` date DEFAULT NULL, `remarks` varchar(2000) DEFAULT NULL, `section` varchar(5) DEFAULT NULL, `order_status` varchar(2) DEFAULT NULL, `bag_fees` double DEFAULT NULL, `GMV` double DEFAULT NULL, `loyalty_number` varchar(20) DEFAULT NULL, `loyalty_price` double DEFAULT NULL, `price_source` varchar(256) DEFAULT NULL, `brand` varchar(100) DEFAULT NULL, `estimated_retail_revenue` double DEFAULT NULL, `instacart_online_price` double DEFAULT NULL, `instacart_online_revenue` double DEFAULT NULL, `bottle_deposit` varchar(20) DEFAULT NULL, `alcohol_excise_tax` double DEFAULT NULL, `bag_tax` double DEFAULT NULL, `soda_tax` double DEFAULT NULL, `fulfilled_item_type` varchar(35) DEFAULT NULL, `is_redelivered` tinyint(1) DEFAULT NULL, `bottle_redemption_amt` double DEFAULT NULL, `sugar_tax_amt` double DEFAULT NULL, `liqour_tax_amt` double DEFAULT NULL, `bottle_water_tax_amt` double DEFAULT NULL, `value_added_tax_amt` double DEFAULT NULL, `goods_and_services_tax_amt` double DEFAULT NULL, `provincial_sales_tax_amt` double DEFAULT NULL, `harmonized_sales_tax_amt` double DEFAULT NULL, `partner_user_ID` varchar(10000) DEFAULT NULL, `discounted_item_price` double DEFAULT NULL, `delivery_id` varchar(20) DEFAULT NULL, `ship_pincode` varchar(20) DEFAULT NULL, `transaction_id` varchar(50) DEFAULT NULL, `user_signup_zipcode` varchar(10) DEFAULT NULL, `upc_plu` varchar(255) DEFAULT NULL, `store_location` varchar(512) DEFAULT NULL, `is_delivery` varchar(10) DEFAULT NULL, `is_alcoholic` varchar(10) DEFAULT NULL, `reference_code` varchar(256) DEFAULT NULL, `store_location_zip_code` varchar(20) DEFAULT NULL, `is_express_customer` varchar(20) DEFAULT NULL, `picking_shopper_type` varchar(4) DEFAULT NULL, `external_order_id` varchar(10000) DEFAULT NULL, `is_pickup` varchar(10) DEFAULT NULL, `comments` text, `shopper_payment_status` int DEFAULT NULL, `status_date` timestamp NULL DEFAULT NULL, `store_dentifier` varchar(100) DEFAULT NULL, `delivery_street_1` varchar(255) DEFAULT NULL, `delivery_street_2` varchar(255) DEFAULT NULL, `delivery_city` varchar(255) DEFAULT NULL, `delivery_state` varchar(255) DEFAULT NULL, `delivery_zipcode` varchar(50) DEFAULT NULL, `country` varchar(255) DEFAULT NULL, `customer_fname` varchar(255) DEFAULT NULL, `customer_lname` varchar(255) DEFAULT NULL, `delivery_estimates_from` varchar(100) DEFAULT NULL, `delivery_estimates_to` varchar(100) DEFAULT NULL, `lead_time` varchar(100) DEFAULT NULL, `tracking_urls` varchar(5000) DEFAULT NULL, `order_amt_in_cent` varchar(50) DEFAULT NULL, `tracking_no` varchar(100) DEFAULT NULL, `tracking_no2` varchar(100) DEFAULT NULL, `tracking_urls2` varchar(500) DEFAULT NULL, `courier_vendor` varchar(100) DEFAULT NULL, `tnc_accept_status` tinyint NOT NULL DEFAULT '0', `tnc_status_reason` varchar(500) DEFAULT NULL, `send_to_tnc` tinyint NOT NULL DEFAULT '0', `shipping_date` timestamp NULL DEFAULT NULL, `updated_date` timestamp NULL DEFAULT NULL, `time_zone_name` varchar(50) DEFAULT NULL, `tlog_date` date DEFAULT NULL, `schedule_delivery` timestamp NULL DEFAULT NULL, `tracking_status_code` varchar(50) DEFAULT NULL, `tracking_msg` varchar(500) DEFAULT NULL, `delivery_delay_notify` tinyint NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `id` (`id`,`order_id`,`storeid`,`product_id`,`qty`,`discount`,`tax_method`,`tax_value`,`sell_price`,`order_date`) ) ENGINE=InnoDB AUTO_INCREMENT=1227089 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_order_itmes` -- LOCK TABLES `insta_order_itmes` WRITE; /*!40000 ALTER TABLE `insta_order_itmes` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_order_itmes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_order_itmes_24` -- DROP TABLE IF EXISTS `insta_order_itmes_24`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_order_itmes_24` ( `id` bigint NOT NULL AUTO_INCREMENT, `user_id` bigint DEFAULT NULL, `order_id` bigint DEFAULT NULL, `partner_order_id` varchar(200) DEFAULT NULL, `storeid` int DEFAULT NULL, `location` varchar(100) NOT NULL, `product_id` varchar(100) DEFAULT NULL, `category` int DEFAULT NULL, `sub_category` int DEFAULT NULL, `product_name` varchar(500) DEFAULT NULL, `size` varchar(50) DEFAULT NULL, `size_type` varchar(50) DEFAULT NULL, `mrp_price` varchar(10) DEFAULT NULL, `qty` int DEFAULT NULL, `discount` double DEFAULT NULL, `tax_method` varchar(50) DEFAULT NULL, `tax_value` double DEFAULT NULL, `sell_price` double DEFAULT NULL, `order_via` varchar(100) DEFAULT NULL, `order_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `delivery_date` date DEFAULT NULL, `remarks` varchar(2000) DEFAULT NULL, `section` varchar(5) DEFAULT NULL, `order_status` varchar(2) DEFAULT NULL, `bag_fees` double DEFAULT NULL, `GMV` double DEFAULT NULL, `loyalty_number` varchar(20) DEFAULT NULL, `loyalty_price` double DEFAULT NULL, `price_source` varchar(256) DEFAULT NULL, `brand` varchar(100) DEFAULT NULL, `estimated_retail_revenue` double DEFAULT NULL, `instacart_online_price` double DEFAULT NULL, `instacart_online_revenue` double DEFAULT NULL, `bottle_deposit` varchar(20) DEFAULT NULL, `alcohol_excise_tax` double DEFAULT NULL, `bag_tax` double DEFAULT NULL, `soda_tax` double DEFAULT NULL, `fulfilled_item_type` varchar(35) DEFAULT NULL, `is_redelivered` tinyint(1) DEFAULT NULL, `bottle_redemption_amt` double DEFAULT NULL, `sugar_tax_amt` double DEFAULT NULL, `liqour_tax_amt` double DEFAULT NULL, `bottle_water_tax_amt` double DEFAULT NULL, `value_added_tax_amt` double DEFAULT NULL, `goods_and_services_tax_amt` double DEFAULT NULL, `provincial_sales_tax_amt` double DEFAULT NULL, `harmonized_sales_tax_amt` double DEFAULT NULL, `partner_user_ID` varchar(10000) DEFAULT NULL, `discounted_item_price` double DEFAULT NULL, `delivery_id` varchar(20) DEFAULT NULL, `ship_pincode` varchar(20) DEFAULT NULL, `transaction_id` varchar(50) DEFAULT NULL, `user_signup_zipcode` varchar(10) DEFAULT NULL, `upc_plu` varchar(255) DEFAULT NULL, `store_location` varchar(512) DEFAULT NULL, `is_delivery` varchar(10) DEFAULT NULL, `is_alcoholic` varchar(10) DEFAULT NULL, `reference_code` varchar(256) DEFAULT NULL, `store_location_zip_code` varchar(20) DEFAULT NULL, `is_express_customer` varchar(20) DEFAULT NULL, `picking_shopper_type` varchar(4) DEFAULT NULL, `external_order_id` varchar(10000) DEFAULT NULL, `is_pickup` varchar(10) DEFAULT NULL, `comments` text, `shopper_payment_status` int DEFAULT NULL, `status_date` timestamp NULL DEFAULT NULL, `store_dentifier` varchar(100) DEFAULT NULL, `delivery_street_1` varchar(255) DEFAULT NULL, `delivery_street_2` varchar(255) DEFAULT NULL, `delivery_city` varchar(255) DEFAULT NULL, `delivery_state` varchar(255) DEFAULT NULL, `delivery_zipcode` varchar(50) DEFAULT NULL, `country` varchar(255) DEFAULT NULL, `customer_fname` varchar(255) DEFAULT NULL, `customer_lname` varchar(255) DEFAULT NULL, `delivery_estimates_from` varchar(100) DEFAULT NULL, `delivery_estimates_to` varchar(100) DEFAULT NULL, `lead_time` varchar(100) DEFAULT NULL, `tracking_urls` varchar(5000) DEFAULT NULL, `order_amt_in_cent` varchar(50) DEFAULT NULL, `tracking_no` varchar(100) DEFAULT NULL, `tracking_no2` varchar(100) DEFAULT NULL, `tracking_urls2` varchar(500) DEFAULT NULL, `courier_vendor` varchar(100) DEFAULT NULL, `tnc_accept_status` tinyint NOT NULL DEFAULT '0', `tnc_status_reason` varchar(500) DEFAULT NULL, `send_to_tnc` tinyint NOT NULL DEFAULT '0', `shipping_date` timestamp NULL DEFAULT NULL, `updated_date` timestamp NULL DEFAULT NULL, `time_zone_name` varchar(50) DEFAULT NULL, `tlog_date` date DEFAULT NULL, `schedule_delivery` timestamp NULL DEFAULT NULL, `tracking_status_code` varchar(50) DEFAULT NULL, `tracking_msg` varchar(500) DEFAULT NULL, `delivery_delay_notify` tinyint NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `id` (`id`,`order_id`,`storeid`,`product_id`,`qty`,`discount`,`tax_method`,`tax_value`,`sell_price`,`order_date`) ) ENGINE=InnoDB AUTO_INCREMENT=79556 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_order_itmes_24` -- LOCK TABLES `insta_order_itmes_24` WRITE; /*!40000 ALTER TABLE `insta_order_itmes_24` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_order_itmes_24` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_order_itmes_addon` -- DROP TABLE IF EXISTS `insta_order_itmes_addon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_order_itmes_addon` ( `id` int NOT NULL, `order_id` int NOT NULL, `item_id` int NOT NULL, `category_name` varchar(500) DEFAULT NULL, `category_id` int DEFAULT NULL, `option_id` varchar(255) DEFAULT NULL, `option_name` varchar(500) DEFAULT NULL, `price` decimal(10,0) DEFAULT NULL, `currency` varchar(100) DEFAULT NULL, `created_date` datetime NOT NULL, `updated_date` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_order_itmes_addon` -- LOCK TABLES `insta_order_itmes_addon` WRITE; /*!40000 ALTER TABLE `insta_order_itmes_addon` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_order_itmes_addon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_order_itmes_grocery_data` -- DROP TABLE IF EXISTS `insta_order_itmes_grocery_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_order_itmes_grocery_data` ( `id` bigint NOT NULL AUTO_INCREMENT, `user_id` bigint DEFAULT NULL, `order_id` bigint DEFAULT NULL, `partner_order_id` varchar(200) DEFAULT NULL, `storeid` int DEFAULT NULL, `location` varchar(100) NOT NULL, `product_id` varchar(100) DEFAULT NULL, `category` int DEFAULT NULL, `sub_category` int DEFAULT NULL, `product_name` varchar(500) DEFAULT NULL, `size` varchar(50) DEFAULT NULL, `size_type` varchar(50) DEFAULT NULL, `mrp_price` varchar(10) DEFAULT NULL, `qty` int DEFAULT NULL, `discount` double DEFAULT NULL, `tax_method` varchar(50) DEFAULT NULL, `tax_value` double DEFAULT NULL, `sell_price` double DEFAULT NULL, `order_via` varchar(100) DEFAULT NULL, `order_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `delivery_date` date DEFAULT NULL, `remarks` varchar(2000) DEFAULT NULL, `section` varchar(5) DEFAULT NULL, `order_status` varchar(2) DEFAULT NULL, `bag_fees` double DEFAULT NULL, `GMV` double DEFAULT NULL, `loyalty_number` varchar(20) DEFAULT NULL, `loyalty_price` double DEFAULT NULL, `price_source` varchar(256) DEFAULT NULL, `brand` varchar(100) DEFAULT NULL, `estimated_retail_revenue` double DEFAULT NULL, `instacart_online_price` double DEFAULT NULL, `instacart_online_revenue` double DEFAULT NULL, `bottle_deposit` varchar(20) DEFAULT NULL, `alcohol_excise_tax` double DEFAULT NULL, `bag_tax` double DEFAULT NULL, `soda_tax` double DEFAULT NULL, `fulfilled_item_type` varchar(35) DEFAULT NULL, `is_redelivered` tinyint(1) DEFAULT NULL, `bottle_redemption_amt` double DEFAULT NULL, `sugar_tax_amt` double DEFAULT NULL, `liqour_tax_amt` double DEFAULT NULL, `bottle_water_tax_amt` double DEFAULT NULL, `value_added_tax_amt` double DEFAULT NULL, `goods_and_services_tax_amt` double DEFAULT NULL, `provincial_sales_tax_amt` double DEFAULT NULL, `harmonized_sales_tax_amt` double DEFAULT NULL, `partner_user_ID` varchar(10000) DEFAULT NULL, `discounted_item_price` double DEFAULT NULL, `delivery_id` varchar(20) DEFAULT NULL, `ship_pincode` varchar(20) DEFAULT NULL, `transaction_id` varchar(50) DEFAULT NULL, `user_signup_zipcode` varchar(10) DEFAULT NULL, `upc_plu` varchar(255) DEFAULT NULL, `store_location` varchar(512) DEFAULT NULL, `is_delivery` varchar(10) DEFAULT NULL, `is_alcoholic` varchar(10) DEFAULT NULL, `reference_code` varchar(256) DEFAULT NULL, `store_location_zip_code` varchar(20) DEFAULT NULL, `is_express_customer` varchar(20) DEFAULT NULL, `picking_shopper_type` varchar(4) DEFAULT NULL, `external_order_id` varchar(10000) DEFAULT NULL, `is_pickup` varchar(10) DEFAULT NULL, `comments` text, `shopper_payment_status` int DEFAULT NULL, `status_date` timestamp NULL DEFAULT NULL, `store_dentifier` varchar(100) DEFAULT NULL, `delivery_street_1` varchar(255) DEFAULT NULL, `delivery_street_2` varchar(255) DEFAULT NULL, `delivery_city` varchar(255) DEFAULT NULL, `delivery_state` varchar(255) DEFAULT NULL, `delivery_zipcode` varchar(50) DEFAULT NULL, `country` varchar(255) DEFAULT NULL, `customer_fname` varchar(255) DEFAULT NULL, `customer_lname` varchar(255) DEFAULT NULL, `delivery_estimates_from` varchar(100) DEFAULT NULL, `delivery_estimates_to` varchar(100) DEFAULT NULL, `lead_time` varchar(100) DEFAULT NULL, `tracking_urls` varchar(5000) DEFAULT NULL, `order_amt_in_cent` varchar(50) DEFAULT NULL, `tracking_no` varchar(100) DEFAULT NULL, `tracking_no2` varchar(100) DEFAULT NULL, `tracking_urls2` varchar(500) DEFAULT NULL, `courier_vendor` varchar(100) DEFAULT NULL, `tnc_accept_status` tinyint NOT NULL DEFAULT '0', `tnc_status_reason` varchar(500) DEFAULT NULL, `send_to_tnc` tinyint NOT NULL DEFAULT '0', `shipping_date` timestamp NULL DEFAULT NULL, `updated_date` timestamp NULL DEFAULT NULL, `time_zone_name` varchar(50) DEFAULT NULL, `tlog_date` date DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2270 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_order_itmes_grocery_data` -- LOCK TABLES `insta_order_itmes_grocery_data` WRITE; /*!40000 ALTER TABLE `insta_order_itmes_grocery_data` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_order_itmes_grocery_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_order_status` -- DROP TABLE IF EXISTS `insta_order_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_order_status` ( `id` int NOT NULL AUTO_INCREMENT, `order_status` varchar(255) DEFAULT NULL, `ic_status_val` varchar(100) DEFAULT NULL, `status` tinyint NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_order_status` -- LOCK TABLES `insta_order_status` WRITE; /*!40000 ALTER TABLE `insta_order_status` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_order_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_product` -- DROP TABLE IF EXISTS `insta_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_product` ( `storeid` varchar(11) DEFAULT NULL, `id` int NOT NULL AUTO_INCREMENT, `categories` varchar(255) DEFAULT NULL, `cat_id` int DEFAULT NULL, `product_ref_id` varchar(50) DEFAULT NULL, `product_name` varchar(500) DEFAULT NULL, `ingredients` text, `product_details` varchar(5000) DEFAULT NULL, `posted_by` varchar(11) DEFAULT NULL, `posted_date` timestamp NULL DEFAULT NULL, `updated_date` timestamp NULL DEFAULT NULL, `cron_date` timestamp NULL DEFAULT NULL, `photo` varchar(500) DEFAULT NULL, `section` int DEFAULT NULL, `status` tinyint DEFAULT NULL, `additional_image` varchar(3000) DEFAULT NULL, `line_item` varchar(100) DEFAULT NULL, `store_refer_id` int DEFAULT NULL, PRIMARY KEY (`id`), KEY `storeid` (`storeid`,`id`,`categories`,`cat_id`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=83047 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_product` -- LOCK TABLES `insta_product` WRITE; /*!40000 ALTER TABLE `insta_product` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_product_4july` -- DROP TABLE IF EXISTS `insta_product_4july`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_product_4july` ( `storeid` varchar(11) DEFAULT NULL, `id` int NOT NULL AUTO_INCREMENT, `categories` varchar(255) DEFAULT NULL, `cat_id` int DEFAULT NULL, `product_ref_id` varchar(50) DEFAULT NULL, `product_name` varchar(500) DEFAULT NULL, `ingredients` text, `product_details` varchar(5000) DEFAULT NULL, `posted_by` varchar(11) DEFAULT NULL, `posted_date` timestamp NULL DEFAULT NULL, `updated_date` timestamp NULL DEFAULT NULL, `cron_date` timestamp NULL DEFAULT NULL, `photo` varchar(500) DEFAULT NULL, `section` int DEFAULT NULL, `status` tinyint DEFAULT NULL, `additional_image` varchar(3000) DEFAULT NULL, `line_item` varchar(100) DEFAULT NULL, `store_refer_id` int DEFAULT NULL, PRIMARY KEY (`id`), KEY `storeid` (`storeid`,`id`,`categories`,`cat_id`,`status`) ) ENGINE=MyISAM AUTO_INCREMENT=21040 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_product_4july` -- LOCK TABLES `insta_product_4july` WRITE; /*!40000 ALTER TABLE `insta_product_4july` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_product_4july` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_productaddon` -- DROP TABLE IF EXISTS `insta_productaddon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_productaddon` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `type` int DEFAULT NULL, `category` varchar(500) DEFAULT NULL, `addonname` varchar(500) DEFAULT NULL, `mrp_price` decimal(10,0) DEFAULT NULL, `sell_price` decimal(10,0) DEFAULT NULL, `tax_method` varchar(100) DEFAULT NULL, `tax_value` varchar(50) DEFAULT NULL, `instock` tinyint NOT NULL DEFAULT '1', `status` tinyint NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_productaddon` -- LOCK TABLES `insta_productaddon` WRITE; /*!40000 ALTER TABLE `insta_productaddon` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_productaddon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_productprice` -- DROP TABLE IF EXISTS `insta_productprice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_productprice` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int DEFAULT NULL, `size` varchar(15) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `size_type` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `weight` varchar(10) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `weight_type` varchar(15) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `mrp_price` double DEFAULT NULL, `tax_method` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `tax_value` double DEFAULT NULL, `discount` double DEFAULT NULL, `sell_price` double DEFAULT NULL, `in_stock` tinyint DEFAULT NULL, `barcode` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `status` tinyint DEFAULT NULL, PRIMARY KEY (`id`), KEY `id` (`id`,`product_id`,`tax_method`,`tax_value`,`discount`,`sell_price`,`in_stock`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=83047 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_productprice` -- LOCK TABLES `insta_productprice` WRITE; /*!40000 ALTER TABLE `insta_productprice` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_productprice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_productprice_4july` -- DROP TABLE IF EXISTS `insta_productprice_4july`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_productprice_4july` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int DEFAULT NULL, `size` varchar(15) DEFAULT NULL, `size_type` varchar(50) DEFAULT NULL, `weight` varchar(10) DEFAULT NULL, `weight_type` varchar(15) DEFAULT NULL, `mrp_price` double DEFAULT NULL, `tax_method` varchar(50) DEFAULT NULL, `tax_value` double DEFAULT NULL, `discount` double DEFAULT NULL, `sell_price` double DEFAULT NULL, `in_stock` tinyint DEFAULT NULL, `barcode` varchar(255) DEFAULT NULL, `status` tinyint DEFAULT NULL, PRIMARY KEY (`id`), KEY `id` (`id`,`product_id`,`tax_method`,`tax_value`,`discount`,`sell_price`,`in_stock`,`status`) ) ENGINE=MyISAM AUTO_INCREMENT=21040 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_productprice_4july` -- LOCK TABLES `insta_productprice_4july` WRITE; /*!40000 ALTER TABLE `insta_productprice_4july` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_productprice_4july` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_retail_tax_file_log` -- DROP TABLE IF EXISTS `insta_retail_tax_file_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_retail_tax_file_log` ( `id` bigint NOT NULL AUTO_INCREMENT, `retail_tax_log_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `file_name` varchar(1000) DEFAULT NULL, `no_of_records` int DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=223 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_retail_tax_file_log` -- LOCK TABLES `insta_retail_tax_file_log` WRITE; /*!40000 ALTER TABLE `insta_retail_tax_file_log` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_retail_tax_file_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_retailer_tax_logs` -- DROP TABLE IF EXISTS `insta_retailer_tax_logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_retailer_tax_logs` ( `id` bigint NOT NULL AUTO_INCREMENT, `section` tinyint DEFAULT NULL, `order_id` bigint DEFAULT NULL, `order_delivery_id` bigint DEFAULT NULL, `ordered_date` timestamp NULL DEFAULT NULL, `delivery_date` timestamp NULL DEFAULT NULL, `store_location` varchar(50) DEFAULT NULL, `store_location_zip` varchar(50) DEFAULT NULL, `upc_plu` varchar(100) DEFAULT NULL, `item_name` varchar(500) DEFAULT NULL, `order_item_id` bigint DEFAULT NULL, `financial_event_type` varchar(100) DEFAULT NULL, `base_price` double DEFAULT NULL, `tax_amount` double DEFAULT NULL, `discount_amount` double DEFAULT NULL, `imposition_name` varchar(200) DEFAULT NULL, `imposition_type` varchar(200) DEFAULT NULL, `mpf_flag` varchar(20) DEFAULT NULL, `situs_zip` varchar(20) DEFAULT NULL, `situs_main_division` varchar(50) DEFAULT NULL, `situs_country_name` varchar(50) DEFAULT NULL, `jurisdiction_name` varchar(500) DEFAULT NULL, `tax_rate` int DEFAULT NULL, `markup_amount` int DEFAULT NULL, `markup_tax_amount` int DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `update_at` timestamp NULL DEFAULT NULL, `storeid` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `idx_tx_order_id` (`order_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=26278 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_retailer_tax_logs` -- LOCK TABLES `insta_retailer_tax_logs` WRITE; /*!40000 ALTER TABLE `insta_retailer_tax_logs` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_retailer_tax_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_section` -- DROP TABLE IF EXISTS `insta_section`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_section` ( `id` int NOT NULL AUTO_INCREMENT, `section_name` varchar(500) DEFAULT NULL, `section_slug` varchar(500) DEFAULT NULL, `status` int DEFAULT NULL, PRIMARY KEY (`id`), KEY `section_name` (`section_name`), KEY `section_slug` (`section_slug`), KEY `status` (`status`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_section` -- LOCK TABLES `insta_section` WRITE; /*!40000 ALTER TABLE `insta_section` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_section` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_sl_users` -- DROP TABLE IF EXISTS `insta_sl_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_sl_users` ( `uid` int unsigned NOT NULL AUTO_INCREMENT, `fname` varchar(500) DEFAULT NULL, `lname` varchar(500) DEFAULT NULL, `pass` varchar(50) DEFAULT NULL, `companyname` varchar(100) DEFAULT NULL, `emailid` varchar(150) DEFAULT NULL, `mobile` bigint DEFAULT NULL, `stores` int DEFAULT NULL, `contactmode` varchar(500) DEFAULT NULL, `companylocation` varchar(500) DEFAULT NULL, `joindate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `companydesc` varchar(1200) DEFAULT NULL, `contactperson` varchar(100) DEFAULT NULL, `regaddress` varchar(300) DEFAULT NULL, `regcity` varchar(150) DEFAULT NULL, `regstate` varchar(100) DEFAULT NULL, `regpin` varchar(8) DEFAULT NULL, `zipcode` longtext, `ziparea` longtext, `turnover` varchar(30) DEFAULT NULL, `sign` varchar(100) DEFAULT NULL, `status` int DEFAULT '0', PRIMARY KEY (`uid`), UNIQUE KEY `emailid` (`emailid`), UNIQUE KEY `emailid_2` (`emailid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_sl_users` -- LOCK TABLES `insta_sl_users` WRITE; /*!40000 ALTER TABLE `insta_sl_users` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_sl_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_store_sales` -- DROP TABLE IF EXISTS `insta_store_sales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_store_sales` ( `id` int NOT NULL AUTO_INCREMENT, `orderid` varchar(20) DEFAULT NULL, `storeid` varchar(10) DEFAULT NULL, `store_zip` int DEFAULT NULL, `itemid` varchar(50) DEFAULT NULL, `item_ref_id` varchar(15) DEFAULT NULL, `mrp_price` float(5,2) DEFAULT NULL, `qty` int DEFAULT NULL, `sell_price` float(5,2) DEFAULT NULL, `tax_method` varchar(50) DEFAULT NULL, `tax_value` float(5,2) DEFAULT NULL, `wh_sell_price` float(5,2) DEFAULT NULL, `wh_tax_value` float(5,2) DEFAULT NULL, `order_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `section` int DEFAULT NULL, `payment_retry` int DEFAULT NULL, `payment_status` int DEFAULT NULL, `store_hike` varchar(10) DEFAULT NULL, `store_commission` varchar(5) DEFAULT NULL, `verify_status` enum('Pending','Verified','Not Matching','Not Found') NOT NULL DEFAULT 'Pending', `order_item_ref_id` bigint DEFAULT NULL, PRIMARY KEY (`id`), KEY `orderid` (`orderid`,`storeid`,`itemid`,`item_ref_id`,`order_date`,`section`,`payment_retry`,`payment_status`) ) ENGINE=InnoDB AUTO_INCREMENT=1221973 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_store_sales` -- LOCK TABLES `insta_store_sales` WRITE; /*!40000 ALTER TABLE `insta_store_sales` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_store_sales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_store_sales_grocerydata` -- DROP TABLE IF EXISTS `insta_store_sales_grocerydata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_store_sales_grocerydata` ( `id` int NOT NULL AUTO_INCREMENT, `orderid` bigint DEFAULT NULL, `storeid` int DEFAULT NULL, `store_zip` int DEFAULT NULL, `itemid` varchar(100) DEFAULT NULL, `item_ref_id` varchar(100) DEFAULT NULL, `mrp_price` float(5,2) DEFAULT NULL, `qty` int DEFAULT NULL, `sell_price` float(5,2) DEFAULT NULL, `tax_method` varchar(50) DEFAULT NULL, `tax_value` float(5,2) DEFAULT NULL, `wh_sell_price` float(5,2) DEFAULT NULL, `wh_tax_value` float(5,2) DEFAULT NULL, `order_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `section` int DEFAULT NULL, `payment_retry` int DEFAULT NULL, `payment_status` int DEFAULT NULL, `store_hike` varchar(10) DEFAULT NULL, `store_commission` varchar(5) DEFAULT NULL, `verify_status` enum('Pending','Verified','Not Matching','Not Found') NOT NULL DEFAULT 'Pending', `order_item_ref_id` bigint DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=2270 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_store_sales_grocerydata` -- LOCK TABLES `insta_store_sales_grocerydata` WRITE; /*!40000 ALTER TABLE `insta_store_sales_grocerydata` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_store_sales_grocerydata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_store_zip` -- DROP TABLE IF EXISTS `insta_store_zip`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_store_zip` ( `id` int NOT NULL AUTO_INCREMENT, `zip` varchar(8) DEFAULT NULL, `storeid` int DEFAULT NULL, `zone` int DEFAULT NULL, `city` varchar(500) DEFAULT NULL, `state` varchar(500) DEFAULT NULL, `zip_area` varchar(50) DEFAULT NULL, `hike` varchar(5) DEFAULT NULL, `minimum` int DEFAULT NULL, `delivery_fee` varchar(10) DEFAULT NULL, `commission` varchar(10) DEFAULT NULL, `minimum_fee` varchar(10) DEFAULT NULL, `sectionid` varchar(500) DEFAULT NULL, `open_time` varchar(12) DEFAULT NULL, `close_time` varchar(12) DEFAULT NULL, `wholesale_delevery_partner` varchar(500) DEFAULT NULL, `grocery_delivery_partner` varchar(500) DEFAULT NULL, `food_delivery_partner` varchar(500) DEFAULT NULL, `alocohol_delivery_partner` varchar(500) DEFAULT NULL, `status` int DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `storeid_zip_unique` (`storeid`,`zip`), KEY `zip` (`zip`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `hike` (`hike`), KEY `sectionid` (`sectionid`), KEY `status` (`status`), KEY `city` (`city`,`state`) ) ENGINE=InnoDB AUTO_INCREMENT=137 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_store_zip` -- LOCK TABLES `insta_store_zip` WRITE; /*!40000 ALTER TABLE `insta_store_zip` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_store_zip` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_stores` -- DROP TABLE IF EXISTS `insta_stores`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_stores` ( `uid` varchar(10) DEFAULT NULL, `storeid` int NOT NULL AUTO_INCREMENT, `store_ref_id` int DEFAULT NULL, `catid` varchar(10000) DEFAULT NULL, `sectionid` varchar(500) DEFAULT NULL, `storename` varchar(250) DEFAULT NULL, `BT_storename` varchar(500) DEFAULT NULL, `bt_merchant_type` varchar(50) DEFAULT NULL, `slug` varchar(500) DEFAULT NULL, `photo` varchar(500) DEFAULT NULL, `storeaddress` varchar(2500) DEFAULT NULL, `state` char(50) DEFAULT NULL, `city` varchar(100) DEFAULT NULL, `zip` varchar(8) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `phone` varchar(15) DEFAULT NULL, `post_date` datetime DEFAULT NULL, `status` int DEFAULT NULL, `open_time` time DEFAULT NULL, `close_time` time DEFAULT NULL, `by_pass_zipcode` bit(1) NOT NULL DEFAULT b'0', PRIMARY KEY (`storeid`), UNIQUE KEY `storeid` (`storeid`), KEY `storeid_2` (`storeid`), KEY `sectionid` (`sectionid`), KEY `status` (`status`), KEY `storename` (`storename`,`BT_storename`), KEY `photo` (`photo`), KEY `catid` (`catid`(767)), KEY `slug` (`slug`) ) ENGINE=InnoDB AUTO_INCREMENT=134 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_stores` -- LOCK TABLES `insta_stores` WRITE; /*!40000 ALTER TABLE `insta_stores` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_stores` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `insta_transacttion` -- DROP TABLE IF EXISTS `insta_transacttion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `insta_transacttion` ( `id` int NOT NULL AUTO_INCREMENT, `orderid` varchar(30) DEFAULT NULL, `storeid` int DEFAULT NULL, `order_amount` float(10,2) DEFAULT NULL, `shopper_id` int DEFAULT NULL, `transaction_id` varchar(200) DEFAULT NULL, `transaction_date` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `shopper_remarks` varchar(1000) DEFAULT NULL, `transaction_status` int DEFAULT NULL, `verify_status` enum('Pending','Verified','Not Matching','Not Found') NOT NULL DEFAULT 'Pending', `diff_amount` float(10,2) NOT NULL DEFAULT '0.00', PRIMARY KEY (`id`), KEY `orderid` (`orderid`,`transaction_id`,`transaction_date`,`transaction_status`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `insta_transacttion` -- LOCK TABLES `insta_transacttion` WRITE; /*!40000 ALTER TABLE `insta_transacttion` DISABLE KEYS */; /*!40000 ALTER TABLE `insta_transacttion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `limited_time_prods` -- DROP TABLE IF EXISTS `limited_time_prods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `limited_time_prods` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `img` varchar(100) NOT NULL, `order_no` int NOT NULL, `sec_id` int NOT NULL, `store_id` int DEFAULT NULL, `prod_id` int DEFAULT NULL, `last_update_datetime` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `limited_time_prods` -- LOCK TABLES `limited_time_prods` WRITE; /*!40000 ALTER TABLE `limited_time_prods` DISABLE KEYS */; /*!40000 ALTER TABLE `limited_time_prods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `prods_deals` -- DROP TABLE IF EXISTS `prods_deals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `prods_deals` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `img` varchar(100) NOT NULL, `order_no` int NOT NULL, `sec_id` int NOT NULL, `store_id` int DEFAULT NULL, `prod_id` int DEFAULT NULL, `last_update_datetime` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `prods_deals` -- LOCK TABLES `prods_deals` WRITE; /*!40000 ALTER TABLE `prods_deals` DISABLE KEYS */; /*!40000 ALTER TABLE `prods_deals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `prods_suggest_food` -- DROP TABLE IF EXISTS `prods_suggest_food`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `prods_suggest_food` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `img` varchar(100) NOT NULL, `order_no` int NOT NULL, `sec_id` int NOT NULL, `store_id` int DEFAULT NULL, `prod_id` int DEFAULT NULL, `last_update_datetime` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `prods_suggest_food` -- LOCK TABLES `prods_suggest_food` WRITE; /*!40000 ALTER TABLE `prods_suggest_food` DISABLE KEYS */; /*!40000 ALTER TABLE `prods_suggest_food` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quicklly_orders` -- DROP TABLE IF EXISTS `quicklly_orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `quicklly_orders` ( `id` int NOT NULL AUTO_INCREMENT, `data_type` varchar(50) DEFAULT NULL, `order_date` datetime DEFAULT NULL, `order_id` int NOT NULL, `user_id` int NOT NULL, `order_status` int NOT NULL, `payment_status` int NOT NULL, `order_via` varchar(30) DEFAULT NULL, `coupon_code` varchar(30) DEFAULT NULL, `ship_email` varchar(100) DEFAULT NULL, `ship_pincode` varchar(15) DEFAULT NULL, `ship_state` varchar(50) DEFAULT NULL, `ship_city_id` varchar(50) DEFAULT NULL, `ship_mobile` varchar(50) DEFAULT NULL, `amount` varchar(15) DEFAULT NULL, `tax_value` varchar(10) DEFAULT NULL, `min_order_charge` varchar(10) DEFAULT NULL, `pkgcharge` varchar(5) DEFAULT NULL, `drivertip` varchar(10) DEFAULT NULL, `shipping_amount` varchar(8) DEFAULT NULL, `total_amount` varchar(15) DEFAULT NULL, `storeid` int DEFAULT NULL, `section` varchar(15) DEFAULT NULL, `price` varchar(10) DEFAULT NULL, `storename` varchar(100) DEFAULT NULL, `rating_date` datetime DEFAULT NULL, `rating` varchar(5) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quicklly_orders` -- LOCK TABLES `quicklly_orders` WRITE; /*!40000 ALTER TABLE `quicklly_orders` DISABLE KEYS */; /*!40000 ALTER TABLE `quicklly_orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quicklly_users` -- DROP TABLE IF EXISTS `quicklly_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `quicklly_users` ( `User_Id` int NOT NULL, `User_Type` int DEFAULT NULL, `Email` varchar(45) DEFAULT NULL, `Gender` varchar(15) DEFAULT NULL, `Fname` varchar(45) DEFAULT NULL, `Lname` varchar(45) DEFAULT NULL, `State` varchar(45) DEFAULT NULL, `City` varchar(45) DEFAULT NULL, `Pincode` int DEFAULT NULL, `Mobile` int DEFAULT NULL, `Phone` int DEFAULT NULL, `Old_Id` int DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quicklly_users` -- LOCK TABLES `quicklly_users` WRITE; /*!40000 ALTER TABLE `quicklly_users` DISABLE KEYS */; /*!40000 ALTER TABLE `quicklly_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rsvp_user` -- DROP TABLE IF EXISTS `rsvp_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `rsvp_user` ( `id` int NOT NULL AUTO_INCREMENT, `email` varchar(500) NOT NULL, `type` varchar(100) NOT NULL, `event_id` int NOT NULL, `event_name` varchar(1000) NOT NULL, `qty` int NOT NULL, `modifyon` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `booking_status` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=496 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rsvp_user` -- LOCK TABLES `rsvp_user` WRITE; /*!40000 ALTER TABLE `rsvp_user` DISABLE KEYS */; /*!40000 ALTER TABLE `rsvp_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `shef_checkout` -- DROP TABLE IF EXISTS `shef_checkout`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `shef_checkout` ( `id` int NOT NULL AUTO_INCREMENT, `uid` int DEFAULT NULL, `fname` varchar(100) DEFAULT NULL, `lname` varchar(100) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `uuid` varchar(100) DEFAULT NULL, `zipcode` varchar(50) DEFAULT NULL, `prodsJson` varchar(1000) DEFAULT NULL, `deliveryDate` date DEFAULT NULL, `shefId` varchar(100) DEFAULT NULL, `order_via` varchar(50) DEFAULT NULL, `created_on` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1371 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `shef_checkout` -- LOCK TABLES `shef_checkout` WRITE; /*!40000 ALTER TABLE `shef_checkout` DISABLE KEYS */; /*!40000 ALTER TABLE `shef_checkout` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `shef_user` -- DROP TABLE IF EXISTS `shef_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `shef_user` ( `id` int NOT NULL AUTO_INCREMENT, `uid` int DEFAULT NULL, `email` varchar(100) NOT NULL, `phone` varchar(50) DEFAULT NULL, `uuid` varchar(100) NOT NULL, `created_on` datetime NOT NULL, `email_sent_on` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2775 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `shef_user` -- LOCK TABLES `shef_user` WRITE; /*!40000 ALTER TABLE `shef_user` DISABLE KEYS */; /*!40000 ALTER TABLE `shef_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sl_area` -- DROP TABLE IF EXISTS `sl_area`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sl_area` ( `uid` int NOT NULL, `id` int NOT NULL, `zipcode` bigint NOT NULL, `area` longtext NOT NULL, `status` int NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sl_area` -- LOCK TABLES `sl_area` WRITE; /*!40000 ALTER TABLE `sl_area` DISABLE KEYS */; /*!40000 ALTER TABLE `sl_area` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sl_cities` -- DROP TABLE IF EXISTS `sl_cities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sl_cities` ( `city_id` int unsigned NOT NULL, `state_id` int unsigned NOT NULL, `city_name` varchar(100) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sl_cities` -- LOCK TABLES `sl_cities` WRITE; /*!40000 ALTER TABLE `sl_cities` DISABLE KEYS */; /*!40000 ALTER TABLE `sl_cities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sl_countries` -- DROP TABLE IF EXISTS `sl_countries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sl_countries` ( `country_id` int unsigned NOT NULL, `country_name` varchar(100) NOT NULL, `country_code` varchar(5) NOT NULL, `country_call_code` int unsigned NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sl_countries` -- LOCK TABLES `sl_countries` WRITE; /*!40000 ALTER TABLE `sl_countries` DISABLE KEYS */; /*!40000 ALTER TABLE `sl_countries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sl_states` -- DROP TABLE IF EXISTS `sl_states`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sl_states` ( `state_id` int unsigned NOT NULL, `country_id` int unsigned NOT NULL, `state_name` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sl_states` -- LOCK TABLES `sl_states` WRITE; /*!40000 ALTER TABLE `sl_states` DISABLE KEYS */; /*!40000 ALTER TABLE `sl_states` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sl_users` -- DROP TABLE IF EXISTS `sl_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sl_users` ( `uid` int unsigned NOT NULL AUTO_INCREMENT, `fname` varchar(500) NOT NULL, `lname` varchar(500) NOT NULL, `pass` varchar(50) NOT NULL, `companyname` varchar(100) NOT NULL, `emailid` varchar(150) NOT NULL, `mobile` bigint NOT NULL, `stores` int NOT NULL, `contactmode` varchar(500) NOT NULL, `companylocation` varchar(500) NOT NULL, `primecategory` text NOT NULL, `producttype` text NOT NULL, `restcatid` int NOT NULL, `grocerycatid` int NOT NULL, `jwelerycatid` int NOT NULL, `electcatid` int NOT NULL, `pin` int NOT NULL, `joindate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `storename` varchar(150) NOT NULL, `logo` varchar(255) NOT NULL, `companydesc` varchar(1200) NOT NULL, `contactperson` varchar(100) NOT NULL, `pdaddress` varchar(250) NOT NULL, `pdcity` varchar(150) NOT NULL, `pdstate` varchar(100) NOT NULL, `regaddress` varchar(300) NOT NULL, `regcity` varchar(150) NOT NULL, `regstate` varchar(100) NOT NULL, `regpin` varchar(8) NOT NULL, `zipcode` longtext NOT NULL, `ziparea` longtext NOT NULL, `pan` varchar(15) NOT NULL, `nameonpan` text NOT NULL, `dobonpan` date NOT NULL, `turnover` varchar(30) NOT NULL, `vatorcst` varchar(30) NOT NULL, `merchanttype` varchar(50) NOT NULL, `accountholder` varchar(100) NOT NULL, `bank` varchar(150) NOT NULL, `accountno` varchar(30) NOT NULL, `accounttype` text NOT NULL, `ifsc` char(25) NOT NULL, `bankbranchaddress` varchar(500) NOT NULL, `sign` varchar(100) NOT NULL, `status` int DEFAULT '0', `tab_user` tinyint DEFAULT '0', `mark_admin` tinyint NOT NULL, PRIMARY KEY (`uid`), UNIQUE KEY `emailid` (`emailid`), UNIQUE KEY `emailid_2` (`emailid`) ) ENGINE=InnoDB AUTO_INCREMENT=1534 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sl_users` -- LOCK TABLES `sl_users` WRITE; /*!40000 ALTER TABLE `sl_users` DISABLE KEYS */; /*!40000 ALTER TABLE `sl_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sl_users_mm` -- DROP TABLE IF EXISTS `sl_users_mm`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sl_users_mm` ( `uid` int unsigned NOT NULL AUTO_INCREMENT, `fname` varchar(500) NOT NULL, `lname` varchar(500) NOT NULL, `pass` varchar(50) NOT NULL, `companyname` varchar(100) NOT NULL, `emailid` varchar(150) NOT NULL, `mobile` bigint NOT NULL, `stores` int NOT NULL, `contactmode` varchar(500) NOT NULL, `companylocation` varchar(500) NOT NULL, `primecategory` text NOT NULL, `producttype` text NOT NULL, `restcatid` int NOT NULL, `grocerycatid` int NOT NULL, `jwelerycatid` int NOT NULL, `electcatid` int NOT NULL, `pin` int NOT NULL, `joindate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `storename` varchar(150) NOT NULL, `logo` varchar(255) NOT NULL, `companydesc` varchar(1200) NOT NULL, `contactperson` varchar(100) NOT NULL, `pdaddress` varchar(250) NOT NULL, `pdcity` varchar(150) NOT NULL, `pdstate` varchar(100) NOT NULL, `regaddress` varchar(300) NOT NULL, `regcity` varchar(150) NOT NULL, `regstate` varchar(100) NOT NULL, `regpin` varchar(8) NOT NULL, `zipcode` longtext NOT NULL, `ziparea` longtext NOT NULL, `pan` varchar(15) NOT NULL, `nameonpan` text NOT NULL, `dobonpan` date NOT NULL, `turnover` varchar(30) NOT NULL, `vatorcst` varchar(30) NOT NULL, `merchanttype` varchar(50) NOT NULL, `accountholder` varchar(100) NOT NULL, `bank` varchar(150) NOT NULL, `accountno` varchar(30) NOT NULL, `accounttype` text NOT NULL, `ifsc` char(25) NOT NULL, `bankbranchaddress` varchar(500) NOT NULL, `sign` varchar(100) NOT NULL, `status` int DEFAULT '0', `tab_user` tinyint DEFAULT '0', `mark_admin` tinyint NOT NULL, PRIMARY KEY (`uid`), UNIQUE KEY `emailid` (`emailid`), UNIQUE KEY `emailid_2` (`emailid`) ) ENGINE=InnoDB AUTO_INCREMENT=499 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sl_users_mm` -- LOCK TABLES `sl_users_mm` WRITE; /*!40000 ALTER TABLE `sl_users_mm` DISABLE KEYS */; /*!40000 ALTER TABLE `sl_users_mm` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store_city` -- DROP TABLE IF EXISTS `store_city`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store_city` ( `countryid` int NOT NULL, `countryname` varchar(100) DEFAULT NULL, `stateid` int NOT NULL, `statename` varchar(200) NOT NULL, `districtid` int NOT NULL, `districtname` varchar(200) NOT NULL, `areaid` int NOT NULL, `areaname` varchar(200) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store_city` -- LOCK TABLES `store_city` WRITE; /*!40000 ALTER TABLE `store_city` DISABLE KEYS */; /*!40000 ALTER TABLE `store_city` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store_delivery` -- DROP TABLE IF EXISTS `store_delivery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store_delivery` ( `uid` int DEFAULT NULL, `storeid` int NOT NULL, `sunday` varchar(15) NOT NULL DEFAULT 'Sunday', `monday` varchar(15) NOT NULL DEFAULT 'Monday', `tuesday` varchar(15) NOT NULL DEFAULT 'Tuesday', `wednesday` varchar(15) NOT NULL DEFAULT 'Wednesday', `thursday` varchar(15) NOT NULL DEFAULT 'Thursday', `friday` varchar(15) NOT NULL DEFAULT 'Friday', `saturday` varchar(15) NOT NULL DEFAULT 'Saturday', `suno` varchar(25) NOT NULL, `mono` varchar(25) NOT NULL, `tueo` varchar(25) NOT NULL, `wedo` varchar(25) NOT NULL, `thuo` varchar(25) NOT NULL, `frio` varchar(25) NOT NULL, `sato` varchar(25) NOT NULL, `sunc` varchar(25) NOT NULL, `monc` varchar(25) NOT NULL, `tuec` varchar(25) NOT NULL, `wedc` varchar(25) NOT NULL, `thuc` varchar(25) NOT NULL, `fric` varchar(25) NOT NULL, `satc` varchar(25) NOT NULL, PRIMARY KEY (`storeid`), KEY `storeid` (`storeid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store_delivery` -- LOCK TABLES `store_delivery` WRITE; /*!40000 ALTER TABLE `store_delivery` DISABLE KEYS */; /*!40000 ALTER TABLE `store_delivery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store_delivery_180424` -- DROP TABLE IF EXISTS `store_delivery_180424`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store_delivery_180424` ( `uid` int DEFAULT NULL, `storeid` int NOT NULL, `sunday` varchar(15) NOT NULL DEFAULT 'Sunday', `monday` varchar(15) NOT NULL DEFAULT 'Monday', `tuesday` varchar(15) NOT NULL DEFAULT 'Tuesday', `wednesday` varchar(15) NOT NULL DEFAULT 'Wednesday', `thursday` varchar(15) NOT NULL DEFAULT 'Thursday', `friday` varchar(15) NOT NULL DEFAULT 'Friday', `saturday` varchar(15) NOT NULL DEFAULT 'Saturday', `suno` varchar(25) NOT NULL, `mono` varchar(25) NOT NULL, `tueo` varchar(25) NOT NULL, `wedo` varchar(25) NOT NULL, `thuo` varchar(25) NOT NULL, `frio` varchar(25) NOT NULL, `sato` varchar(25) NOT NULL, `sunc` varchar(25) NOT NULL, `monc` varchar(25) NOT NULL, `tuec` varchar(25) NOT NULL, `wedc` varchar(25) NOT NULL, `thuc` varchar(25) NOT NULL, `fric` varchar(25) NOT NULL, `satc` varchar(25) NOT NULL, PRIMARY KEY (`storeid`), KEY `storeid` (`storeid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store_delivery_180424` -- LOCK TABLES `store_delivery_180424` WRITE; /*!40000 ALTER TABLE `store_delivery_180424` DISABLE KEYS */; /*!40000 ALTER TABLE `store_delivery_180424` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store_delivery_6aust` -- DROP TABLE IF EXISTS `store_delivery_6aust`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store_delivery_6aust` ( `uid` int DEFAULT NULL, `storeid` int NOT NULL, `sunday` varchar(15) NOT NULL DEFAULT 'Sunday', `monday` varchar(15) NOT NULL DEFAULT 'Monday', `tuesday` varchar(15) NOT NULL DEFAULT 'Tuesday', `wednesday` varchar(15) NOT NULL DEFAULT 'Wednesday', `thursday` varchar(15) NOT NULL DEFAULT 'Thursday', `friday` varchar(15) NOT NULL DEFAULT 'Friday', `saturday` varchar(15) NOT NULL DEFAULT 'Saturday', `suno` varchar(25) NOT NULL, `mono` varchar(25) NOT NULL, `tueo` varchar(25) NOT NULL, `wedo` varchar(25) NOT NULL, `thuo` varchar(25) NOT NULL, `frio` varchar(25) NOT NULL, `sato` varchar(25) NOT NULL, `sunc` varchar(25) NOT NULL, `monc` varchar(25) NOT NULL, `tuec` varchar(25) NOT NULL, `wedc` varchar(25) NOT NULL, `thuc` varchar(25) NOT NULL, `fric` varchar(25) NOT NULL, `satc` varchar(25) NOT NULL, PRIMARY KEY (`storeid`), KEY `storeid` (`storeid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store_delivery_6aust` -- LOCK TABLES `store_delivery_6aust` WRITE; /*!40000 ALTER TABLE `store_delivery_6aust` DISABLE KEYS */; /*!40000 ALTER TABLE `store_delivery_6aust` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store_delivery_bkp_16july` -- DROP TABLE IF EXISTS `store_delivery_bkp_16july`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store_delivery_bkp_16july` ( `uid` int DEFAULT NULL, `storeid` int NOT NULL, `sunday` varchar(15) NOT NULL DEFAULT 'Sunday', `monday` varchar(15) NOT NULL DEFAULT 'Monday', `tuesday` varchar(15) NOT NULL DEFAULT 'Tuesday', `wednesday` varchar(15) NOT NULL DEFAULT 'Wednesday', `thursday` varchar(15) NOT NULL DEFAULT 'Thursday', `friday` varchar(15) NOT NULL DEFAULT 'Friday', `saturday` varchar(15) NOT NULL DEFAULT 'Saturday', `suno` varchar(25) NOT NULL, `mono` varchar(25) NOT NULL, `tueo` varchar(25) NOT NULL, `wedo` varchar(25) NOT NULL, `thuo` varchar(25) NOT NULL, `frio` varchar(25) NOT NULL, `sato` varchar(25) NOT NULL, `sunc` varchar(25) NOT NULL, `monc` varchar(25) NOT NULL, `tuec` varchar(25) NOT NULL, `wedc` varchar(25) NOT NULL, `thuc` varchar(25) NOT NULL, `fric` varchar(25) NOT NULL, `satc` varchar(25) NOT NULL, PRIMARY KEY (`storeid`), KEY `storeid` (`storeid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store_delivery_bkp_16july` -- LOCK TABLES `store_delivery_bkp_16july` WRITE; /*!40000 ALTER TABLE `store_delivery_bkp_16july` DISABLE KEYS */; /*!40000 ALTER TABLE `store_delivery_bkp_16july` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store_delivery_bkp_4august` -- DROP TABLE IF EXISTS `store_delivery_bkp_4august`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store_delivery_bkp_4august` ( `uid` int DEFAULT NULL, `storeid` int NOT NULL, `sunday` varchar(15) NOT NULL DEFAULT 'Sunday', `monday` varchar(15) NOT NULL DEFAULT 'Monday', `tuesday` varchar(15) NOT NULL DEFAULT 'Tuesday', `wednesday` varchar(15) NOT NULL DEFAULT 'Wednesday', `thursday` varchar(15) NOT NULL DEFAULT 'Thursday', `friday` varchar(15) NOT NULL DEFAULT 'Friday', `saturday` varchar(15) NOT NULL DEFAULT 'Saturday', `suno` varchar(25) NOT NULL, `mono` varchar(25) NOT NULL, `tueo` varchar(25) NOT NULL, `wedo` varchar(25) NOT NULL, `thuo` varchar(25) NOT NULL, `frio` varchar(25) NOT NULL, `sato` varchar(25) NOT NULL, `sunc` varchar(25) NOT NULL, `monc` varchar(25) NOT NULL, `tuec` varchar(25) NOT NULL, `wedc` varchar(25) NOT NULL, `thuc` varchar(25) NOT NULL, `fric` varchar(25) NOT NULL, `satc` varchar(25) NOT NULL, PRIMARY KEY (`storeid`), KEY `storeid` (`storeid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store_delivery_bkp_4august` -- LOCK TABLES `store_delivery_bkp_4august` WRITE; /*!40000 ALTER TABLE `store_delivery_bkp_4august` DISABLE KEYS */; /*!40000 ALTER TABLE `store_delivery_bkp_4august` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store_delivery_live_temp` -- DROP TABLE IF EXISTS `store_delivery_live_temp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store_delivery_live_temp` ( `uid` int DEFAULT NULL, `storeid` int NOT NULL, `sunday` varchar(15) NOT NULL DEFAULT 'Sunday', `monday` varchar(15) NOT NULL DEFAULT 'Monday', `tuesday` varchar(15) NOT NULL DEFAULT 'Tuesday', `wednesday` varchar(15) NOT NULL DEFAULT 'Wednesday', `thursday` varchar(15) NOT NULL DEFAULT 'Thursday', `friday` varchar(15) NOT NULL DEFAULT 'Friday', `saturday` varchar(15) NOT NULL DEFAULT 'Saturday', `suno` varchar(25) NOT NULL, `mono` varchar(25) NOT NULL, `tueo` varchar(25) NOT NULL, `wedo` varchar(25) NOT NULL, `thuo` varchar(25) NOT NULL, `frio` varchar(25) NOT NULL, `sato` varchar(25) NOT NULL, `sunc` varchar(25) NOT NULL, `monc` varchar(25) NOT NULL, `tuec` varchar(25) NOT NULL, `wedc` varchar(25) NOT NULL, `thuc` varchar(25) NOT NULL, `fric` varchar(25) NOT NULL, `satc` varchar(25) NOT NULL, PRIMARY KEY (`storeid`), KEY `storeid` (`storeid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store_delivery_live_temp` -- LOCK TABLES `store_delivery_live_temp` WRITE; /*!40000 ALTER TABLE `store_delivery_live_temp` DISABLE KEYS */; /*!40000 ALTER TABLE `store_delivery_live_temp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store_delivery_seller` -- DROP TABLE IF EXISTS `store_delivery_seller`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store_delivery_seller` ( `uid` int DEFAULT NULL, `storeid` int NOT NULL, `sunday` varchar(15) NOT NULL DEFAULT 'Sunday', `monday` varchar(15) NOT NULL DEFAULT 'Monday', `tuesday` varchar(15) NOT NULL DEFAULT 'Tuesday', `wednesday` varchar(15) NOT NULL DEFAULT 'Wednesday', `thursday` varchar(15) NOT NULL DEFAULT 'Thursday', `friday` varchar(15) NOT NULL DEFAULT 'Friday', `saturday` varchar(15) NOT NULL DEFAULT 'Saturday', `suno` varchar(25) NOT NULL, `mono` varchar(25) NOT NULL, `tueo` varchar(25) NOT NULL, `wedo` varchar(25) NOT NULL, `thuo` varchar(25) NOT NULL, `frio` varchar(25) NOT NULL, `sato` varchar(25) NOT NULL, `sunc` varchar(25) NOT NULL, `monc` varchar(25) NOT NULL, `tuec` varchar(25) NOT NULL, `wedc` varchar(25) NOT NULL, `thuc` varchar(25) NOT NULL, `fric` varchar(25) NOT NULL, `satc` varchar(25) NOT NULL, PRIMARY KEY (`storeid`), KEY `storeid` (`storeid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store_delivery_seller` -- LOCK TABLES `store_delivery_seller` WRITE; /*!40000 ALTER TABLE `store_delivery_seller` DISABLE KEYS */; /*!40000 ALTER TABLE `store_delivery_seller` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store_pickup` -- DROP TABLE IF EXISTS `store_pickup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store_pickup` ( `uid` int DEFAULT NULL, `storeid` int NOT NULL, `sunday` varchar(15) NOT NULL DEFAULT 'Sunday', `monday` varchar(15) NOT NULL DEFAULT 'Monday', `tuesday` varchar(15) NOT NULL DEFAULT 'Tuesday', `wednesday` varchar(15) NOT NULL DEFAULT 'Wednesday', `thursday` varchar(15) NOT NULL DEFAULT 'Thursday', `friday` varchar(15) NOT NULL DEFAULT 'Friday', `saturday` varchar(15) NOT NULL DEFAULT 'Saturday', `suno` varchar(25) NOT NULL, `mono` varchar(25) NOT NULL, `tueo` varchar(25) NOT NULL, `wedo` varchar(25) NOT NULL, `thuo` varchar(25) NOT NULL, `frio` varchar(25) NOT NULL, `sato` varchar(25) NOT NULL, `sunc` varchar(25) NOT NULL, `monc` varchar(25) NOT NULL, `tuec` varchar(25) NOT NULL, `wedc` varchar(25) NOT NULL, `thuc` varchar(25) NOT NULL, `fric` varchar(25) NOT NULL, `satc` varchar(25) NOT NULL, PRIMARY KEY (`storeid`), KEY `storeid` (`storeid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store_pickup` -- LOCK TABLES `store_pickup` WRITE; /*!40000 ALTER TABLE `store_pickup` DISABLE KEYS */; /*!40000 ALTER TABLE `store_pickup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store_pp_6aust` -- DROP TABLE IF EXISTS `store_pp_6aust`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `store_pp_6aust` ( `uid` int DEFAULT NULL, `storeid` int NOT NULL, `sunday` varchar(15) NOT NULL DEFAULT 'Sunday', `monday` varchar(15) NOT NULL DEFAULT 'Monday', `tuesday` varchar(15) NOT NULL DEFAULT 'Tuesday', `wednesday` varchar(15) NOT NULL DEFAULT 'Wednesday', `thursday` varchar(15) NOT NULL DEFAULT 'Thursday', `friday` varchar(15) NOT NULL DEFAULT 'Friday', `saturday` varchar(15) NOT NULL DEFAULT 'Saturday', `suno` varchar(25) NOT NULL, `mono` varchar(25) NOT NULL, `tueo` varchar(25) NOT NULL, `wedo` varchar(25) NOT NULL, `thuo` varchar(25) NOT NULL, `frio` varchar(25) NOT NULL, `sato` varchar(25) NOT NULL, `sunc` varchar(25) NOT NULL, `monc` varchar(25) NOT NULL, `tuec` varchar(25) NOT NULL, `wedc` varchar(25) NOT NULL, `thuc` varchar(25) NOT NULL, `fric` varchar(25) NOT NULL, `satc` varchar(25) NOT NULL, PRIMARY KEY (`storeid`), KEY `storeid` (`storeid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store_pp_6aust` -- LOCK TABLES `store_pp_6aust` WRITE; /*!40000 ALTER TABLE `store_pp_6aust` DISABLE KEYS */; /*!40000 ALTER TABLE `store_pp_6aust` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stores` -- DROP TABLE IF EXISTS `stores`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `stores` ( `uid` varchar(5655) NOT NULL, `storeid` int NOT NULL AUTO_INCREMENT, `catid` varchar(10000) NOT NULL, `sectionid` varchar(500) NOT NULL, `storetype` varchar(500) NOT NULL, `storename` varchar(250) NOT NULL, `BT_storename` varchar(500) NOT NULL, `bt_merchant_type` varchar(100) NOT NULL, `slug` varchar(300) DEFAULT NULL, `chargeable` varchar(100) NOT NULL, `photo` varchar(500) NOT NULL, `icon` varchar(500) NOT NULL, `banner` varchar(500) NOT NULL, `rest_banner` varchar(1000) NOT NULL, `street_num` varchar(50) DEFAULT NULL, `street_name` varchar(200) DEFAULT NULL, `storeaddress` varchar(2500) NOT NULL, `str_country` varchar(100) DEFAULT NULL, `state` char(50) NOT NULL, `city` varchar(100) NOT NULL, `zone6` int NOT NULL, `hike6` varchar(10) NOT NULL, `zone2` mediumtext NOT NULL, `zone3` mediumtext NOT NULL, `zone4` varchar(500) NOT NULL, `zone5` varchar(10000) NOT NULL, `hike0` varchar(5) NOT NULL, `zone0` varchar(5) NOT NULL, `hike1` varchar(10) NOT NULL, `hike2` varchar(10) NOT NULL, `hike3` varchar(10) NOT NULL, `hike4` varchar(10) NOT NULL, `hike5` varchar(10) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(15) NOT NULL, `in_stock` int NOT NULL, `fee` double NOT NULL, `commission` double DEFAULT NULL, `special_commission` varchar(10) NOT NULL, `minimum` int NOT NULL, `fee_special` varchar(10) NOT NULL, `minimum_special` varchar(10) NOT NULL, `hour` int NOT NULL, `minute` int NOT NULL, `area` longtext NOT NULL, `description` varchar(5000) NOT NULL, `meta_title` varchar(300) NOT NULL, `meta_keyword` mediumtext NOT NULL, `meta_description` varchar(1000) NOT NULL, `h1` varchar(300) NOT NULL DEFAULT '', `meta_title_food` varchar(300) NOT NULL DEFAULT '', `meta_keyword_food` mediumtext NOT NULL, `meta_description_food` varchar(1000) NOT NULL DEFAULT '', `h1_food` varchar(300) NOT NULL DEFAULT '', `meta_title_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_keyword_tiffin` mediumtext NOT NULL, `meta_description_tiffin` varchar(1000) NOT NULL DEFAULT '', `h1_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_title_meal` varchar(300) NOT NULL DEFAULT '', `meta_keyword_meal` mediumtext NOT NULL, `meta_description_meal` varchar(1000) NOT NULL DEFAULT '', `h1_meal` varchar(300) NOT NULL DEFAULT '', `meta_title_catering` varchar(300) NOT NULL DEFAULT '', `meta_keyword_catering` mediumtext NOT NULL, `meta_description_catering` varchar(1000) NOT NULL DEFAULT '', `h1_catering` varchar(300) NOT NULL DEFAULT '', `meta_title_alcohol` varchar(300) NOT NULL DEFAULT '', `meta_keyword_alcohol` mediumtext NOT NULL, `meta_description_alcohol` varchar(1000) NOT NULL DEFAULT '', `h1_alcohol` varchar(300) NOT NULL DEFAULT '', `content` mediumtext NOT NULL, `display_order` int NOT NULL, `post_date` datetime NOT NULL, `status` int DEFAULT NULL, `photo_350x350` varchar(300) NOT NULL, `photo_370x230` varchar(300) NOT NULL, `banner_1600x250` varchar(100) DEFAULT NULL, `banner_1200x300` varchar(100) DEFAULT NULL, `short_desp` varchar(300) NOT NULL, `cost_for_two` varchar(100) NOT NULL, `open_time` time NOT NULL, `close_time` time NOT NULL, `send_sms` int NOT NULL DEFAULT '0', `make_call` int NOT NULL DEFAULT '0', `send_fax` int NOT NULL DEFAULT '0', `sms_phone_no` varchar(50) NOT NULL DEFAULT '', `call_phone_no` varchar(50) NOT NULL DEFAULT '', `fax_phone_no` varchar(50) NOT NULL DEFAULT '', `by_pass_zipcode` bit(1) NOT NULL DEFAULT b'0', `storeNewLabel` tinyint(1) NOT NULL DEFAULT '0', `skip_store` tinyint DEFAULT '0', `tab_store` tinyint DEFAULT '0', `status_type` int DEFAULT NULL, `mm_store_id` text, `store_mme_flg` varchar(50) DEFAULT NULL, `mm_cuisines` text, `mm_zipcode` varchar(50) DEFAULT NULL, `mm_latitude` varchar(100) DEFAULT NULL, `mm_longitude` varchar(100) DEFAULT NULL, `store_icon_url` text, `store_food_photo_url` text, `banner_ads` varchar(1000) NOT NULL, PRIMARY KEY (`storeid`), UNIQUE KEY `storeid` (`storeid`), KEY `storeid_2` (`storeid`), KEY `sectionid` (`sectionid`), KEY `status` (`status`), KEY `storename` (`storename`,`BT_storename`,`chargeable`), KEY `photo` (`photo`,`icon`), KEY `catid` (`catid`(3072)), KEY `slug` (`slug`,`banner`), KEY `storeid_3` (`storeid`,`sectionid`,`storename`,`bt_merchant_type`), KEY `BT_storename` (`BT_storename`,`slug`), KEY `status_type` (`status_type`), KEY `storeid_4` (`storeid`,`sectionid`,`storename`,`photo`,`by_pass_zipcode`), KEY `skip_store` (`skip_store`), KEY `display_order` (`display_order`) ) ENGINE=InnoDB AUTO_INCREMENT=112894 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stores` -- LOCK TABLES `stores` WRITE; /*!40000 ALTER TABLE `stores` DISABLE KEYS */; /*!40000 ALTER TABLE `stores` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stores_bkp41824` -- DROP TABLE IF EXISTS `stores_bkp41824`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `stores_bkp41824` ( `uid` varchar(5655) NOT NULL, `storeid` int NOT NULL AUTO_INCREMENT, `catid` varchar(10000) NOT NULL, `sectionid` varchar(500) NOT NULL, `storetype` varchar(500) NOT NULL, `storename` varchar(250) NOT NULL, `BT_storename` varchar(500) NOT NULL, `bt_merchant_type` varchar(100) NOT NULL, `slug` varchar(300) DEFAULT NULL, `chargeable` varchar(100) NOT NULL, `photo` varchar(500) NOT NULL, `icon` varchar(500) NOT NULL, `banner` varchar(500) NOT NULL, `rest_banner` varchar(1000) NOT NULL, `street_num` varchar(50) DEFAULT NULL, `street_name` varchar(200) DEFAULT NULL, `storeaddress` varchar(2500) NOT NULL, `str_country` varchar(100) DEFAULT NULL, `state` char(50) NOT NULL, `city` varchar(100) NOT NULL, `zone6` int NOT NULL, `hike6` varchar(10) NOT NULL, `zone2` mediumtext NOT NULL, `zone3` mediumtext NOT NULL, `zone4` varchar(500) NOT NULL, `zone5` varchar(10000) NOT NULL, `hike0` varchar(5) NOT NULL, `zone0` varchar(5) NOT NULL, `hike1` varchar(10) NOT NULL, `hike2` varchar(10) NOT NULL, `hike3` varchar(10) NOT NULL, `hike4` varchar(10) NOT NULL, `hike5` varchar(10) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(15) NOT NULL, `in_stock` int NOT NULL, `fee` double NOT NULL, `commission` double DEFAULT NULL, `special_commission` varchar(10) NOT NULL, `minimum` int NOT NULL, `fee_special` varchar(10) NOT NULL, `minimum_special` varchar(10) NOT NULL, `hour` int NOT NULL, `minute` int NOT NULL, `area` longtext NOT NULL, `description` varchar(5000) NOT NULL, `meta_title` varchar(300) NOT NULL, `meta_keyword` mediumtext NOT NULL, `meta_description` varchar(1000) NOT NULL, `h1` varchar(300) NOT NULL DEFAULT '', `meta_title_food` varchar(300) NOT NULL DEFAULT '', `meta_keyword_food` mediumtext NOT NULL, `meta_description_food` varchar(1000) NOT NULL DEFAULT '', `h1_food` varchar(300) NOT NULL DEFAULT '', `meta_title_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_keyword_tiffin` mediumtext NOT NULL, `meta_description_tiffin` varchar(1000) NOT NULL DEFAULT '', `h1_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_title_meal` varchar(300) NOT NULL DEFAULT '', `meta_keyword_meal` mediumtext NOT NULL, `meta_description_meal` varchar(1000) NOT NULL DEFAULT '', `h1_meal` varchar(300) NOT NULL DEFAULT '', `meta_title_catering` varchar(300) NOT NULL DEFAULT '', `meta_keyword_catering` mediumtext NOT NULL, `meta_description_catering` varchar(1000) NOT NULL DEFAULT '', `h1_catering` varchar(300) NOT NULL DEFAULT '', `meta_title_alcohol` varchar(300) NOT NULL DEFAULT '', `meta_keyword_alcohol` mediumtext NOT NULL, `meta_description_alcohol` varchar(1000) NOT NULL DEFAULT '', `h1_alcohol` varchar(300) NOT NULL DEFAULT '', `content` mediumtext NOT NULL, `display_order` int NOT NULL, `post_date` datetime NOT NULL, `status` int DEFAULT NULL, `photo_350x350` varchar(300) NOT NULL, `photo_370x230` varchar(300) NOT NULL, `banner_1600x250` varchar(100) DEFAULT NULL, `banner_1200x300` varchar(100) DEFAULT NULL, `short_desp` varchar(300) NOT NULL, `cost_for_two` varchar(100) NOT NULL, `open_time` time NOT NULL, `close_time` time NOT NULL, `send_sms` int NOT NULL DEFAULT '0', `make_call` int NOT NULL DEFAULT '0', `send_fax` int NOT NULL DEFAULT '0', `sms_phone_no` varchar(50) NOT NULL DEFAULT '', `call_phone_no` varchar(50) NOT NULL DEFAULT '', `fax_phone_no` varchar(50) NOT NULL DEFAULT '', `by_pass_zipcode` bit(1) NOT NULL DEFAULT b'0', `storeNewLabel` tinyint(1) NOT NULL DEFAULT '0', `skip_store` tinyint DEFAULT '0', `tab_store` tinyint DEFAULT '0', `status_type` int DEFAULT NULL, `mm_store_id` text CHARACTER SET latin1 COLLATE latin1_swedish_ci, `store_mme_flg` varchar(255) DEFAULT NULL, `mm_cuisines` text, `mm_zipcode` varchar(255) DEFAULT NULL, `mm_latitude` varchar(255) DEFAULT NULL, `mm_longitude` varchar(255) DEFAULT NULL, `store_icon_url` text, `store_food_photo_url` text, PRIMARY KEY (`storeid`), UNIQUE KEY `storeid` (`storeid`), KEY `storeid_2` (`storeid`), KEY `sectionid` (`sectionid`), KEY `status` (`status`), KEY `storename` (`storename`,`BT_storename`,`chargeable`), KEY `photo` (`photo`,`icon`), KEY `catid` (`catid`(3072)), KEY `slug` (`slug`,`banner`), KEY `storeid_3` (`storeid`,`sectionid`,`storename`,`bt_merchant_type`), KEY `BT_storename` (`BT_storename`,`slug`), KEY `status_type` (`status_type`), KEY `storeid_4` (`storeid`,`sectionid`,`storename`,`photo`,`by_pass_zipcode`), KEY `skip_store` (`skip_store`), KEY `display_order` (`display_order`) ) ENGINE=InnoDB AUTO_INCREMENT=1902 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stores_bkp41824` -- LOCK TABLES `stores_bkp41824` WRITE; /*!40000 ALTER TABLE `stores_bkp41824` DISABLE KEYS */; /*!40000 ALTER TABLE `stores_bkp41824` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stores_bkp_1aglvdt` -- DROP TABLE IF EXISTS `stores_bkp_1aglvdt`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `stores_bkp_1aglvdt` ( `uid` varchar(5655) NOT NULL, `storeid` int NOT NULL AUTO_INCREMENT, `catid` varchar(10000) NOT NULL, `sectionid` varchar(500) NOT NULL, `storetype` varchar(500) NOT NULL, `storename` varchar(250) NOT NULL, `BT_storename` varchar(500) NOT NULL, `bt_merchant_type` varchar(100) NOT NULL, `slug` varchar(300) DEFAULT NULL, `chargeable` varchar(100) NOT NULL, `photo` varchar(500) NOT NULL, `icon` varchar(500) NOT NULL, `banner` varchar(500) NOT NULL, `rest_banner` varchar(1000) NOT NULL, `street_num` varchar(50) DEFAULT NULL, `street_name` varchar(200) DEFAULT NULL, `storeaddress` varchar(2500) NOT NULL, `str_country` varchar(100) DEFAULT NULL, `state` char(50) NOT NULL, `city` varchar(100) NOT NULL, `zone6` int NOT NULL, `hike6` varchar(10) NOT NULL, `zone2` mediumtext NOT NULL, `zone3` mediumtext NOT NULL, `zone4` varchar(500) NOT NULL, `zone5` varchar(10000) NOT NULL, `hike0` varchar(5) NOT NULL, `zone0` varchar(5) NOT NULL, `hike1` varchar(10) NOT NULL, `hike2` varchar(10) NOT NULL, `hike3` varchar(10) NOT NULL, `hike4` varchar(10) NOT NULL, `hike5` varchar(10) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(15) NOT NULL, `in_stock` int NOT NULL, `fee` double NOT NULL, `commission` double DEFAULT NULL, `special_commission` varchar(10) NOT NULL, `minimum` int NOT NULL, `fee_special` varchar(10) NOT NULL, `minimum_special` varchar(10) NOT NULL, `hour` int NOT NULL, `minute` int NOT NULL, `area` longtext NOT NULL, `description` varchar(5000) NOT NULL, `meta_title` varchar(300) NOT NULL, `meta_keyword` mediumtext NOT NULL, `meta_description` varchar(1000) NOT NULL, `h1` varchar(300) NOT NULL DEFAULT '', `meta_title_food` varchar(300) NOT NULL DEFAULT '', `meta_keyword_food` mediumtext NOT NULL, `meta_description_food` varchar(1000) NOT NULL DEFAULT '', `h1_food` varchar(300) NOT NULL DEFAULT '', `meta_title_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_keyword_tiffin` mediumtext NOT NULL, `meta_description_tiffin` varchar(1000) NOT NULL DEFAULT '', `h1_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_title_meal` varchar(300) NOT NULL DEFAULT '', `meta_keyword_meal` mediumtext NOT NULL, `meta_description_meal` varchar(1000) NOT NULL DEFAULT '', `h1_meal` varchar(300) NOT NULL DEFAULT '', `meta_title_catering` varchar(300) NOT NULL DEFAULT '', `meta_keyword_catering` mediumtext NOT NULL, `meta_description_catering` varchar(1000) NOT NULL DEFAULT '', `h1_catering` varchar(300) NOT NULL DEFAULT '', `meta_title_alcohol` varchar(300) NOT NULL DEFAULT '', `meta_keyword_alcohol` mediumtext NOT NULL, `meta_description_alcohol` varchar(1000) NOT NULL DEFAULT '', `h1_alcohol` varchar(300) NOT NULL DEFAULT '', `content` mediumtext NOT NULL, `display_order` int NOT NULL, `post_date` datetime NOT NULL, `status` int DEFAULT NULL, `photo_350x350` varchar(300) NOT NULL, `photo_370x230` varchar(300) NOT NULL, `banner_1600x250` varchar(100) DEFAULT NULL, `banner_1200x300` varchar(100) DEFAULT NULL, `short_desp` varchar(300) NOT NULL, `cost_for_two` varchar(100) NOT NULL, `open_time` time NOT NULL, `close_time` time NOT NULL, `send_sms` int NOT NULL DEFAULT '0', `make_call` int NOT NULL DEFAULT '0', `send_fax` int NOT NULL DEFAULT '0', `sms_phone_no` varchar(50) NOT NULL DEFAULT '', `call_phone_no` varchar(50) NOT NULL DEFAULT '', `fax_phone_no` varchar(50) NOT NULL DEFAULT '', `by_pass_zipcode` bit(1) NOT NULL DEFAULT b'0', `storeNewLabel` tinyint(1) NOT NULL DEFAULT '0', `skip_store` tinyint DEFAULT '0', `tab_store` tinyint DEFAULT '0', `status_type` int DEFAULT NULL, `mm_store_id` text, `store_mme_flg` varchar(50) DEFAULT NULL, `mm_cuisines` text, `mm_zipcode` varchar(50) DEFAULT NULL, `mm_latitude` varchar(100) DEFAULT NULL, `mm_longitude` varchar(100) DEFAULT NULL, `store_icon_url` text, `store_food_photo_url` text, PRIMARY KEY (`storeid`), UNIQUE KEY `storeid` (`storeid`), KEY `storeid_2` (`storeid`), KEY `sectionid` (`sectionid`), KEY `status` (`status`), KEY `storename` (`storename`,`BT_storename`,`chargeable`), KEY `photo` (`photo`,`icon`), KEY `catid` (`catid`(3072)), KEY `slug` (`slug`,`banner`), KEY `storeid_3` (`storeid`,`sectionid`,`storename`,`bt_merchant_type`), KEY `BT_storename` (`BT_storename`,`slug`), KEY `status_type` (`status_type`), KEY `storeid_4` (`storeid`,`sectionid`,`storename`,`photo`,`by_pass_zipcode`), KEY `skip_store` (`skip_store`), KEY `display_order` (`display_order`) ) ENGINE=InnoDB AUTO_INCREMENT=112894 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stores_bkp_1aglvdt` -- LOCK TABLES `stores_bkp_1aglvdt` WRITE; /*!40000 ALTER TABLE `stores_bkp_1aglvdt` DISABLE KEYS */; /*!40000 ALTER TABLE `stores_bkp_1aglvdt` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stores_bkp_4august` -- DROP TABLE IF EXISTS `stores_bkp_4august`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `stores_bkp_4august` ( `uid` varchar(5655) NOT NULL, `storeid` int NOT NULL AUTO_INCREMENT, `catid` varchar(10000) NOT NULL, `sectionid` varchar(500) NOT NULL, `storetype` varchar(500) NOT NULL, `storename` varchar(250) NOT NULL, `BT_storename` varchar(500) NOT NULL, `bt_merchant_type` varchar(100) NOT NULL, `slug` varchar(300) DEFAULT NULL, `chargeable` varchar(100) NOT NULL, `photo` varchar(500) NOT NULL, `icon` varchar(500) NOT NULL, `banner` varchar(500) NOT NULL, `rest_banner` varchar(1000) NOT NULL, `street_num` varchar(50) DEFAULT NULL, `street_name` varchar(200) DEFAULT NULL, `storeaddress` varchar(2500) NOT NULL, `str_country` varchar(100) DEFAULT NULL, `state` char(50) NOT NULL, `city` varchar(100) NOT NULL, `zone6` int NOT NULL, `hike6` varchar(10) NOT NULL, `zone2` mediumtext NOT NULL, `zone3` mediumtext NOT NULL, `zone4` varchar(500) NOT NULL, `zone5` varchar(10000) NOT NULL, `hike0` varchar(5) NOT NULL, `zone0` varchar(5) NOT NULL, `hike1` varchar(10) NOT NULL, `hike2` varchar(10) NOT NULL, `hike3` varchar(10) NOT NULL, `hike4` varchar(10) NOT NULL, `hike5` varchar(10) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(15) NOT NULL, `in_stock` int NOT NULL, `fee` double NOT NULL, `commission` double DEFAULT NULL, `special_commission` varchar(10) NOT NULL, `minimum` int NOT NULL, `fee_special` varchar(10) NOT NULL, `minimum_special` varchar(10) NOT NULL, `hour` int NOT NULL, `minute` int NOT NULL, `area` longtext NOT NULL, `description` varchar(5000) NOT NULL, `meta_title` varchar(300) NOT NULL, `meta_keyword` mediumtext NOT NULL, `meta_description` varchar(1000) NOT NULL, `h1` varchar(300) NOT NULL DEFAULT '', `meta_title_food` varchar(300) NOT NULL DEFAULT '', `meta_keyword_food` mediumtext NOT NULL, `meta_description_food` varchar(1000) NOT NULL DEFAULT '', `h1_food` varchar(300) NOT NULL DEFAULT '', `meta_title_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_keyword_tiffin` mediumtext NOT NULL, `meta_description_tiffin` varchar(1000) NOT NULL DEFAULT '', `h1_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_title_meal` varchar(300) NOT NULL DEFAULT '', `meta_keyword_meal` mediumtext NOT NULL, `meta_description_meal` varchar(1000) NOT NULL DEFAULT '', `h1_meal` varchar(300) NOT NULL DEFAULT '', `meta_title_catering` varchar(300) NOT NULL DEFAULT '', `meta_keyword_catering` mediumtext NOT NULL, `meta_description_catering` varchar(1000) NOT NULL DEFAULT '', `h1_catering` varchar(300) NOT NULL DEFAULT '', `meta_title_alcohol` varchar(300) NOT NULL DEFAULT '', `meta_keyword_alcohol` mediumtext NOT NULL, `meta_description_alcohol` varchar(1000) NOT NULL DEFAULT '', `h1_alcohol` varchar(300) NOT NULL DEFAULT '', `content` mediumtext NOT NULL, `display_order` int NOT NULL, `post_date` datetime NOT NULL, `status` int DEFAULT NULL, `photo_350x350` varchar(300) NOT NULL, `photo_370x230` varchar(300) NOT NULL, `banner_1600x250` varchar(100) DEFAULT NULL, `banner_1200x300` varchar(100) DEFAULT NULL, `short_desp` varchar(300) NOT NULL, `cost_for_two` varchar(100) NOT NULL, `open_time` time NOT NULL, `close_time` time NOT NULL, `send_sms` int NOT NULL DEFAULT '0', `make_call` int NOT NULL DEFAULT '0', `send_fax` int NOT NULL DEFAULT '0', `sms_phone_no` varchar(50) NOT NULL DEFAULT '', `call_phone_no` varchar(50) NOT NULL DEFAULT '', `fax_phone_no` varchar(50) NOT NULL DEFAULT '', `by_pass_zipcode` bit(1) NOT NULL DEFAULT b'0', `storeNewLabel` tinyint(1) NOT NULL DEFAULT '0', `skip_store` tinyint DEFAULT '0', `tab_store` tinyint DEFAULT '0', `status_type` int DEFAULT NULL, `mm_store_id` text, `store_mme_flg` varchar(50) DEFAULT NULL, `mm_cuisines` text, `mm_zipcode` varchar(50) DEFAULT NULL, `mm_latitude` varchar(100) DEFAULT NULL, `mm_longitude` varchar(100) DEFAULT NULL, `store_icon_url` text, `store_food_photo_url` text, PRIMARY KEY (`storeid`), UNIQUE KEY `storeid` (`storeid`), KEY `storeid_2` (`storeid`), KEY `sectionid` (`sectionid`), KEY `status` (`status`), KEY `storename` (`storename`,`BT_storename`,`chargeable`), KEY `photo` (`photo`,`icon`), KEY `catid` (`catid`(3072)), KEY `slug` (`slug`,`banner`), KEY `storeid_3` (`storeid`,`sectionid`,`storename`,`bt_merchant_type`), KEY `BT_storename` (`BT_storename`,`slug`), KEY `status_type` (`status_type`), KEY `storeid_4` (`storeid`,`sectionid`,`storename`,`photo`,`by_pass_zipcode`), KEY `skip_store` (`skip_store`), KEY `display_order` (`display_order`) ) ENGINE=InnoDB AUTO_INCREMENT=112894 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stores_bkp_4august` -- LOCK TABLES `stores_bkp_4august` WRITE; /*!40000 ALTER TABLE `stores_bkp_4august` DISABLE KEYS */; /*!40000 ALTER TABLE `stores_bkp_4august` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stores_cats` -- DROP TABLE IF EXISTS `stores_cats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `stores_cats` ( `id` int NOT NULL AUTO_INCREMENT, `storeid` int NOT NULL, `catid` int NOT NULL, PRIMARY KEY (`id`), KEY `storeid` (`storeid`), CONSTRAINT `stores_cats_ibfk_1` FOREIGN KEY (`storeid`) REFERENCES `stores` (`storeid`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=801 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stores_cats` -- LOCK TABLES `stores_cats` WRITE; /*!40000 ALTER TABLE `stores_cats` DISABLE KEYS */; /*!40000 ALTER TABLE `stores_cats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stores_fxslg1ast` -- DROP TABLE IF EXISTS `stores_fxslg1ast`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `stores_fxslg1ast` ( `uid` varchar(5655) NOT NULL, `storeid` int NOT NULL AUTO_INCREMENT, `catid` varchar(10000) NOT NULL, `sectionid` varchar(500) NOT NULL, `storetype` varchar(500) NOT NULL, `storename` varchar(250) NOT NULL, `BT_storename` varchar(500) NOT NULL, `bt_merchant_type` varchar(100) NOT NULL, `slug` varchar(300) DEFAULT NULL, `chargeable` varchar(100) NOT NULL, `photo` varchar(500) NOT NULL, `icon` varchar(500) NOT NULL, `banner` varchar(500) NOT NULL, `rest_banner` varchar(1000) NOT NULL, `street_num` varchar(50) DEFAULT NULL, `street_name` varchar(200) DEFAULT NULL, `storeaddress` varchar(2500) NOT NULL, `str_country` varchar(100) DEFAULT NULL, `state` char(50) NOT NULL, `city` varchar(100) NOT NULL, `zone6` int NOT NULL, `hike6` varchar(10) NOT NULL, `zone2` mediumtext NOT NULL, `zone3` mediumtext NOT NULL, `zone4` varchar(500) NOT NULL, `zone5` varchar(10000) NOT NULL, `hike0` varchar(5) NOT NULL, `zone0` varchar(5) NOT NULL, `hike1` varchar(10) NOT NULL, `hike2` varchar(10) NOT NULL, `hike3` varchar(10) NOT NULL, `hike4` varchar(10) NOT NULL, `hike5` varchar(10) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(15) NOT NULL, `in_stock` int NOT NULL, `fee` double NOT NULL, `commission` double DEFAULT NULL, `special_commission` varchar(10) NOT NULL, `minimum` int NOT NULL, `fee_special` varchar(10) NOT NULL, `minimum_special` varchar(10) NOT NULL, `hour` int NOT NULL, `minute` int NOT NULL, `area` longtext NOT NULL, `description` varchar(5000) NOT NULL, `meta_title` varchar(300) NOT NULL, `meta_keyword` mediumtext NOT NULL, `meta_description` varchar(1000) NOT NULL, `h1` varchar(300) NOT NULL DEFAULT '', `meta_title_food` varchar(300) NOT NULL DEFAULT '', `meta_keyword_food` mediumtext NOT NULL, `meta_description_food` varchar(1000) NOT NULL DEFAULT '', `h1_food` varchar(300) NOT NULL DEFAULT '', `meta_title_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_keyword_tiffin` mediumtext NOT NULL, `meta_description_tiffin` varchar(1000) NOT NULL DEFAULT '', `h1_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_title_meal` varchar(300) NOT NULL DEFAULT '', `meta_keyword_meal` mediumtext NOT NULL, `meta_description_meal` varchar(1000) NOT NULL DEFAULT '', `h1_meal` varchar(300) NOT NULL DEFAULT '', `meta_title_catering` varchar(300) NOT NULL DEFAULT '', `meta_keyword_catering` mediumtext NOT NULL, `meta_description_catering` varchar(1000) NOT NULL DEFAULT '', `h1_catering` varchar(300) NOT NULL DEFAULT '', `meta_title_alcohol` varchar(300) NOT NULL DEFAULT '', `meta_keyword_alcohol` mediumtext NOT NULL, `meta_description_alcohol` varchar(1000) NOT NULL DEFAULT '', `h1_alcohol` varchar(300) NOT NULL DEFAULT '', `content` mediumtext NOT NULL, `display_order` int NOT NULL, `post_date` datetime NOT NULL, `status` int DEFAULT NULL, `photo_350x350` varchar(300) NOT NULL, `photo_370x230` varchar(300) NOT NULL, `banner_1600x250` varchar(100) DEFAULT NULL, `banner_1200x300` varchar(100) DEFAULT NULL, `short_desp` varchar(300) NOT NULL, `cost_for_two` varchar(100) NOT NULL, `open_time` time NOT NULL, `close_time` time NOT NULL, `send_sms` int NOT NULL DEFAULT '0', `make_call` int NOT NULL DEFAULT '0', `send_fax` int NOT NULL DEFAULT '0', `sms_phone_no` varchar(50) NOT NULL DEFAULT '', `call_phone_no` varchar(50) NOT NULL DEFAULT '', `fax_phone_no` varchar(50) NOT NULL DEFAULT '', `by_pass_zipcode` bit(1) NOT NULL DEFAULT b'0', `storeNewLabel` tinyint(1) NOT NULL DEFAULT '0', `skip_store` tinyint DEFAULT '0', `tab_store` tinyint DEFAULT '0', `status_type` int DEFAULT NULL, `mm_store_id` text, `store_mme_flg` varchar(50) DEFAULT NULL, `mm_cuisines` text, `mm_zipcode` varchar(50) DEFAULT NULL, `mm_latitude` varchar(100) DEFAULT NULL, `mm_longitude` varchar(100) DEFAULT NULL, `store_icon_url` text, `store_food_photo_url` text, PRIMARY KEY (`storeid`), UNIQUE KEY `storeid` (`storeid`), KEY `storeid_2` (`storeid`), KEY `sectionid` (`sectionid`), KEY `status` (`status`), KEY `storename` (`storename`,`BT_storename`,`chargeable`), KEY `photo` (`photo`,`icon`), KEY `catid` (`catid`(3072)), KEY `slug` (`slug`,`banner`), KEY `storeid_3` (`storeid`,`sectionid`,`storename`,`bt_merchant_type`), KEY `BT_storename` (`BT_storename`,`slug`), KEY `status_type` (`status_type`), KEY `storeid_4` (`storeid`,`sectionid`,`storename`,`photo`,`by_pass_zipcode`), KEY `skip_store` (`skip_store`), KEY `display_order` (`display_order`) ) ENGINE=InnoDB AUTO_INCREMENT=112894 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stores_fxslg1ast` -- LOCK TABLES `stores_fxslg1ast` WRITE; /*!40000 ALTER TABLE `stores_fxslg1ast` DISABLE KEYS */; /*!40000 ALTER TABLE `stores_fxslg1ast` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stores_live_temp` -- DROP TABLE IF EXISTS `stores_live_temp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `stores_live_temp` ( `uid` varchar(5655) NOT NULL, `storeid` int NOT NULL AUTO_INCREMENT, `catid` varchar(10000) NOT NULL, `sectionid` varchar(500) NOT NULL, `storetype` varchar(500) NOT NULL, `storename` varchar(250) NOT NULL, `BT_storename` varchar(500) NOT NULL, `bt_merchant_type` varchar(100) NOT NULL, `slug` varchar(300) DEFAULT NULL, `chargeable` varchar(100) NOT NULL, `photo` varchar(500) NOT NULL, `icon` varchar(500) NOT NULL, `banner` varchar(500) NOT NULL, `rest_banner` varchar(1000) NOT NULL, `street_num` varchar(50) DEFAULT NULL, `street_name` varchar(200) DEFAULT NULL, `storeaddress` varchar(2500) NOT NULL, `str_country` varchar(100) DEFAULT NULL, `state` char(50) NOT NULL, `city` varchar(100) NOT NULL, `zone6` int NOT NULL, `hike6` varchar(10) NOT NULL, `zone2` mediumtext NOT NULL, `zone3` mediumtext NOT NULL, `zone4` varchar(500) NOT NULL, `zone5` varchar(10000) NOT NULL, `hike0` varchar(5) NOT NULL, `zone0` varchar(5) NOT NULL, `hike1` varchar(10) NOT NULL, `hike2` varchar(10) NOT NULL, `hike3` varchar(10) NOT NULL, `hike4` varchar(10) NOT NULL, `hike5` varchar(10) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(15) NOT NULL, `in_stock` int NOT NULL, `fee` double NOT NULL, `commission` double DEFAULT NULL, `special_commission` varchar(10) NOT NULL, `minimum` int NOT NULL, `fee_special` varchar(10) NOT NULL, `minimum_special` varchar(10) NOT NULL, `hour` int NOT NULL, `minute` int NOT NULL, `area` longtext NOT NULL, `description` varchar(5000) NOT NULL, `meta_title` varchar(300) NOT NULL, `meta_keyword` mediumtext NOT NULL, `meta_description` varchar(1000) NOT NULL, `h1` varchar(300) NOT NULL DEFAULT '', `meta_title_food` varchar(300) NOT NULL DEFAULT '', `meta_keyword_food` mediumtext NOT NULL, `meta_description_food` varchar(1000) NOT NULL DEFAULT '', `h1_food` varchar(300) NOT NULL DEFAULT '', `meta_title_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_keyword_tiffin` mediumtext NOT NULL, `meta_description_tiffin` varchar(1000) NOT NULL DEFAULT '', `h1_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_title_meal` varchar(300) NOT NULL DEFAULT '', `meta_keyword_meal` mediumtext NOT NULL, `meta_description_meal` varchar(1000) NOT NULL DEFAULT '', `h1_meal` varchar(300) NOT NULL DEFAULT '', `meta_title_catering` varchar(300) NOT NULL DEFAULT '', `meta_keyword_catering` mediumtext NOT NULL, `meta_description_catering` varchar(1000) NOT NULL DEFAULT '', `h1_catering` varchar(300) NOT NULL DEFAULT '', `meta_title_alcohol` varchar(300) NOT NULL DEFAULT '', `meta_keyword_alcohol` mediumtext NOT NULL, `meta_description_alcohol` varchar(1000) NOT NULL DEFAULT '', `h1_alcohol` varchar(300) NOT NULL DEFAULT '', `content` mediumtext NOT NULL, `display_order` int NOT NULL, `post_date` datetime NOT NULL, `status` int DEFAULT NULL, `photo_350x350` varchar(300) NOT NULL, `photo_370x230` varchar(300) NOT NULL, `banner_1600x250` varchar(100) DEFAULT NULL, `banner_1200x300` varchar(100) DEFAULT NULL, `short_desp` varchar(300) NOT NULL, `cost_for_two` varchar(100) NOT NULL, `open_time` time NOT NULL, `close_time` time NOT NULL, `send_sms` int NOT NULL DEFAULT '0', `make_call` int NOT NULL DEFAULT '0', `send_fax` int NOT NULL DEFAULT '0', `sms_phone_no` varchar(50) NOT NULL DEFAULT '', `call_phone_no` varchar(50) NOT NULL DEFAULT '', `fax_phone_no` varchar(50) NOT NULL DEFAULT '', `by_pass_zipcode` bit(1) NOT NULL DEFAULT b'0', `storeNewLabel` tinyint(1) NOT NULL DEFAULT '0', `skip_store` tinyint DEFAULT '0', `tab_store` tinyint DEFAULT '0', `status_type` int DEFAULT NULL, `mm_store_id` text CHARACTER SET latin1 COLLATE latin1_swedish_ci, `store_mme_flg` varchar(255) DEFAULT NULL, `mm_cuisines` text, `mm_zipcode` varchar(255) DEFAULT NULL, `mm_latitude` varchar(255) DEFAULT NULL, `mm_longitude` varchar(255) DEFAULT NULL, `store_icon_url` text, `store_food_photo_url` text, PRIMARY KEY (`storeid`), UNIQUE KEY `storeid` (`storeid`), KEY `storeid_2` (`storeid`), KEY `sectionid` (`sectionid`), KEY `status` (`status`), KEY `storename` (`storename`,`BT_storename`,`chargeable`), KEY `photo` (`photo`,`icon`), KEY `catid` (`catid`(3072)), KEY `slug` (`slug`,`banner`), KEY `storeid_3` (`storeid`,`sectionid`,`storename`,`bt_merchant_type`), KEY `BT_storename` (`BT_storename`,`slug`), KEY `status_type` (`status_type`), KEY `storeid_4` (`storeid`,`sectionid`,`storename`,`photo`,`by_pass_zipcode`), KEY `skip_store` (`skip_store`), KEY `display_order` (`display_order`) ) ENGINE=InnoDB AUTO_INCREMENT=160 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stores_live_temp` -- LOCK TABLES `stores_live_temp` WRITE; /*!40000 ALTER TABLE `stores_live_temp` DISABLE KEYS */; /*!40000 ALTER TABLE `stores_live_temp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stores_mmtime` -- DROP TABLE IF EXISTS `stores_mmtime`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `stores_mmtime` ( `uid` varchar(5655) NOT NULL, `storeid` int NOT NULL AUTO_INCREMENT, `catid` varchar(10000) NOT NULL, `sectionid` varchar(500) NOT NULL, `storetype` varchar(500) NOT NULL, `storename` varchar(250) NOT NULL, `BT_storename` varchar(500) NOT NULL, `bt_merchant_type` varchar(100) NOT NULL, `slug` varchar(300) DEFAULT NULL, `chargeable` varchar(100) NOT NULL, `photo` varchar(500) NOT NULL, `icon` varchar(500) NOT NULL, `banner` varchar(500) NOT NULL, `rest_banner` varchar(1000) NOT NULL, `street_num` varchar(50) DEFAULT NULL, `street_name` varchar(200) DEFAULT NULL, `storeaddress` varchar(2500) NOT NULL, `str_country` varchar(100) DEFAULT NULL, `state` char(50) NOT NULL, `city` varchar(100) NOT NULL, `zone6` int NOT NULL, `hike6` varchar(10) NOT NULL, `zone2` mediumtext NOT NULL, `zone3` mediumtext NOT NULL, `zone4` varchar(500) NOT NULL, `zone5` varchar(10000) NOT NULL, `hike0` varchar(5) NOT NULL, `zone0` varchar(5) NOT NULL, `hike1` varchar(10) NOT NULL, `hike2` varchar(10) NOT NULL, `hike3` varchar(10) NOT NULL, `hike4` varchar(10) NOT NULL, `hike5` varchar(10) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(15) NOT NULL, `in_stock` int NOT NULL, `fee` double NOT NULL, `commission` double DEFAULT NULL, `special_commission` varchar(10) NOT NULL, `minimum` int NOT NULL, `fee_special` varchar(10) NOT NULL, `minimum_special` varchar(10) NOT NULL, `hour` int NOT NULL, `minute` int NOT NULL, `area` longtext NOT NULL, `description` varchar(5000) NOT NULL, `meta_title` varchar(300) NOT NULL, `meta_keyword` mediumtext NOT NULL, `meta_description` varchar(1000) NOT NULL, `h1` varchar(300) NOT NULL DEFAULT '', `meta_title_food` varchar(300) NOT NULL DEFAULT '', `meta_keyword_food` mediumtext NOT NULL, `meta_description_food` varchar(1000) NOT NULL DEFAULT '', `h1_food` varchar(300) NOT NULL DEFAULT '', `meta_title_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_keyword_tiffin` mediumtext NOT NULL, `meta_description_tiffin` varchar(1000) NOT NULL DEFAULT '', `h1_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_title_meal` varchar(300) NOT NULL DEFAULT '', `meta_keyword_meal` mediumtext NOT NULL, `meta_description_meal` varchar(1000) NOT NULL DEFAULT '', `h1_meal` varchar(300) NOT NULL DEFAULT '', `meta_title_catering` varchar(300) NOT NULL DEFAULT '', `meta_keyword_catering` mediumtext NOT NULL, `meta_description_catering` varchar(1000) NOT NULL DEFAULT '', `h1_catering` varchar(300) NOT NULL DEFAULT '', `meta_title_alcohol` varchar(300) NOT NULL DEFAULT '', `meta_keyword_alcohol` mediumtext NOT NULL, `meta_description_alcohol` varchar(1000) NOT NULL DEFAULT '', `h1_alcohol` varchar(300) NOT NULL DEFAULT '', `content` mediumtext NOT NULL, `display_order` int NOT NULL, `post_date` datetime NOT NULL, `status` int DEFAULT NULL, `photo_350x350` varchar(300) NOT NULL, `photo_370x230` varchar(300) NOT NULL, `banner_1600x250` varchar(100) DEFAULT NULL, `banner_1200x300` varchar(100) DEFAULT NULL, `short_desp` varchar(300) NOT NULL, `cost_for_two` varchar(100) NOT NULL, `open_time` time NOT NULL, `close_time` time NOT NULL, `send_sms` int NOT NULL DEFAULT '0', `make_call` int NOT NULL DEFAULT '0', `send_fax` int NOT NULL DEFAULT '0', `sms_phone_no` varchar(50) NOT NULL DEFAULT '', `call_phone_no` varchar(50) NOT NULL DEFAULT '', `fax_phone_no` varchar(50) NOT NULL DEFAULT '', `by_pass_zipcode` bit(1) NOT NULL DEFAULT b'0', `storeNewLabel` tinyint(1) NOT NULL DEFAULT '0', `skip_store` tinyint DEFAULT '0', `tab_store` tinyint DEFAULT '0', `status_type` int DEFAULT NULL, `mm_store_id` text, `store_mme_flg` varchar(50) DEFAULT NULL, `mm_cuisines` text, `mm_zipcode` varchar(50) DEFAULT NULL, `mm_latitude` varchar(100) DEFAULT NULL, `mm_longitude` varchar(100) DEFAULT NULL, `store_icon_url` text, `store_food_photo_url` text, PRIMARY KEY (`storeid`), UNIQUE KEY `storeid` (`storeid`), KEY `storeid_2` (`storeid`), KEY `sectionid` (`sectionid`), KEY `status` (`status`), KEY `storename` (`storename`,`BT_storename`,`chargeable`), KEY `photo` (`photo`,`icon`), KEY `catid` (`catid`(3072)), KEY `slug` (`slug`,`banner`), KEY `storeid_3` (`storeid`,`sectionid`,`storename`,`bt_merchant_type`), KEY `BT_storename` (`BT_storename`,`slug`), KEY `status_type` (`status_type`), KEY `storeid_4` (`storeid`,`sectionid`,`storename`,`photo`,`by_pass_zipcode`), KEY `skip_store` (`skip_store`), KEY `display_order` (`display_order`) ) ENGINE=InnoDB AUTO_INCREMENT=112894 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stores_mmtime` -- LOCK TABLES `stores_mmtime` WRITE; /*!40000 ALTER TABLE `stores_mmtime` DISABLE KEYS */; /*!40000 ALTER TABLE `stores_mmtime` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stores_seller` -- DROP TABLE IF EXISTS `stores_seller`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `stores_seller` ( `uid` varchar(5655) NOT NULL, `storeid` int NOT NULL AUTO_INCREMENT, `catid` varchar(10000) NOT NULL, `sectionid` varchar(500) NOT NULL, `storetype` varchar(500) NOT NULL, `storename` varchar(250) NOT NULL, `BT_storename` varchar(500) NOT NULL, `bt_merchant_type` varchar(100) NOT NULL, `slug` varchar(300) DEFAULT NULL, `chargeable` varchar(100) NOT NULL, `photo` varchar(500) NOT NULL, `icon` varchar(500) NOT NULL, `banner` varchar(500) NOT NULL, `rest_banner` varchar(1000) NOT NULL, `street_num` varchar(50) DEFAULT NULL, `street_name` varchar(200) DEFAULT NULL, `storeaddress` varchar(2500) NOT NULL, `str_country` varchar(100) DEFAULT NULL, `state` char(50) NOT NULL, `city` varchar(100) NOT NULL, `zone6` int NOT NULL, `hike6` varchar(10) NOT NULL, `zone2` mediumtext NOT NULL, `zone3` mediumtext NOT NULL, `zone4` varchar(500) NOT NULL, `zone5` varchar(10000) NOT NULL, `hike0` varchar(5) NOT NULL, `zone0` varchar(5) NOT NULL, `hike1` varchar(10) NOT NULL, `hike2` varchar(10) NOT NULL, `hike3` varchar(10) NOT NULL, `hike4` varchar(10) NOT NULL, `hike5` varchar(10) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(15) NOT NULL, `in_stock` int NOT NULL, `fee` double NOT NULL, `commission` double DEFAULT NULL, `special_commission` varchar(10) NOT NULL, `minimum` int NOT NULL, `fee_special` varchar(10) NOT NULL, `minimum_special` varchar(10) NOT NULL, `hour` int NOT NULL, `minute` int NOT NULL, `area` longtext NOT NULL, `description` varchar(5000) NOT NULL, `meta_title` varchar(300) NOT NULL, `meta_keyword` mediumtext NOT NULL, `meta_description` varchar(1000) NOT NULL, `h1` varchar(300) NOT NULL DEFAULT '', `meta_title_food` varchar(300) NOT NULL DEFAULT '', `meta_keyword_food` mediumtext NOT NULL, `meta_description_food` varchar(1000) NOT NULL DEFAULT '', `h1_food` varchar(300) NOT NULL DEFAULT '', `meta_title_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_keyword_tiffin` mediumtext NOT NULL, `meta_description_tiffin` varchar(1000) NOT NULL DEFAULT '', `h1_tiffin` varchar(300) NOT NULL DEFAULT '', `meta_title_meal` varchar(300) NOT NULL DEFAULT '', `meta_keyword_meal` mediumtext NOT NULL, `meta_description_meal` varchar(1000) NOT NULL DEFAULT '', `h1_meal` varchar(300) NOT NULL DEFAULT '', `meta_title_catering` varchar(300) NOT NULL DEFAULT '', `meta_keyword_catering` mediumtext NOT NULL, `meta_description_catering` varchar(1000) NOT NULL DEFAULT '', `h1_catering` varchar(300) NOT NULL DEFAULT '', `meta_title_alcohol` varchar(300) NOT NULL DEFAULT '', `meta_keyword_alcohol` mediumtext NOT NULL, `meta_description_alcohol` varchar(1000) NOT NULL DEFAULT '', `h1_alcohol` varchar(300) NOT NULL DEFAULT '', `content` mediumtext NOT NULL, `display_order` int NOT NULL, `post_date` datetime NOT NULL, `status` int DEFAULT NULL, `photo_350x350` varchar(300) NOT NULL, `photo_370x230` varchar(300) NOT NULL, `banner_1600x250` varchar(100) DEFAULT NULL, `banner_1200x300` varchar(100) DEFAULT NULL, `short_desp` varchar(300) NOT NULL, `cost_for_two` varchar(100) NOT NULL, `open_time` time NOT NULL, `close_time` time NOT NULL, `send_sms` int NOT NULL DEFAULT '0', `make_call` int NOT NULL DEFAULT '0', `send_fax` int NOT NULL DEFAULT '0', `sms_phone_no` varchar(50) NOT NULL DEFAULT '', `call_phone_no` varchar(50) NOT NULL DEFAULT '', `fax_phone_no` varchar(50) NOT NULL DEFAULT '', `by_pass_zipcode` bit(1) NOT NULL DEFAULT b'0', `storeNewLabel` tinyint(1) NOT NULL DEFAULT '0', `skip_store` tinyint DEFAULT '0', `tab_store` tinyint DEFAULT '0', `status_type` int DEFAULT NULL, `mm_store_id` text, `store_mme_flg` varchar(50) DEFAULT NULL, `mm_cuisines` text, `mm_zipcode` varchar(50) DEFAULT NULL, `mm_latitude` varchar(100) DEFAULT NULL, `mm_longitude` varchar(100) DEFAULT NULL, `store_icon_url` text, `store_food_photo_url` text, PRIMARY KEY (`storeid`), UNIQUE KEY `storeid` (`storeid`), KEY `storeid_2` (`storeid`), KEY `sectionid` (`sectionid`), KEY `status` (`status`), KEY `storename` (`storename`,`BT_storename`,`chargeable`), KEY `photo` (`photo`,`icon`), KEY `catid` (`catid`(3072)), KEY `slug` (`slug`,`banner`), KEY `storeid_3` (`storeid`,`sectionid`,`storename`,`bt_merchant_type`), KEY `BT_storename` (`BT_storename`,`slug`), KEY `status_type` (`status_type`), KEY `storeid_4` (`storeid`,`sectionid`,`storename`,`photo`,`by_pass_zipcode`), KEY `skip_store` (`skip_store`), KEY `display_order` (`display_order`) ) ENGINE=InnoDB AUTO_INCREMENT=112894 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stores_seller` -- LOCK TABLES `stores_seller` WRITE; /*!40000 ALTER TABLE `stores_seller` DISABLE KEYS */; /*!40000 ALTER TABLE `stores_seller` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sunnywale_raghu_20june` -- DROP TABLE IF EXISTS `sunnywale_raghu_20june`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `sunnywale_raghu_20june` ( `id` int NOT NULL AUTO_INCREMENT, `product_name` varchar(255) DEFAULT NULL, `size` varchar(50) DEFAULT NULL, `size_unit` varchar(50) DEFAULT NULL, `upc_code` varchar(255) DEFAULT NULL, `remote_img_url` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3909 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sunnywale_raghu_20june` -- LOCK TABLES `sunnywale_raghu_20june` WRITE; /*!40000 ALTER TABLE `sunnywale_raghu_20june` DISABLE KEYS */; /*!40000 ALTER TABLE `sunnywale_raghu_20june` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_admin` -- DROP TABLE IF EXISTS `tbl_admin`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_admin` ( `id` int NOT NULL AUTO_INCREMENT, `username` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `full_name` varchar(255) NOT NULL, `mobile` varchar(255) NOT NULL, `user_type` enum('admin','emp') NOT NULL, `location` varchar(500) NOT NULL, `roles` varchar(255) NOT NULL, `register_date` datetime NOT NULL, `shopper_payment` int NOT NULL DEFAULT '0', `status` tinyint NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`,`username`,`password`,`email`,`user_type`,`register_date`,`status`), KEY `location` (`location`,`roles`) ) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_admin` -- LOCK TABLES `tbl_admin` WRITE; /*!40000 ALTER TABLE `tbl_admin` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_admin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_alcoholslot` -- DROP TABLE IF EXISTS `tbl_alcoholslot`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_alcoholslot` ( `id` int NOT NULL AUTO_INCREMENT, `bookingslot` varchar(255) NOT NULL, `status` tinyint NOT NULL, `open_time` time NOT NULL, `close_time` time NOT NULL, `cut_off_time` time NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_alcoholslot` -- LOCK TABLES `tbl_alcoholslot` WRITE; /*!40000 ALTER TABLE `tbl_alcoholslot` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_alcoholslot` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_area` -- DROP TABLE IF EXISTS `tbl_area`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_area` ( `id` int NOT NULL, `city_id` int NOT NULL, `area` varchar(255) NOT NULL, `pincode` varchar(255) NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_area` -- LOCK TABLES `tbl_area` WRITE; /*!40000 ALTER TABLE `tbl_area` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_area` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_astrologer` -- DROP TABLE IF EXISTS `tbl_astrologer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_astrologer` ( `id` int NOT NULL AUTO_INCREMENT, `seller_id` int NOT NULL, `name` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `sub_title` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `photo` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `status` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_astrologer` -- LOCK TABLES `tbl_astrologer` WRITE; /*!40000 ALTER TABLE `tbl_astrologer` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_astrologer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_astrologer_slots` -- DROP TABLE IF EXISTS `tbl_astrologer_slots`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_astrologer_slots` ( `id` int NOT NULL AUTO_INCREMENT, `seller_id` int NOT NULL, `astrologer_id` int NOT NULL, `avaibility_date` date NOT NULL, `from_time` datetime NOT NULL, `to_time` datetime NOT NULL, `status` int NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `avaibility_date` (`avaibility_date`,`from_time`,`to_time`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=213 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_astrologer_slots` -- LOCK TABLES `tbl_astrologer_slots` WRITE; /*!40000 ALTER TABLE `tbl_astrologer_slots` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_astrologer_slots` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_astrology_extend_time` -- DROP TABLE IF EXISTS `tbl_astrology_extend_time`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_astrology_extend_time` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `time` time NOT NULL, `price` double NOT NULL, `status` int NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_astrology_extend_time` -- LOCK TABLES `tbl_astrology_extend_time` WRITE; /*!40000 ALTER TABLE `tbl_astrology_extend_time` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_astrology_extend_time` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_attribute` -- DROP TABLE IF EXISTS `tbl_attribute`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_attribute` ( `id` int NOT NULL, `attribute` varchar(255) NOT NULL, `attribute_type` varchar(255) NOT NULL, `enable_searching` int NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_attribute` -- LOCK TABLES `tbl_attribute` WRITE; /*!40000 ALTER TABLE `tbl_attribute` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_attribute` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_attributegroup` -- DROP TABLE IF EXISTS `tbl_attributegroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_attributegroup` ( `id` int NOT NULL, `attributegroup` varchar(255) NOT NULL, `attribute_ids` varchar(255) NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_attributegroup` -- LOCK TABLES `tbl_attributegroup` WRITE; /*!40000 ALTER TABLE `tbl_attributegroup` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_attributegroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_attributevalue` -- DROP TABLE IF EXISTS `tbl_attributevalue`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_attributevalue` ( `id` int NOT NULL, `attribute_id` int NOT NULL, `attributevalue` varchar(255) NOT NULL, `display_value` varchar(255) NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_attributevalue` -- LOCK TABLES `tbl_attributevalue` WRITE; /*!40000 ALTER TABLE `tbl_attributevalue` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_attributevalue` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_authemail` -- DROP TABLE IF EXISTS `tbl_authemail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_authemail` ( `id` int NOT NULL AUTO_INCREMENT, `username` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `full_name` varchar(255) NOT NULL, `mobile` varchar(255) NOT NULL, `user_type` enum('Order','General','Store','All') NOT NULL, `roles` varchar(255) NOT NULL, `register_date` datetime NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_authemail` -- LOCK TABLES `tbl_authemail` WRITE; /*!40000 ALTER TABLE `tbl_authemail` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_authemail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_banner` -- DROP TABLE IF EXISTS `tbl_banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_banner` ( `id` int NOT NULL, `cat_id` int NOT NULL, `bcategories` varchar(255) NOT NULL, `title` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `description` varchar(255) NOT NULL, `target_url` text NOT NULL, `show_on_home` int NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_banner` -- LOCK TABLES `tbl_banner` WRITE; /*!40000 ALTER TABLE `tbl_banner` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_bigsquarebanner` -- DROP TABLE IF EXISTS `tbl_bigsquarebanner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_bigsquarebanner` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `keytitle` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `description` text NOT NULL, `target_url` text NOT NULL, `storeid` varchar(20) NOT NULL, `display_order` int NOT NULL, `show_on_home` int NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=378 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_bigsquarebanner` -- LOCK TABLES `tbl_bigsquarebanner` WRITE; /*!40000 ALTER TABLE `tbl_bigsquarebanner` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_bigsquarebanner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_blog` -- DROP TABLE IF EXISTS `tbl_blog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_blog` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(1000) NOT NULL, `keyword` varchar(10000) NOT NULL, `description` varchar(10000) NOT NULL, `h1` varchar(10000) NOT NULL, `url` varchar(10000) NOT NULL, `content` mediumtext NOT NULL, `feature_img` varchar(1000) NOT NULL, `image_alt` varchar(500) NOT NULL, `posted_date` varchar(100) NOT NULL, `year` varchar(100) NOT NULL, `posteddate` varchar(100) NOT NULL, `posted_by` varchar(1000) NOT NULL, `item_heading` varchar(500) NOT NULL, `viewallproduct_url` varchar(255) DEFAULT NULL, `category` varchar(100) NOT NULL, `facebook_count` int DEFAULT '0', `twitter_count` int DEFAULT '0', `mail_count` int DEFAULT '0', `linkdin_count` int DEFAULT '0', `whatsapp_count` int DEFAULT '0', `total_view` int DEFAULT '0', `total_count` int DEFAULT '0', `total_share` int DEFAULT '0', `author_name` varchar(200) DEFAULT NULL, `author_designation` varchar(200) DEFAULT NULL, `author_bio` varchar(2000) DEFAULT NULL, `author_fb` varchar(500) DEFAULT NULL, `author_tw` varchar(500) DEFAULT NULL, `author_in` varchar(500) DEFAULT NULL, `author_photo` varchar(500) DEFAULT NULL, `author_web` varchar(500) DEFAULT NULL, `status` int NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`,`posted_date`,`year`,`posteddate`,`total_view`,`total_count`,`total_share`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=305 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_blog` -- LOCK TABLES `tbl_blog` WRITE; /*!40000 ALTER TABLE `tbl_blog` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_blog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_blog_product` -- DROP TABLE IF EXISTS `tbl_blog_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_blog_product` ( `id` int NOT NULL AUTO_INCREMENT, `blog_id` int DEFAULT NULL, `location_id` varchar(500) DEFAULT NULL, `storeid` int DEFAULT NULL, `catid` int DEFAULT NULL, `product_id` varchar(2500) DEFAULT NULL, `added_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `status` int DEFAULT NULL, `show_product` int DEFAULT NULL, PRIMARY KEY (`id`), KEY `blog_id` (`blog_id`), KEY `location_id` (`location_id`), KEY `storeid` (`storeid`), KEY `catid` (`catid`), KEY `product_id` (`product_id`(767)), KEY `status` (`status`), KEY `show_product` (`show_product`), KEY `blog_id_2` (`blog_id`,`product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3658 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_blog_product` -- LOCK TABLES `tbl_blog_product` WRITE; /*!40000 ALTER TABLE `tbl_blog_product` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_blog_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_bookingslot` -- DROP TABLE IF EXISTS `tbl_bookingslot`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_bookingslot` ( `id` int NOT NULL AUTO_INCREMENT, `bookingslot` varchar(255) NOT NULL, `status` tinyint NOT NULL, `open_time` time NOT NULL, `close_time` time NOT NULL, `cut_off_time` time DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_bookingslot` -- LOCK TABLES `tbl_bookingslot` WRITE; /*!40000 ALTER TABLE `tbl_bookingslot` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_bookingslot` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_brand` -- DROP TABLE IF EXISTS `tbl_brand`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_brand` ( `id` int NOT NULL, `uid` varchar(500) NOT NULL, `bcat_id` int NOT NULL, `logo` varchar(255) NOT NULL, `brand` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_brand` -- LOCK TABLES `tbl_brand` WRITE; /*!40000 ALTER TABLE `tbl_brand` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_brand` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_business_category` -- DROP TABLE IF EXISTS `tbl_business_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_business_category` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(250) DEFAULT NULL, `display_name` varchar(250) DEFAULT NULL, `image` varchar(250) DEFAULT NULL, `status` tinyint NOT NULL DEFAULT '1', `sort_order` int DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_business_category` -- LOCK TABLES `tbl_business_category` WRITE; /*!40000 ALTER TABLE `tbl_business_category` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_business_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_business_contactus` -- DROP TABLE IF EXISTS `tbl_business_contactus`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_business_contactus` ( `id` int NOT NULL AUTO_INCREMENT, `full_name` varchar(100) DEFAULT NULL, `email` varchar(150) DEFAULT NULL, `subject` varchar(200) DEFAULT NULL, `message` varchar(300) DEFAULT NULL, `created_date` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_business_contactus` -- LOCK TABLES `tbl_business_contactus` WRITE; /*!40000 ALTER TABLE `tbl_business_contactus` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_business_contactus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_business_products` -- DROP TABLE IF EXISTS `tbl_business_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_business_products` ( `id` int NOT NULL AUTO_INCREMENT, `category` int DEFAULT NULL, `product_name` varchar(250) DEFAULT NULL, `product_image` varchar(250) DEFAULT NULL, `price` float(4,2) DEFAULT NULL, `size_type` varchar(50) DEFAULT NULL, `size` varchar(100) DEFAULT NULL, `store_id` int DEFAULT NULL, `status` tinyint DEFAULT NULL, `sort_order` int DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_business_products` -- LOCK TABLES `tbl_business_products` WRITE; /*!40000 ALTER TABLE `tbl_business_products` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_business_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_business_stores` -- DROP TABLE IF EXISTS `tbl_business_stores`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_business_stores` ( `id` int NOT NULL AUTO_INCREMENT, `store_name` varchar(200) DEFAULT NULL, `store_type` varchar(100) DEFAULT NULL, `store_location` varchar(250) DEFAULT NULL, `state` varchar(100) DEFAULT NULL, `city` varchar(150) DEFAULT NULL, `zipcode` varchar(30) DEFAULT NULL, `open_time` varchar(30) DEFAULT NULL, `close_time` varchar(30) DEFAULT NULL, `status` int DEFAULT NULL, `sort_order` int DEFAULT NULL, PRIMARY KEY (`id`), KEY `store_name` (`store_name`,`store_location`) ) ENGINE=InnoDB AUTO_INCREMENT=225 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_business_stores` -- LOCK TABLES `tbl_business_stores` WRITE; /*!40000 ALTER TABLE `tbl_business_stores` DISABLE KEYS */; INSERT INTO `tbl_business_stores` VALUES (1,'Marianos','','802 E Northwest Highway','Arlington Heights','IL','60004',NULL,NULL,1,1),(2,'Marianos','','3025 E New York Street','Aurora','Janesville','60504',NULL,NULL,1,2),(12,'Marianos',NULL,'2999 Waukegan Road','Bannockburn','Buffalo Grove','60089',NULL,NULL,1,3),(13,'Marianos',NULL,'144 Gary Avenue','IL','Buffalo Grove','60089',NULL,NULL,1,4),(14,'Marianos',NULL,'450 W Half Day Road','WI','Kenosha','53142',NULL,NULL,1,5),(15,'Marianos',NULL,'333 E Benton Place, Suite 206','IL','Rockford','61114',NULL,NULL,1,6),(16,'Marianos',NULL,'40 S Halsted Street','IL','Chicago','60659',NULL,NULL,1,7),(36,'Marianos',NULL,'1615 S Clark Street','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(37,'Marianos',NULL,'3145 S Ashland Avenue','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(38,'Marianos',NULL,'3350 N Western Avenue','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(39,'Marianos',NULL,'5353 N Elston','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(40,'Marianos',NULL,'2112 N Ashland Avenue','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(41,'Marianos',NULL,'2021 W Chicago Avenue','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(42,'Marianos',NULL,'1500 N Clybourn Avenue #C104','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(43,'Marianos',NULL,'3857 S Dr. Martin Luther King Jr. Dr.','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(44,'Marianos',NULL,'1800 W Lawrence Avenue','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(45,'Marianos',NULL,'5201 N Sheridan Road','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(46,'Marianos',NULL,'3030 N Broadway Street, Suite 100','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(47,'Marianos',NULL,'105 Northwest Highway','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(48,'Marianos',NULL,'10 E Golf Road','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(49,'Marianos',NULL,'678 N York Street ','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(50,'Marianos',NULL,'2559 W 95th Street','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(51,'Marianos',NULL,'21001 S LaGrange Road','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(52,'Marianos',NULL,'25 Waukegan Road','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(53,'Marianos',NULL,'6655 Grand Avenue','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(54,'Marianos',NULL,'7401 W Lawrence Avenue','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(55,'Marianos',NULL,'2575 W Golf Road','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(56,'Marianos',NULL,'1350 E Route 22','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(57,'Marianos',NULL,'345 W Roosevelt Road','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(58,'Marianos',NULL,'1300 S Naper Boulevard','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(59,'Marianos',NULL,'2323 Capital Drive','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(60,'Marianos',NULL,'784 Skokie Boulevard','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(61,'Marianos',NULL,'1822 Willow Road','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(62,'Marianos',NULL,'11000 S Cicero Avenue','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(63,'Marianos',NULL,'9504 142nd Street','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(64,'Marianos',NULL,'545 N Hicks Road','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(65,'Marianos',NULL,'1900 S Cumberland Avenue','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(66,'Marianos',NULL,'950 Brook Forest Avenue ','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(67,'Marianos',NULL,'3358 W Touhy Avenue','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(68,'Marianos',NULL,'1720 N Milwaukee Avenue','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(69,'Marianos',NULL,'3020 Wolf Road','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(70,'Marianos',NULL,'4700 Gilbert Avenue #14','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(71,'Marianos',NULL,'150 W 63rd Street','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(72,'Marianos',NULL,'625 S Main Street','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(73,'Fresh Thyme ',NULL,'6569 N Illinois St, Fairview Heights, IL 62208','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(74,'Fresh Thyme ',NULL,'325 Ogden Ave, Downers Grove, IL 60515','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(75,'Fresh Thyme ',NULL,'790 Royal St George Dr, Naperville, IL 60563','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(76,'Fresh Thyme ',NULL,'2700 Plainfield Road Ste C, Joliet, IL 60435','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(77,'Fresh Thyme ',NULL,'2500 N Elston Ave, Chicago, IL 60647','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(78,'Fresh Thyme ',NULL,'7501 W North Ave, River Forest, IL 60305','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(79,'Fresh Thyme ',NULL,'5340 Northwest Hwy Suite B, Crystal Lake, IL 60014','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(80,'Fresh Thyme ',NULL,'403 N. Veterans Parkway Unit 2, Bloomington, IL 61704','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(81,'Fresh Thyme ',NULL,'2000 S Randall Rd Geneva, IL 60134','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(82,'Fresh Thyme ',NULL,'8750 US Highway 31, Indianapolis, IN 46227 ','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(83,'Fresh Thyme ',NULL,'220 S Creasy Lane, Lafayette, IN 47905','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(84,'Fresh Thyme ',NULL,'4320 Coldwater Rd, FT Wayne, IN 46805','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(85,'Fresh Thyme ',NULL,'4225 East 82nd St, Indianapolis, IN 46250','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(86,'Fresh Thyme ',NULL,'2342 West 86th St, Indianapolis, IN 46260','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(87,'Fresh Thyme ',NULL,'11481 E 116th St, Fishers, IN 46037','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(88,'Fresh Thyme ',NULL,'3400 E 146th St, Carmel, In 46033','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(89,'Fresh Thyme ',NULL,'6301 N. College Ave. #101, Indianapolis, IN 46220','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(90,'Fresh Thyme ',NULL,'3600 W 3rd St Bloomington, IN 47404','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(91,'Fresh Thyme ',NULL,'5518 Grape Road Mishawaka IN 46545','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(92,'Fresh Thyme ',NULL,'9040 Rockville Road, Indianapolis, IN 46234','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(93,'Fresh Thyme ',NULL,'4428 S US HWY 41 Terre Haute IN 47802','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(94,'Fresh Thyme ',NULL,'1121 Hirschland Road Evansville, IN 47715','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(95,'Fresh Thyme ',NULL,'505 W McGalliard Road Muncie, IN 47303','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(96,'Fresh Thyme ',NULL,'2812 E 3rd St Bloomington, IN 47401','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(97,'Fresh Thyme ',NULL,'2410 N Salisbury St Suite 110 West Lafayette, IN 47906','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(98,'Fresh Thyme ',NULL,'6670 Sawmill Rd, Columbus, OH 43235','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(99,'Fresh Thyme ',NULL,'2850 E Centre Dr, Beavercreek, OH 45324','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(100,'Fresh Thyme ',NULL,'11349 Montgomery Rd, Cincinnati, OH 45249','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(101,'Fresh Thyme ',NULL,'933 High St, Worthington, OH 43085','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(102,'Fresh Thyme ',NULL,'1545 Golden Gate Plaza, Mayfield Heights, OH 44124','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(103,'Fresh Thyme ',NULL,'849 Polaris Pkwy Westerville OH 43240','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(104,'Fresh Thyme ',NULL,'1125 N. Hamilton Road, Gahanna, OH 43230','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(105,'Fresh Thyme ',NULL,'30016 Detroit Rd Westlake, OH 44145','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(106,'Fresh Thyme ',NULL,'5105 Monroe Street, Toledo, OH 43623','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(107,'Fresh Thyme ',NULL,'5509 Dressler Rd NW North Canton, OH 44720','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(108,'Fresh Thyme ',NULL,'1018 North Kirkwood Rd., Kirkwood, MO 63122','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(109,'Fresh Thyme ',NULL,'13957 Manchester Blvd, Town & Country, MO 63011','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(110,'Fresh Thyme ',NULL,'2235 Hwy K , O\' Fallon, MO 63366','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(111,'Fresh Thyme ',NULL,'9920 Lin Ferry Dr St Louis MO 63123','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(112,'Fresh Thyme ',NULL,'3600 S St. Peters Parkway St Charles, MO 63304','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(113,'Fresh Thyme ',NULL,'1155 Washington Pike Bridgeville, PA 15017','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(114,'Fresh Thyme ',NULL,'665 Clairton Blvd Pleasant Hills, PA 15236','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(115,'Fresh Thyme ',NULL,'1717 Route 228 Suite E Cranberry Township, PA 16066','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(116,'Fresh Thyme ',NULL,'2100 W 80 1/2 St, Bloomington , MN 55431','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(117,'Fresh Thyme ',NULL,'14880 Florence Trail, Apple Valley, MN 55124','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(118,'Fresh Thyme ',NULL,'4840 Excelsior Blvd St. Louis Park, MN 55416','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(119,'Fresh Thyme ',NULL,'14100 Highway 13 S, Savage, MN 55378','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(120,'Fresh Thyme ',NULL,'955 County Rd. E, Vadnais Heights, MN 55110','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(121,'Fresh Thyme ',NULL,'15760 32nd Avenue North, Plymouth, MN 55447','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(122,'Fresh Thyme ',NULL,'24 30th Avenue SE Minneapolis, MN 55414','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(123,'Fresh Thyme ',NULL,'50 2nd St. S., Waite Park, MN 56387','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(124,'Fresh Thyme ',NULL,'40 17th Ave SW Rochester, MN 55902','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(125,'Fresh Thyme ',NULL,'940 Trowbridge Rd, East Lansing, MI 48823','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(126,'Fresh Thyme ',NULL,'15480 Sheldon Road Northville MI 48168','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(127,'Fresh Thyme ',NULL,'901 E Big Beaver Rd, Troy, MI 48083','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(128,'Fresh Thyme ',NULL,'2025 S Rochester Rd, Rochester Hills, MI 48307','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(129,'Fresh Thyme ',NULL,'23300 Farmington Rd., Farmington, MI 48336','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(130,'Fresh Thyme ',NULL,'2470 Burton St SE Grand Rapids MI 49546','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(131,'Fresh Thyme ',NULL,'6212 S Westnedge Portage, MI 49002','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(132,'Fresh Thyme ',NULL,'2985 Washtenaw Rd., Ypsilanti, MI 48197','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(133,'Fresh Thyme ',NULL,'43480 Ford Road Canton MI, 48187','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(134,'Fresh Thyme ',NULL,'470 East Pleasant, Milwaukee, WI 53202','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(135,'Fresh Thyme ',NULL,'17300 W. Bluemound Rd., Brookfield, WI 53045','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(136,'Fresh Thyme ',NULL,'7100 Green Bay Road, Kenosha, WI 53142','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(137,'Fresh Thyme ',NULL,'8680 West Sura Lane, Greenfield, WI 53228','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(138,'Fresh Thyme ',NULL,'2767 S. Oneida St. Green Bay, WI 54304','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(139,'Fresh Thyme ',NULL,'82A Carothers Road Newport KY 41071','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(140,'Fresh Thyme ',NULL,'2900 University Avenue, West Des Moines IA 50266','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(141,'Fresh Thyme ',NULL,'2130 E. Kimberly Road, Davenport, IA 52807','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(142,'Fresh Thyme ',NULL,'3701 Foundry Way Suite 201, St. Louis, MO 63110','OH','Cincinnati','45241-1601',NULL,NULL,1,7),(143,'Costco Wholesale','','1800 West Sample Road','FL','Pompano Beach','33064','','',1,1),(144,'Costco Wholesale','','8201 S. Tamiami Trail','FL','Sarasota','34238','','',1,1),(145,'Costco Wholesale','','3980 Venture Dr','GA','Duluth','30096','','',1,1),(146,'Costco Wholesale','','PR-2 KM 15.5, Hato Tejas Ward','PR','Bayamon','961','','',1,1),(147,'Costco Wholesale','','500 Brookhaven Avenue','GA','Atlanta','30319','','',1,1),(148,'Costco Wholesale','','741 Orange Avenue','FL','Altamonte Springs','32714','','',1,1),(149,'Costco Wholesale','','1890 S. University Drive','FL','Davie','33324','','',1,1),(150,'Costco Wholesale','','7795 West Flagler Street','FL','Miami','33144','','',1,1),(151,'Costco Wholesale','','6350 Peachtree Dunwoody Rd','GA','Atlanta','30328','','',1,1),(152,'Costco Wholesale','','1185 Ave. 65th Infanter?a','PR','San Juan','924','','',1,1),(153,'Costco Wholesale','','825 Alexander Drive','GA','Augusta','30909','','',1,1),(154,'Costco Wholesale','','5550 Parkway Blvd','GA','Athens','30606','','',1,1),(155,'Costco Wholesale','','3250 Northlake Blvd','FL','Lake Park','33403','','',1,1),(156,'Costco Wholesale','','4696 Gardens Park Blvd','FL','Orlando','32839','','',1,1),(157,'Costco Wholesale','','645 Barrett Parkway NW','GA','Kennesaw','30144','','',1,1),(158,'Costco Wholesale','','1550 Mall of Georgia Blvd','GA','Buford','30519','','',1,1),(159,'Costco Wholesale','','10745 Kingston Pike','TN','Farragut','37934','','',1,1),(160,'Costco Wholesale','','1101 Forest Retreat Road','TN','Hendersonville','37075','','',1,1),(161,'Costco Wholesale','','1873 W. Lantana Road','FL','Lantana','33462','','',1,1),(162,'Costco Wholesale','','2225 Grand Cypress Drive','FL','Lutz','33559','','',1,1),(163,'Costco Wholesale','','1510 North Pointe Drive','NC','Durham','27705','','',1,1),(164,'Costco Wholesale','','2125 Matthews Township Pkwy','NC','Matthews','28105','','',1,1),(165,'Costco Wholesale','','1211 Bald Ridge Marina Road','GA','Cumming','30041','','',1,1),(166,'Costco Wholesale','','2245 Jodeco Road','GA','McDonough','30253','','',1,1),(167,'Costco Wholesale','','16580 NW 59th Avenue','FL','Miami Lakes','33014','','',1,1),(168,'Costco Wholesale','','8712 W Linebaugh Avenue','FL','Tampa','33625','','',1,1),(169,'Costco Wholesale','','98 Seaboard Lane','TN','Brentwood','37027','','',1,1),(170,'Costco Wholesale','','1450 Tingle Circle West','AL','Mobile','36606','','',1,1),(171,'Costco Wholesale','','100 Legacy Pointe Blvd','TN','Mt. Juliet','37122','','',1,1),(172,'Costco Wholesale','','8000 Parramore Road','FL','Jacksonville','32244','','',1,1),(173,'Costco Wholesale','','1021 Oak Forest Lane','SC','Myrtle Beach','29577','','',1,1),(174,'Costco Wholesale','','6670 Charlotte Pike','TN','Nashville','37209','','',1,1),(175,'Costco Wholesale','','1021 Pine Plaza Drive','NC','Apex','27523','','',1,1),(176,'Costco Wholesale','','8094 Highway 72 West','AL','Madison','35758','','',1,1),(177,'Costco Wholesale','','3333 University Boulevard','FL','Winter Park','32792','','',1,1),(178,'Costco Wholesale','','4621 Coral Ridge Dr','FL','Coral Springs','33076','','',1,1),(179,'Costco Wholesale','','4201 West Wendover','NC','Greensboro','27407','','',1,1),(180,'Costco Wholesale','','2900 Cumberland Mall SE','GA','Atlanta','30339','','',1,1),(181,'Costco Wholesale','','507 Piney Grove Road','SC','Columbia','29210','','',1,1),(182,'Costco Wholesale','','8800 Charlotte Highway','SC','Indian Land','29707','','',1,1),(183,'Costco Wholesale','','2655 Gulf To Bay Blvd','FL','Clearwater','33759','','',1,1),(184,'Costco Wholesale','','14800 Sole Mia Way','FL','North Miami','33181','','',1,1),(185,'Costco Wholesale','','2431 N Germantown Parkway','TN','Cordova','38018','','',1,1),(186,'Costco Wholesale','','5351 Gingerwood Dr','NC','Wilmington','28405','','',1,1),(187,'Costco Wholesale','','113 Lincoln St','GA','Woodstock','30188','','',1,1),(188,'Costco Wholesale','','17800 Congress Avenue','FL','Boca Raton','33431','','',1,1),(189,'Costco Wholesale','','805 Lighthouse Drive','FL','Bradenton','34212','','',1,1),(190,'Costco Wholesale','','3775 Hacks Cross Road','TN','Memphis','38125','','',1,1),(191,'Costco Wholesale','','2838 Wake Forest Road','NC','Raleigh','27609','','',1,1),(192,'Costco Wholesale','','3525 Park Avenue Blvd','SC','Mt Pleasant','29466','','',1,1),(193,'Costco Wholesale','','5851 45th Street','FL','West Palm Beach','33407','','',1,1),(194,'Costco Wholesale','','7171 Cypress Lake Drive','FL','Fort Myers','33907','','',1,1),(195,'Costco Wholesale','','4305 Pineda Causeway','FL','Melbourne','32940','','',1,1),(196,'Costco Wholesale','','1205 North Memorial Parkway','AL','Huntsville','35801','','',1,1),(197,'Costco Wholesale','','2855 Jordan Court','GA','Alpharetta','30004','','',1,1),(198,'Costco Wholesale','','392 Talbert Road','NC','Mooresville','28117','','',1,1),(199,'Costco Wholesale','','4250 South Fulton Pkwy','GA','College Park','30349','','',1,1),(200,'Costco Wholesale','','6275 Naples Blvd','FL','Naples','34109','','',1,1),(201,'Costco Wholesale','','215 World Commerce Parkway','FL','St. Augustine','32092','','',1,1),(202,'Costco Wholesale','','500 Tyvola Road','NC','Charlotte','28217','','',1,1),(203,'Costco Wholesale','','1021 Woodruff Road','SC','Greenville','29607','','',1,1),(204,'Costco Wholesale','','40 Fischer Crossing Drive','GA','Sharpsburg','30277','','',1,1),(205,'Costco Wholesale','','4901 Gate Parkway','FL','Jacksonville','32246','','',1,1),(206,'Costco Wholesale','','4600 Collina Terrace','FL','Clermont','34711','','',1,1),(207,'Costco Wholesale','','3050 Ashley Town Center Drive','SC','Charleston','29414','','',1,1),(208,'Costco Wholesale','','211 West Blackstock Road','SC','Spartanburg','29301','','',1,1),(209,'Costco Wholesale','','10921 Causeway Blvd','FL','Brandon','33511','','',1,1),(210,'Costco Wholesale','','150 Pit Road','FL','Daytona Beach','32124','','',1,1),(211,'Costco Wholesale','','1085 Hanes Mall Blvd','NC','Winston-Salem','27103','','',1,1),(212,'Costco Wholesale','','8251 East Chase Pkwy','AL','Montgomery','36117','','',1,1),(213,'Costco Wholesale','','11700 Mezzo Drive','FL','North Port','34293','','',1,1),(214,'Costco Wholesale','','3650 Galleria Circle','AL','Hoover','35244','','',1,1),(215,'Costco Wholesale','','4067 Lagniappe Way','FL','Tallahassee','32317','','',1,1),(216,'Costco Wholesale','','1524 Beasie Road','TN','Murfreesboro','37128','','',1,1),(217,'Costco Wholesale','','11001 Southern Blvd','FL','Royal Palm Beach','33411','','',1,1),(218,'Costco Wholesale','','3173 S Kanner Hwy','FL','Stuart','34994','','',1,1),(219,'Costco Wholesale','','100 Cobb Parkway','GA','Fort Oglethorpe','30742','','',1,1),(220,'Costco Wholesale','','200 Mosaic Circle','GA','Pooler','31322','','',1,1),(221,'Costco Wholesale','','15915 Pines Blvd','FL','Pembroke Pines','33027','','',1,1),(222,'Costco Wholesale','','675 Tatonka Terrace','FL','The Villages','32162','','',1,1),(223,'Costco Wholesale','','13450 SW 120th Street','FL','Kendall','33186','','',1,1),(224,'Costco Wholesale','','1700 Mount Zion Rd','GA','Morrow','30260','','',1,1); /*!40000 ALTER TABLE `tbl_business_stores` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_buygiftcard` -- DROP TABLE IF EXISTS `tbl_buygiftcard`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_buygiftcard` ( `id` int NOT NULL, `buyer_id` int NOT NULL, `receiver_email` varchar(255) NOT NULL, `receiver_mobile` varchar(255) NOT NULL, `gift_amount` double NOT NULL, `alloted` int NOT NULL, `payment_status` int NOT NULL, `payment_date` datetime NOT NULL, `address` varchar(500) NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_buygiftcard` -- LOCK TABLES `tbl_buygiftcard` WRITE; /*!40000 ALTER TABLE `tbl_buygiftcard` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_buygiftcard` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_buygiftcard_comments` -- DROP TABLE IF EXISTS `tbl_buygiftcard_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_buygiftcard_comments` ( `id` int NOT NULL, `comments` text NOT NULL, `buyorder_id` int NOT NULL, `payment_status` int NOT NULL, `posted_date` datetime NOT NULL, `posted_by` int NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_buygiftcard_comments` -- LOCK TABLES `tbl_buygiftcard_comments` WRITE; /*!40000 ALTER TABLE `tbl_buygiftcard_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_buygiftcard_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_cache_key` -- DROP TABLE IF EXISTS `tbl_cache_key`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_cache_key` ( `id` int NOT NULL AUTO_INCREMENT, `section` varchar(50) NOT NULL, `cache_key` varchar(300) NOT NULL, `created_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `section` (`section`,`cache_key`) ) ENGINE=InnoDB AUTO_INCREMENT=32380917 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_cache_key` -- LOCK TABLES `tbl_cache_key` WRITE; /*!40000 ALTER TABLE `tbl_cache_key` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_cache_key` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_cart` -- DROP TABLE IF EXISTS `tbl_cart`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_cart` ( `id` int NOT NULL AUTO_INCREMENT, `zip_code` varchar(50) NOT NULL, `cart_type` varchar(15) NOT NULL, `section` varchar(100) DEFAULT NULL, `sid` int DEFAULT NULL, `sname` varchar(250) DEFAULT NULL, `simg` varchar(250) DEFAULT NULL, `smin` float(9,2) DEFAULT NULL, `minorder` float(9,2) DEFAULT NULL, `pid` int DEFAULT NULL, `name` varchar(250) DEFAULT NULL, `qty` int DEFAULT NULL, `price` float(9,2) DEFAULT NULL, `calcprice` float(9,2) DEFAULT NULL, `baseTax` float(9,2) DEFAULT NULL, `total` float(9,2) DEFAULT NULL, `tax` float(9,2) DEFAULT NULL, `mealKit` int DEFAULT NULL, `photo` varchar(255) DEFAULT NULL, `remarks` varchar(255) DEFAULT NULL, `customize` varchar(255) DEFAULT NULL, `addOns` text, `addOnBaseQtys` varchar(255) DEFAULT NULL, `addOnQtys` varchar(255) DEFAULT NULL, `deliveryDate` varchar(100) DEFAULT NULL, `deliveryFromTime` varchar(100) DEFAULT NULL, `deliveryToTime` varchar(100) DEFAULT NULL, `addOnIDs` varchar(255) DEFAULT NULL, `sizeID` varchar(255) DEFAULT NULL, `subscriptiontype` varchar(11) DEFAULT NULL, `remarks_allergic` varchar(255) DEFAULT NULL, `remarks_spl_instruct` varchar(255) DEFAULT NULL, `current_shop` varchar(12) DEFAULT NULL, `created_at` datetime DEFAULT CURRENT_TIMESTAMP, `updated_at` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `user_id` int NOT NULL, `add_on_sizeids` varchar(255) DEFAULT NULL, `OrgainicPro` varchar(50) DEFAULT NULL, `grills` int DEFAULT NULL, `seasoningKit` varchar(10) DEFAULT NULL, `chefid` int DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_cart` -- LOCK TABLES `tbl_cart` WRITE; /*!40000 ALTER TABLE `tbl_cart` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_cart` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_cart_master` -- DROP TABLE IF EXISTS `tbl_cart_master`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_cart_master` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `phone` varchar(250) NOT NULL, `email` varchar(100) DEFAULT NULL, `user_type` varchar(100) DEFAULT NULL, `zipcode` int NOT NULL, `cart_key` varchar(500) NOT NULL, `modify_on` timestamp NULL DEFAULT NULL, `modify_msg` varchar(1000) DEFAULT NULL, `status` enum('Payment Success','Payment Failed','Cart Modify Request','Cart Enable','Cart Disable') DEFAULT NULL, `order_id` int DEFAULT NULL, `cart_updated_by` int NOT NULL, `cart_updated_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=722 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_cart_master` -- LOCK TABLES `tbl_cart_master` WRITE; /*!40000 ALTER TABLE `tbl_cart_master` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_cart_master` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_cart_master_items` -- DROP TABLE IF EXISTS `tbl_cart_master_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_cart_master_items` ( `id` int NOT NULL AUTO_INCREMENT, `cart_id` int NOT NULL, `product_id` int NOT NULL, `product_name` varchar(500) NOT NULL, `size` int NOT NULL, `size_type` varchar(500) NOT NULL, `addonid` varchar(500) NOT NULL, `addonsizeid` varchar(500) NOT NULL, `storeid` int NOT NULL, `sellprice` double NOT NULL, `mrprice` double NOT NULL, `qty` int NOT NULL, `tax` double NOT NULL, `delivery_date` varchar(500) NOT NULL, `delivery_time` varchar(500) NOT NULL, `customize` varchar(500) NOT NULL, `section` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1188 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_cart_master_items` -- LOCK TABLES `tbl_cart_master_items` WRITE; /*!40000 ALTER TABLE `tbl_cart_master_items` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_cart_master_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_cat_meta` -- DROP TABLE IF EXISTS `tbl_cat_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_cat_meta` ( `id` int NOT NULL AUTO_INCREMENT, `parrent_cat_id` int NOT NULL, `cat_id` int NOT NULL, `main_heading` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_description` varchar(1000) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_bg_color` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_font_color` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_btn_label` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_btn_bg_color` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_btn_font_color` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_cat_img` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `sub_heading` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `sub_description` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `sub_btn_label` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `sub_btn_bg_color` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `sub_btn_font_color` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `sort_order` int NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`), KEY `parrent_cat_id` (`parrent_cat_id`,`cat_id`,`sort_order`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_cat_meta` -- LOCK TABLES `tbl_cat_meta` WRITE; /*!40000 ALTER TABLE `tbl_cat_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_cat_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_cat_meta_justweb` -- DROP TABLE IF EXISTS `tbl_cat_meta_justweb`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_cat_meta_justweb` ( `id` int NOT NULL AUTO_INCREMENT, `parrent_cat_id` int NOT NULL, `cat_id` int NOT NULL, `main_heading` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_description` varchar(2000) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_bg_color` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_font_color` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_btn_label` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_btn_bg_color` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_btn_font_color` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_cat_img` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `main_cat_img_position` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `detail_heading` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `detail_description` varchar(1000) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `detail_btn_label` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `detail_btn_bg_color` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `detail_btn_font_color` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `detail_img` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `sort_order` int NOT NULL, `type` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`), KEY `parrent_cat_id` (`parrent_cat_id`,`cat_id`,`sort_order`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_cat_meta_justweb` -- LOCK TABLES `tbl_cat_meta_justweb` WRITE; /*!40000 ALTER TABLE `tbl_cat_meta_justweb` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_cat_meta_justweb` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_category` -- DROP TABLE IF EXISTS `tbl_category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_category` ( `id` int NOT NULL, `category` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `icon` varchar(255) NOT NULL, `short_description` text NOT NULL, `show_home` tinyint(1) NOT NULL, `slug` varchar(255) NOT NULL, `group_id` int NOT NULL, `display_order` int NOT NULL DEFAULT '20', `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_category` -- LOCK TABLES `tbl_category` WRITE; /*!40000 ALTER TABLE `tbl_category` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_categoryimage` -- DROP TABLE IF EXISTS `tbl_categoryimage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_categoryimage` ( `id` int NOT NULL AUTO_INCREMENT, `cat_id` int NOT NULL, `photo` varchar(255) NOT NULL, `icon` varchar(255) NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`,`cat_id`,`photo`,`status`), KEY `photo` (`photo`,`icon`) ) ENGINE=InnoDB AUTO_INCREMENT=347 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_categoryimage` -- LOCK TABLES `tbl_categoryimage` WRITE; /*!40000 ALTER TABLE `tbl_categoryimage` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_categoryimage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_chef_additional` -- DROP TABLE IF EXISTS `tbl_chef_additional`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_chef_additional` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `status` enum('1','0') NOT NULL DEFAULT '1', `enrty` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_chef_additional` -- LOCK TABLES `tbl_chef_additional` WRITE; /*!40000 ALTER TABLE `tbl_chef_additional` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_chef_additional` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_chef_course` -- DROP TABLE IF EXISTS `tbl_chef_course`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_chef_course` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `status` enum('0','1','','') NOT NULL DEFAULT '1', `entry` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_chef_course` -- LOCK TABLES `tbl_chef_course` WRITE; /*!40000 ALTER TABLE `tbl_chef_course` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_chef_course` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_chef_holiday` -- DROP TABLE IF EXISTS `tbl_chef_holiday`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_chef_holiday` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `status` enum('1','0') NOT NULL DEFAULT '1', `entry` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_chef_holiday` -- LOCK TABLES `tbl_chef_holiday` WRITE; /*!40000 ALTER TABLE `tbl_chef_holiday` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_chef_holiday` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_chef_prep` -- DROP TABLE IF EXISTS `tbl_chef_prep`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_chef_prep` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `status` enum('0','1','','') NOT NULL DEFAULT '1', `entry` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_chef_prep` -- LOCK TABLES `tbl_chef_prep` WRITE; /*!40000 ALTER TABLE `tbl_chef_prep` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_chef_prep` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_childsubcategory` -- DROP TABLE IF EXISTS `tbl_childsubcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_childsubcategory` ( `id` int NOT NULL, `cat_id` int NOT NULL, `subcat_id` int NOT NULL, `childsubcategory` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `childgroup_id` int NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_childsubcategory` -- LOCK TABLES `tbl_childsubcategory` WRITE; /*!40000 ALTER TABLE `tbl_childsubcategory` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_childsubcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_city` -- DROP TABLE IF EXISTS `tbl_city`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_city` ( `id` int NOT NULL AUTO_INCREMENT, `city` varchar(255) DEFAULT NULL, `state` varchar(150) DEFAULT NULL, `city_tax` double NOT NULL DEFAULT '0', `status` tinyint NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`,`city`,`state`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=9509 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_city` -- LOCK TABLES `tbl_city` WRITE; /*!40000 ALTER TABLE `tbl_city` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_city` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_comment_like` -- DROP TABLE IF EXISTS `tbl_comment_like`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_comment_like` ( `id` int NOT NULL AUTO_INCREMENT, `comment_id` int DEFAULT NULL, `user_id` int DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_comment_like` -- LOCK TABLES `tbl_comment_like` WRITE; /*!40000 ALTER TABLE `tbl_comment_like` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_comment_like` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_content` -- DROP TABLE IF EXISTS `tbl_content`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_content` ( `id` int NOT NULL, `title` varchar(255) NOT NULL, `content` text NOT NULL, `meta_title` text NOT NULL, `meta_keywords` text NOT NULL, `meta_description` text NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_content` -- LOCK TABLES `tbl_content` WRITE; /*!40000 ALTER TABLE `tbl_content` DISABLE KEYS */; INSERT INTO `tbl_content` VALUES (1,'Welcome Content','<p><strong>Quicklly.com</strong> is Chicago’s fastest growing online portal to buy groceries, cosmetics, personal/household items & much more....</p>\r\n','Online Store in Chicago','online grocery shopping chicago,\r\nbest grocery delivery chicago,\r\norder groceries online chicago,\r\nonline grocery chicago,\r\nlocal grocery delivery,\r\ngrocery home delivery chicago,\r\ngrocery stores in chicago area,\r\nIndian grocery store in chicago,\r\nonline grocery store,\r\nIndian food in chicago,\r\nIndian spices in chicago,','Online Store in Chicago',1),(2,'About Us','<h1>About Us</h1>\r\n\r\n<p>Whether longing for ingredients to stock up your kitchen or meals to satisfy your cravings, Quicklly offers everything you need to enjoy South Asian and Indian cuisine, all in one place. As the nation's most comprehensive, one-stop marketplace, Quicklly provides access to a range of <a href=\"https://www.quicklly.com/indian-grocery-delivery\"><span style=\"color:#008000\">Indian grocery</span></a> ingredients, <a href=\"https://www.quicklly.com/indian-tiffin\"><span style=\"color:#008000\">tiffins</span></a>, <a href=\"https://www.quicklly.com/catering\"><span style=\"color:#008000\">catering</span></a>, <a href=\"https://www.quicklly.com/meal-kit-stores\"><span style=\"color:#008000\">Indian meal kits</span></a>, fully prepared <a href=\"https://www.quicklly.com/indian-food-delivery\"><span style=\"color:#008000\">Indian meals delivered</span></a> to your doorstep.</p>\r\n','About Us - Quicklly \r\n','','Quicklly is an Indian Grocery Marketplace that caters to all your Indian needs - Groceries, Food, Tiffin, Catering & more. Know more about Quicklly here.',1),(3,'Why shop at MyValue 365?','<h3 style=\"text-align:center\"><span style=\"color:#FFFFFF\"><strong>Why Shop at My Value 365?</strong></span></h3>\r\n\r\n<p style=\"text-align:justify\"><br />\r\nApart from the sheer variety of products on offer, our customers get to buy the best quality at the lowest prices in the market<strong>. </strong>But that’s not all! There are also many non-monetary, but equally significant, benefits for our users:</p>\r\n\r\n<ul>\r\n <li style=\"text-align:justify\">No more renting a car for a buying ethnic groceries/standing in long queues/facing parking hassles! Save your time with our doorstep delivery.</li>\r\n <li style=\"text-align:justify\">Say goodbye to shopping delays! Biweekly deliveries available now. Same Day Delivery option will be coming soon!</li>\r\n <li style=\"text-align:justify\">Convenient and uncomplicated online-shopping platform. Simply register yourself on the website and you are good to go!</li>\r\n <li style=\"text-align:justify\">Ease of online payment with all major credit/debit card merchants accepted.</li>\r\n <li style=\"text-align:justify\">Your smartphone becomes your grocery-shopper. 100% convenience at no extra cost!</li>\r\n <li style=\"text-align:justify\">Safeguards in place to honor our promise of customer satisfaction.</li>\r\n</ul>\r\n','Online Store in Chicago','online grocery shopping chicago,\r\nbest grocery delivery chicago,\r\norder groceries online chicago,\r\nonline grocery chicago,\r\nlocal grocery delivery,\r\ngrocery home delivery chicago,\r\ngrocery stores in chicago area,\r\nIndian grocery store in chicago,\r\nonline grocery store,\r\nIndian food in chicago,\r\nIndian spices in chicago,','',1),(5,'How to order','<h3 style=\"text-align:center\"><span style=\"color:#E6E6FA\"><strong>How to Order</strong></span></h3>\r\n\r\n<p style=\"text-align:justify\"><br />\r\nVisit our website, www.myvalue365.com. Browse and add items of your choice to the cart, register by following a few simple steps or checkout as guest user, select delivery slot, choose payment method, and check out. It’s that simple!!</p>\r\n','Online Store Chicago','online grocery shopping chicago,\r\nbest grocery delivery chicago,\r\norder groceries online chicago,\r\nonline grocery chicago,\r\nlocal grocery delivery,\r\ngrocery home delivery chicago,\r\ngrocery stores in chicago area,\r\nIndian grocery store in chicago,\r\nonline grocery store,\r\nIndian food in chicago,\r\nIndian spices in chicago,','How to order at myvalue365.com?',1),(6,'Where we operate','<p style=\"text-align:justify\"><span style=\"color:rgb(255, 0, 0)\"><span style=\"font-size:18px\"><strong>Where Do We Operate?</strong></span></span></p>\r\n\r\n<p style=\"text-align:justify\">Currently, our areas of operation are Delhi, Noida,Ghaziabd,Indirapuram, Vasundhara, Vaishali, Kaushambi and Crossings Republic.</p>\r\n','Online Store Delhi Noida and Ghaziabad','online grocery shopping chicago,\r\nbest grocery delivery chicago,\r\norder groceries online chicago,\r\nonline grocery chicago,\r\nlocal grocery delivery,\r\ngrocery home delivery chicago,\r\ngrocery stores in chicago area,\r\nIndian grocery store in chicago,\r\nonline grocery store,\r\nIndian food in chicago,\r\nIndian spices in chicago,','',1),(7,'Careers At MyValue 365','<div class=\"main-container col1-layout wow bounceInUp animated animated\" style=\"visibility: visible;\">\r\n<div class=\"main container\">\r\n<div class=\"main-careers\">\r\n<div class=\"career-content\">\r\n<div class=\"career-content-title\" style=\"border-bottom:1px solid #333\">\r\n<h1>OPEN POSITIONS</h1>\r\n\r\n<p>We’re looking for people to join the team who are as excited as we are to help build the platform that empowers the future generation of creators to be successful online.</p>\r\n</div>\r\n</div>\r\n\r\n<div class=\"row\">\r\n<div class=\"col-lg-6 col-md-6 col-sm-12 align-middle\"><br />\r\n<br />\r\n<img alt=\"Web development\" class=\"align-middle career-img img-responsive\" src=\"images/web-development.jpg\" /></div>\r\n\r\n<div class=\"col-lg-6 col-md-6 col-sm-12\">\r\n<h3><strong>SEO/SEM Experts</strong></h3>\r\n\r\n<p>We are looking for an SEO/SEM expert to manage all search engine optimization and marketing activities.</p>\r\n\r\n<p>You will be responsible for managing all SEO activities such as content strategy, link building and keyword strategy to increase rankings on all major search networks. You will also manage all SEM campaigns on Google, Yahoo and Bing in order to maximize ROI.</p>\r\n\r\n<p><strong>Responsibilities:</strong></p>\r\n\r\n<ul>\r\n <li> Execute tests, collect and analyze data and results, identify trends and insights in order to achieve maximum ROI in paid search campaigns</li>\r\n <li> Track, report, and analyze website analytics and PPC initiatives and campaigns</li>\r\n <li> Manage campaign expenses, staying on budget, estimating monthly costs and reconciling discrepancies.</li>\r\n <li> Optimize copy and landing pages for search engine marketing</li>\r\n <li> Perform ongoing keyword discovery, expansion and optimization</li>\r\n <li> Research and implement search engine optimization recommendations</li>\r\n <li> Research and analyze competitor advertising links</li>\r\n <li> Develop and implement link building strategy</li>\r\n <li> Work with the development team to ensure SEO best practices are properly implemented on newly developed code</li>\r\n <li> Work with editorial and marketing teams to drive SEO in content creation and content programming</li>\r\n <li> Recommend changes to website architecture, content, linking and other factors to improve SEO positions for target keywords.</li>\r\n</ul>\r\n\r\n<p><strong>Requirements:</strong></p>\r\n\r\n<ul>\r\n <li> Proven SEO experience</li>\r\n <li> Proven SEM experience managing PPC campaigns across Google, Yahoo and Bing.</li>\r\n <li> Solid understanding of performance marketing, conversion, and online customer acquisition</li>\r\n <li> In-depth experience with website analytics tools (e.g, Google Analytics, SEMRush, Screaming Frog)</li>\r\n <li> Experience with bid management tools (e.g., Click Equations, Marin, Kenshoo, Search Ignite)</li>\r\n <li> Experience with A/B and multivariate experiments</li>\r\n <li> Working knowledge of HTML, CSS, and JavaScript development and constraints</li>\r\n <li> Knowledge of ranking factors and search engine algorithms</li>\r\n <li> Up-to-date with the latest trends and best practices in SEO and SEM</li>\r\n</ul>\r\n\r\n<p>Salary: Will be according to industry standards and commensurate with the skills of the successful candidate.</p>\r\n\r\n<p>Interested candidates are invited to apply with their updated CV, via email, to info@myvalue365.com. We request you to mention “Job application – SEO/SEM Experts” in the subject line.</p>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\r\n','Careers & Job Openings | Quicklly\r\n','online grocery shopping chicago,\r\nbest grocery delivery chicago,\r\norder groceries online chicago,\r\nonline grocery chicago,\r\nlocal grocery delivery,\r\ngrocery home delivery chicago,\r\ngrocery stores in chicago area,\r\nIndian grocery store in chicago,\r\nonline grocery store,\r\nIndian food in chicago,\r\nIndian spices in chicago,','Search our current job openings to see if there is a career at Quicklly waiting for you! \r\n',1),(13,'Contact Us','<ul>\r\n <li>Address: 1400 North LakeShore drive,Chicago-60610</li>\r\n <li>Phone/Text Enquiry: <a href=\"tel:+1(224)366-0987\">+1(224)</a>366-0987 (8AM - 8 PM CT)</li>\r\n <li>General Enquiry: hello@quicklly.com</li>\r\n <li>Order Support: ordersupport@quicklly.com</li>\r\n <li>Stores Support: newstoresetup@quicklly.com</li>\r\n</ul>\r\n','Contact Us - Quicklly\r\n','online grocery shopping chicago,\r\nbest grocery delivery chicago,\r\norder groceries online chicago,\r\nonline grocery chicago,\r\nlocal grocery delivery,\r\ngrocery home delivery chicago,\r\ngrocery stores in chicago area,\r\nIndian grocery store in chicago,\r\nonline grocery store,\r\nIndian food in chicago,\r\nIndian spices in chicago,','Have a question about your order or in general? Contact us 24 hours a day 7 days a week for the best customer service!\r\n',1),(16,'Privacy Policy','<h3 style=\"text-align:center\"> </h3>\r\n\r\n<p>Last modified: 16<sup>th</sup> November 2022</p>\r\n\r\n<p><strong><u>Introduction</u></strong> </p>\r\n\r\n<p>Quicklly is a subsidiary of MyValue365, Inc., (“<strong>Company</strong>” or “<strong>We</strong>”) respect your privacy and are committed to protecting it through our compliance with this policy. This policy describes (1) the types of information we may collect or that you may provide when you access or use <a href=\"https://www.quicklly.com\">www.quicklly.com</a> (the “<strong>Website</strong>”) and/or download, register with, access, or use the Company’s Quicklly Mobile App (the “<strong>App</strong>”) (collectively, the “<strong>Services</strong>”); (2) our practices for collecting, using, maintaining, protecting, and disclosing that information. This policy applies only to information we collect. This policy DOES NOT apply to information that (1) we collect offline or on any other Company apps or websites, including websites you may access through this App; (2) you provide to or is collected by any third party. Our websites and apps, and these third parties may have their own privacy policies, which we encourage you to read before providing information on or through them.</p>\r\n\r\n<p>Please read this policy carefully to understand our policies and practices regarding your information and how we will treat it. If you do not agree with our policies and practices, do not download, register with, or use the Services. By downloading, registering with, or using the Services, you agree to this privacy policy. This policy may change from time to time, without notice. Your continued use of the Services after we make changes is deemed to be acceptance of those changes, so please check the policy periodically for updates.</p>\r\n\r\n<p><strong><u>Children Under the Age of 18</u></strong> </p>\r\n\r\n<p>The Services are not intended for children under 18 years of age, and we do not knowingly collect personal information from children under 18. If we learn we have collected or received personal information from a child under 18 without verification of parental consent, we will delete that information. If you believe we might have any information from or about a child under 18, please contact us at <strong>hello@quicklly.com</strong>.</p>\r\n\r\n<p><strong><u>Information We Collect and How We Collect It</u></strong> </p>\r\n\r\n<p>We collect information from and about users of our Services:</p>\r\n\r\n<ul>\r\n <li>Directly from you when you provide it to us, for example when a profile is created.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Automatically when you use the App, for example when sending or receiving messages.</li>\r\n</ul>\r\n\r\n<p style=\"margin-left:20.0pt\"> <strong><em>Information You Provide to Us</em></strong><em>.</em></p>\r\n\r\n<p> When you use our Services, we may ask you to provide information:</p>\r\n\r\n<ul>\r\n <li>By which you may be personally identified, such as name, age, gender, postal address, delivery address (if different), email address, telephone number, mobile number, fax number, payment details, payment card details or bank account details (“<strong>personal information</strong>”).</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>That is about you but individually does not identify you, such as product orders, frequency of orders and other statistics.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<p>We need this information to allow you to place your order for a product, to process payment, and to inform you when the product will be delivered, and to deliver the product to you. We may also use your data to manage our Services and detect any fraud or abuse of the Services. </p>\r\n\r\n<p>Your actual order details may be stored by the Services. You may access this information by logging into your account on the website or the App, where you can view the details of your orders, access or change any details pertaining to address or bank account, and manage your newsletter subscription. </p>\r\n\r\n<p style=\"margin-left:20.0pt\"> <strong><em>Automatic Information Collection.</em></strong></p>\r\n\r\n<p> When you download, access, and use the Services, it may use technology to automatically collect:</p>\r\n\r\n<ul>\r\n <li><strong>Usage Details.</strong> We may automatically collect certain details of your access to and use of the Services, including order details, and communications or resources that you access and use through the Services.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li><strong>Device Information.</strong> We may collect information about your device and internet connection, including the device’s unique device identifier, IP address, operating system, browser type, and mobile network information.</li>\r\n <li><strong>Location Information.</strong> We collect real-time information about the location of your device in order to offer services such as recommend nearby stores.</li>\r\n</ul>\r\n\r\n<p> If you do not want us to collect this information do not use the Services or delete the App from your device.</p>\r\n\r\n<p style=\"margin-left:.25in\"> <strong><em>Information Collection Technologies</em></strong><em>.</em></p>\r\n\r\n<p>The technologies we use for automatic information collection may include:</p>\r\n\r\n<ul>\r\n <li><strong>Cookies (or mobile cookies).</strong> A cookie is a small file placed on your device. It may be possible to refuse to accept cookies by activating the appropriate setting on your device or browser. However, if you select this setting you may be unable to access certain parts of our Services.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li><strong>Web Beacons.</strong> Pages of the Services may contain small electronic files known as web beacons (also referred to as clear gifs, pixel tags, and single-pixel gifs) that permit the Company, for example, to count users who have visited those pages and for other related statistics (for example, recording the popularity of certain content and verifying system and server integrity).</li>\r\n <li><strong>Sessions.</strong> We will create sessions on the server to keep login and signup information through PRF (personal registration form) or by G+ and Facebook.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Information We Share and with Whom </u></strong> </p>\r\n\r\n<p>We shall not share your personal information with any third parties without your explicit consent. We view protection of your privacy as a very important principle and we understand clearly that you and your personal information is one of our most important assets.</p>\r\n\r\n<p>When you use the Services, we may pass your name and address on to a third party in order to make delivery of a product to you (for example our courier or supplier). We may also share your data with our parent company, and you further authorize the parent company to use this information to sell products to you directly or indirectly.</p>\r\n\r\n<p>We will not use your financial information for any purpose other than to complete a transaction carried out by you. We do not rent, sell or share any of your personally identifiable information to third parties, with the exception of the following cases:</p>\r\n\r\n<ul>\r\n <li>To help detect and prevent identity theft, fraud and other such potential illegal actions.</li>\r\n <li>To law enforcement agencies if required to do so by law or when we believe such disclosure to be reasonably necessary to respond to subpoenas, court orders, or other legal processes.</li>\r\n <li>To law enforcement officers, third party rights owners, or others when we believe such disclosure is reasonably necessary to enforce our Terms or Privacy Policy or protect the rights, property or personal safety of our users or the general public.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Unknown Third-Party Information Collection</u></strong> </p>\r\n\r\n<p>Other third parties may use automatic information collection technologies to collect information about you or your device. These third parties may include:</p>\r\n\r\n<ul>\r\n <li>Your device manufacturer.</li>\r\n <li>Your mobile service provider.</li>\r\n <li>Your internet service provider.</li>\r\n</ul>\r\n\r\n<p>We do not control these third parties’ tracking technologies or how they may be used.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>How We Use Your Information</u></strong> </p>\r\n\r\n<p> </p>\r\n\r\n<p>We use information that we collect about you or that you provide to us, including any personal information, to:</p>\r\n\r\n<ul>\r\n <li>Provide you with the Website and the App, and their contents, and any information, products or services that you request from us;</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Fulfill any other purpose for which you provide it;</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Give you notices about your account;</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Carry out our obligations and enforce our rights arising from any contracts, including for billing and collection;</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Notify you when App updates are available;</li>\r\n <li>Notify you of changes to any products or services we offer or provide though our Services.</li>\r\n</ul>\r\n\r\n<p>The usage information we collect helps us to improve our Services and to deliver a better and more personalized experience by enabling us to:</p>\r\n\r\n<ul>\r\n <li>Estimate our audience size and usage patterns.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Store information about your preferences, allowing us to customize our Services to your individual interests.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Speed up your searches.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Recognize you when you use the Services.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Disclosure of Your Aggregated Information</u></strong> </p>\r\n\r\n<p>We may disclose aggregated information about our users, and information that does not identify any individual or device, without restriction. In addition, we may disclose certain personal information that we collect or you provide:</p>\r\n\r\n<ul>\r\n <li>To contractors, service providers, and other third parties we use to support our business and who are bound by contractual obligations to keep personal information confidential and use it only for the purposes for which we disclose it to them.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>To a buyer or other successor in the event of a merger, divestiture, restructuring, reorganization, dissolution, or other sale or transfer of some or all of Company’s assets, whether as a going concern or as part of bankruptcy, liquidation, or similar proceeding, in which personal information held by Company about our Service users is among the assets transferred.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>To fulfill the purpose for which you provide it.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>For any other purpose disclosed by us when you provide the information.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>With your consent.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>To comply with any court order, law, or legal process, including to respond to any government or regulatory request.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>To enforce our rights arising from any contracts entered into between you and us, including the App End User License Agreement, and for payment processing, billing or collection.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>If we believe disclosure is necessary or appropriate to protect the rights, property, or safety of Company, our customers or others. This includes exchanging information with other companies and organizations for the purposes of fraud protection and credit risk reduction.</li>\r\n</ul>\r\n\r\n<p style=\"margin-left:24.0pt\"> </p>\r\n\r\n<p><strong><u>Your Choices About Our Collection, Use, and Disclosure of Your Information</u></strong> </p>\r\n\r\n<p>We strive to provide you with choices regarding the personal information you provide to us. This section describes mechanisms we provide for you to control certain uses and disclosures of over your information.</p>\r\n\r\n<ul>\r\n <li><strong>Tracking Technologies.</strong> You can set your browser to refuse all or some browser cookies, or to alert you when cookies are being sent. If you disable or refuse cookies or block the use of other tracking technologies, some parts of the Website and App may then be inaccessible or not function properly.</li>\r\n</ul>\r\n\r\n<p>We do not control third parties’ collection or use of your information to serve interest-based advertising. However these third parties may provide you with ways to choose not to have your information collected or used in this way. You can opt out of receiving targeted ads from members of the Network Advertising Initiative (“<strong>NAI</strong>”) on the NAI’s <a href=\"http://www.networkadvertising.org/managing/opt_out.asp\">website</a>.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Accessing and Correcting Your Personal Information</u></strong> </p>\r\n\r\n<p>You can review and change your personal information by logging into the Website or the App and visiting your account profile page. You may also send us an email at <strong>hello@quicklly.com</strong> to request access to, correct, or delete any personal information that you have provided to us. We cannot delete your personal information except by also deleting your user account. We may not accommodate a request to change information if we believe the change would violate any law or legal requirement or cause the information to be incorrect.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Your California Privacy Rights</u></strong> </p>\r\n\r\n<p>California Civil Code Section 1798.83 permits users of our App that are California residents to request certain information regarding our disclosure of personal information to third parties for their direct marketing purposes. To make such a request, please send an email to <strong>hello@quicklly.com.</strong> </p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Data Security</u></strong> </p>\r\n\r\n<p>We have implemented measures designed to secure your personal information from accidental loss and from unauthorized access, use, alteration, and disclosure. All information you provide to us is stored on our secure servers behind firewalls. Any payment transactions and tax information will be encrypted.</p>\r\n\r\n<p>The safety and security of your information also depends on you. Where we have given you (or where you have chosen) a password for access to certain parts of our App, you are responsible for keeping this password confidential. We ask you not to share your password with anyone.</p>\r\n\r\n<p>Unfortunately, the transmission of information via the internet and mobile platforms is not completely secure. Although we do our best to protect your personal information, we cannot guarantee the security of your personal information transmitted through our App. Any transmission of personal information is at your own risk. We are not responsible for circumvention of any privacy settings or security measures we provide.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Changes to Our Privacy Policy</u></strong> </p>\r\n\r\n<p>We may update our privacy policy from time to time. If we make material changes to how we treat our users’ personal information, we will post the new privacy policy on this page with a notice that the privacy policy has been updated. The date the privacy policy was last revised is identified at the top of the page. You are responsible for periodically visiting this privacy policy to check for any changes.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Contact Information</u></strong> </p>\r\n\r\n<p>To ask questions or comment about this privacy policy and our privacy practices, contact us at: <strong>hello@quicklly.com</strong></p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Information We Share and With Whom</u></strong> </p>\r\n\r\n<p>We are sending data to trackier as our third-party provider to attribute, collect, and organize app data to deliver a unified overview of different campaigns performance.</p>\r\n\r\n<p>We send data of different events like Purchase, Install, Registration, Add to Cart, Content View, Product View and the geo where the event took place. Parameters like product categories purchased or viewed are also recorded. Date and time of the event, Value of the event are also recorded.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>CCPA Privacy Policy</u></strong></p>\r\n\r\n<p>Rakuten Advertising may collect personal information when you interact with our digital property, including IP addresses, digital identifiers, information about your web browsing and app usage and how you interact with our properties and ads for a variety of purposes, such as personalization of offers or advertisements, analytics about how you engage with websites or ads and other commercial purposes. For more information about the collection, use and sale of your personal data and your rights, please use the below links.”</p>\r\n\r\n<p>Privacy policy : <a href=\"https://rakutenadvertising.com/legal-notices/services-privacy-policy/\" target=\"_blank\"><span style=\"color:#0099cc\">https://rakutenadvertising.com/legal-notices/services-privacy-policy/</span></a></p>\r\n\r\n<p>Your rights : <a href=\"https://rakutenadvertising.com/legal-notices/services-privacy-rights-request-form/\" target=\"_blank\"><span style=\"color:#0099cc\"> https://rakutenadvertising.com/legal-notices/services-privacy-rights-request-form/</span></a></p>\r\n\r\n<p> </p>\r\n',' Privacy policy - Quicklly\r\n','Privacy Policy','Quicklly takes your data privacy seriously. Our privacy policy explains who we are, how we collect, share and use Personal Information.\r\n',1),(17,'Terms & Conditions','<h2 style=\"text-align:center\"><strong>Terms of Use</strong></h2>\r\n\r\n<p>Last Modified: <span style=\"font-family:arial,sans-serif; font-size:10pt\"> 21<sup>st</sup></span> November 2022</p>\r\n\r\n<p><strong><u>Acceptance of the Terms of Use</u></strong> </p>\r\n\r\n<p>These terms of use are entered into by and between You and Quicklly is a subsidiary of MyValue365, INC., and its affiliates and subsidiaries (“<strong>Company</strong>”, “<strong>we</strong>” or “<strong>us</strong>”). The following terms and conditions (the “<strong>Terms of Use</strong>”) form a legal agreement that govern your access to and use of <a href=\"http://www.runabetterset.com\">w</a>ww.quicklly.com (the “<strong>Website</strong>”), including any content, functionality, and services offered on or through the Website, and by downloading, installing or using any associated application supplied or provided by the Company which purpose is to enable you to use the Services (the <strong>“App”</strong>) (collectively the “<strong>Services</strong>”). </p>\r\n\r\n<p>The Website is an internet based content and e-commerce portal operated and owned by Company. When you use the Website, you will be subject to the rules, guidelines, policies, terms, and conditions applicable to the goods and services sold on the Website (collectively, the “<strong>Goods</strong>”), and they shall be deemed to be incorporated into and considered part of these Terms of Use.</p>\r\n\r\n<p>The Company is willing to license, not sell, the App to you only upon the condition that you accept all the terms contained in these Terms of Use. By signing up to or by using the App, you indicate that you understand and accept these Terms of Use. If you do not accept the Terms of Use, then the Company is unwilling to license the App to you.</p>\r\n\r\n<p>Please read the Terms of Use carefully before you start to use the Services. <strong>By using the Services, you accept and agree to be bound and abide by these Terms of Use and our Privacy Policy, found at www.quicklly.com, incorporated herein by reference.</strong> If you do not want to agree to these Terms of Use or the Privacy Policy, you must not access or use the Services.</p>\r\n\r\n<p>The Services are offered and available to users who are 18 years of age or older, or who are authorized by a parent or guardian. By using this Website, you represent and warrant that you meet all the foregoing eligibility requirements. If you do not meet these requirements, you must not access or use the Services. We reserve the right to terminate your membership and/or refuse to provide you with access to the Services if it is brought to our attention or if it is discovered that you are under the age of 18 years old.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Changes to the Terms of Use</u></strong> </p>\r\n\r\n<p>We may revise and update these Terms of Use from time to time, in our sole discretion. All changes are effective immediately when we post them. However, any changes to the dispute resolution provisions set out in <a href=\"#co_anchor_a699054_1\">Governing Law and Jurisdiction</a> will not apply to any disputes for which the parties have actual notice on or before the date the change is posted on the Website.</p>\r\n\r\n<p>Your continued use of the Services following the posting of revised Terms of Use means that you accept and agree to the changes. You are expected to check this page from time to time so you are aware of any changes, as they are binding on you.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Accessing the Services and Account Security</u></strong> </p>\r\n\r\n<p>We reserve the right to withdraw or amend the Website and/or App, and any service or material we provide on them, in our sole discretion without notice. We will not be liable if for any reason all or any part of the Services is unavailable at any time or for any period. From time to time, we may restrict access to some or entire parts of the Services, to users, including registered users.</p>\r\n\r\n<p>To access the Services or some of the resources it offers, you may be asked to provide certain registration details or other information. It is a condition of your use of the Services that all the information you provide is correct, current, and complete. You agree that all information you provide to register with this Website, the App or otherwise, including but not limited to the use of any proprietary information, or interactive features, is governed by our Privacy Policy, and you consent to all actions we take with respect to your information consistent with our Privacy Policy.</p>\r\n\r\n<p>If you choose, or are provided with, a username, password, or any other piece of information as part of our security procedures, you must treat such information as confidential, and you must not disclose it to any other person or entity. You also acknowledge that your account is personal to you and agree not to provide any other person with access to the Services or portions of it using your username, password, or other security information. You agree to notify us immediately of any unauthorized access to or use of your username or password or any other breach of security. You also agree to ensure that you exit from your account at the end of each session. You should use particular caution when accessing your account from a public or shared computer or other devices so that others are not able to view or record your password or other personal information.</p>\r\n\r\n<p>We have the right to disable any username, password, or other identifier, whether chosen by you or provided by us, at any time in our sole discretion for any or no reason, including if, in our opinion, you have violated any provision of these Terms of Use.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Communications</u></strong></p>\r\n\r\n<p>By providing your data, you agree to be communicated by us via email and SMS to facilitate your navigation of and shopping from the website. We may communicate promotional offers periodically and as and when required. When you use the Website or send emails or other data, information or communication to us, you agree and understand that you are communicating with us through electronic records and you consent to receive communications via electronic records from us periodically and as and when required. We may communicate with you by email or by such other mode of communication, electronic or otherwise.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Use of the Website</u></strong></p>\r\n\r\n<p>You understand and agree that the Company and the Website merely provides hosting services to its Registered Users and Registered Sellers. All items advertised / listed and the contents therein are advertised and listed by Registered Sellers and are third party user generated contents. The Company neither originates nor initiates the transmission nor selects the sender and receiver of the transmission nor selects nor modifies the information contained in the transmission. The Company has no control over the Registered Seller contents.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Platform for Transaction and Communication</u></strong></p>\r\n\r\n<p>The Website is a platform for Users to meet and interact with one another for their transactions. The Company is not and cannot be a party to or control in any manner any transaction between the Website's Users.</p>\r\n\r\n<p>1. All commercial/contractual terms are offered by and agreed to between User/Buyer and Sellers alone. The commercial/contractual terms include without limitation price, shipping costs, payment methods, payment terms, date, period and mode of delivery, warranties related to products and services and after sales services related to products and services. The Company does not have any control or does not determine or advise or in any way involve itself in the offering or acceptance of such commercial/contractual terms between the User/Buyer and Sellers.</p>\r\n\r\n<p>2. The Company does not make any representation or Warranty as to specifics (such as quality, value, salability, etc) of the products or services proposed to be sold or offered to be sold or purchased on the Website. The Company does not implicitly or explicitly support or endorse the sale or purchase of any products or services on the Website. The Company accepts no liability for any errors or omissions, whether on behalf of itself or Registered Seller.</p>\r\n\r\n<p>3. The Company is not responsible for any non-performance or breach of any contract entered into between User/Buyers and Sellers. The Company shall not and is not required to mediate or resolve any dispute or disagreement between User/Buyers and Sellers.</p>\r\n\r\n<p>4. The Company does not at any point of time during any transaction between User/Buyer and Seller on the Website come into or take possession of any of the products or services offered by Seller nor does it at any point gain title to or have any rights or claims over the products or services offered by Seller to User/Buyer.</p>\r\n\r\n<p>5. At no time shall Company hold any right, title or interest over the products nor shall Company have any obligations or liabilities in respect of such contract entered into between Buyers and Sellers. The Company is not responsible for unsatisfactory or delayed performance of services or damages or delays as a result of products which are out of stock, unavailable or back ordered.</p>\r\n\r\n<p>6. The Website is only a platform that can be used by you to reach a larger base to buy products or services from Registered Sellers. The Website is only providing a platform for communication and it is agreed that the contract for sale of any of the products or services shall be strictly a contract between you and the Seller. At no time shall the Company hold any right, title or interest over the products nor shall the Company have any obligations or liabilities in respect of such contract.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Returns Policy</u></strong></p>\r\n\r\n<p>We follow a "no questions asked” Return and Refund policy, which entitles all our members to return the product at the time of delivery if due to some reason they are dissatisfied or have issues with the quality or freshness of the product. If the invoice amount has been paid prior to the delivery, we shall issue a credit note for the sum equivalent to the value of the items returned, which will then be credited to the User’s account on the Site. This amount may be used against future purchases on the Site.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Replacement</u></strong></p>\r\n\r\n<p>Replacement is the action or process of providing something in place of another. You can request a replacement whenever you are not happy with the item, for the following reasons: Damaged in shipping, Defective item, Item(s) missing, Freshness, Unsatisfactory quality of the product, or Wrong item shipped.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Specific Disclaimers</u></strong> </p>\r\n\r\n<p>Pricing on any product(s) as is reflected on the Website may due to some technical issue, typographical error or product information published by seller may be incorrectly reflected and in such an event seller may cancel such your order(s).</p>\r\n\r\n<p>We do not warrant that Product description or other content of this Website is accurate, complete, reliable, current, or error-free and assumes no liability in this regard.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Intellectual Property Rights</u></strong> </p>\r\n\r\n<p> </p>\r\n\r\n<p>The Website, the App, and the Services’ entire contents, features, and functionality (including but not limited to all information, software, text, displays, images, video, and audio, and the design, selection, and arrangement thereof), are owned by the Company, its licensors, or other providers of such material and are protected by United States and international copyright, trademark, patent, trade secret, and other intellectual property or proprietary rights laws. </p>\r\n\r\n<p> </p>\r\n\r\n<p>These Terms of Use permit you to use the Services for your sole, personal use. You must not reproduce, distribute, modify, create derivative works of, publicly display, publicly perform, republish, download, store, or transmit any of the material on our Website, except as follows:</p>\r\n\r\n<ul>\r\n <li>Your computer or other device may temporarily store copies of such materials in RAM incidental to your accessing and viewing those materials.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>You may store files that are automatically cached by your Web browser for display enhancement purposes.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>You may print one copy of a reasonable number of pages of the Website for your own personal, non-commercial use and not for further reproduction, publication, or distribution.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>If we provide desktop, mobile, or other Apps for download, you may download a single copy to your computer or mobile device solely for your own personal, non-commercial use, provided you agree to be bound by our end user license agreement for such Apps.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>If we provide social media features with certain content, you may take such actions as are enabled by such features.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<p>You must not:</p>\r\n\r\n<ul>\r\n <li>Modify copies of any materials from our Services.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Use any illustrations, photographs, video or audio sequences, or any graphics separately from the accompanying text, and without authorization from the Company.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Delete or alter any copyright, trademark, or other proprietary rights notices from copies of materials from our Services.</li>\r\n</ul>\r\n\r\n<p>You must not access or use for any unauthorized commercial purposes any part of the Website or App or any services or materials available through the Website or App. </p>\r\n\r\n<p>If you print, copy, modify, download, or otherwise use or provide any other person with access to any part of the Services in breach of the Terms of Use, your right to use the Services will stop immediately and you must, at our option, return or destroy any copies of the materials you have made. No right, title, or interest in or to the Services or any content on the Services is transferred to you, and all rights not expressly granted are reserved by the Company. Any use of the Services not expressly permitted by these Terms of Use is a breach of these Terms of Use and may violate copyright, trademark, and other laws.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Trademarks</u></strong> </p>\r\n\r\n<p> </p>\r\n\r\n<p>The Company name, the term Quicklly, Quicklly, the Company logo, and all related names, logos, product and service names, designs, and slogans are trademarks of the Company or its affiliates or licensors. You must not use such marks without the prior written permission of the Company. All other names, logos, product and service names, designs, and slogans on the Services are the trademarks of their respective owners.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Prohibited Uses</u></strong> </p>\r\n\r\n<p> </p>\r\n\r\n<p>You may use the Services only for lawful purposes and in accordance with these Terms of Use. You agree not to use the Services:</p>\r\n\r\n<ul>\r\n <li>In any way that violates any applicable federal, state, local, or international law or regulation (including, without limitation, any laws regarding the export of data or software to and from the US or other countries).</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>For the purpose of exploiting, harming, or attempting to exploit or harm minors in any way by exposing them to inappropriate content, asking for personally identifiable information, or otherwise.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>To send, knowingly receive, upload, download, use, or re-use any material that does not comply with the Content Standards set out in these Terms of Use.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>To transmit, or procure the sending of, any advertising or promotional material, including any “junk mail”, “chain letter”, “spam”, or any other similar solicitation.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>To impersonate or attempt to impersonate the Company, a Company employee, another user, or any other person or entity (including, without limitation, by using names and email addresses associated with any of the foregoing).</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>To engage in any other conduct that restricts or inhibits anyone’s use or enjoyment of the Services, or which, as determined by us, may harm the Company or users of the Services or expose them to liability.</li>\r\n</ul>\r\n\r\n<p> Additionally, you agree not to:</p>\r\n\r\n<ul>\r\n <li>Use the Services in any manner that could disable, overburden, damage, or impair the site or interfere with any other party’s use of the Services, including their ability to engage in real time activities through the Services.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Use any robot, spider, or other automatic device, process, or means to access the Services for any purpose, including monitoring or copying any of the material on the Services.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Use any manual process to monitor or copy any of the material on the Services or for any other unauthorized purpose without our prior written consent.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Use any device, software, or routine that interferes with the proper working of the Services.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Introduce any viruses, trojan horses, worms, logic bombs, or other material that is malicious or technologically harmful.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Attempt to gain unauthorized access to, interfere with, damage, or disrupt any parts of the Services, the server on which the Services are stored, or any server, computer, or database connected to the Services.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Attack the Services via a denial-of-service attack or a distributed denial-of-service attack.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Otherwise attempt to interfere with the proper working of the Services.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>User Contributions</u></strong> </p>\r\n\r\n<p>The Services may contain message boards, chat rooms, personal web pages or profiles, forums, bulletin boards, and other interactive features (collectively, “<strong>Interactive Services</strong>”) that allow users to post, submit, publish, display, or transmit to other users or other persons (hereinafter, “<strong>post</strong>”) content or materials (collectively, “<strong>User Contributions</strong>”) on or through the Services. All User Contributions must comply with the Content Standards set out in these Terms of Use.</p>\r\n\r\n<p>Any User Contribution you post to the site will be considered non-confidential and non-proprietary. By providing any User Contribution on the Website, you grant us and our affiliates and service providers, and each of their and our respective licensees, successors, and assigns the right to use, reproduce, modify, perform, display, distribute, and otherwise disclose to third parties any such material according to your account settings.</p>\r\n\r\n<p>You represent and warrant that:</p>\r\n\r\n<ul>\r\n <li>You own or control all rights in and to the User Contributions and have the right to grant the license granted above to us and our affiliates and service providers, and each of their and our respective licensees, successors, and assigns.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>All of your User Contributions do and will comply with these Terms of Use.</li>\r\n</ul>\r\n\r\n<p>You understand and acknowledge that you are responsible for any User Contributions you submit or contribute, and you, not the Company, have fully responsibility for such content, including its legality, reliability, accuracy, and appropriateness. We are not responsible or liable to any third party for the content or accuracy of any User Contributions posted by you or any other user of the Website.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Monitoring and Enforcement; Termination</u></strong> </p>\r\n\r\n<p>We have the right to:</p>\r\n\r\n<ul>\r\n <li>Remove or refuse to post any User Contributions for any or no reason in our sole discretion.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Take any action with respect to any User Contribution that we deem necessary or appropriate in our sole discretion, including if we believe that such User Contribution violates the Terms of Use, including the Content Standards, infringes any intellectual property right or other right of any person or entity, threatens the personal safety of users of the Services or the public, or could create liability for the Company.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Disclose your identity or other information about you to any third party who claims that material posted by you violates their rights, including their intellectual property rights or their right to privacy.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Take appropriate legal action, including without limitation, referral to law enforcement, for any illegal or unauthorized use of the Services.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Terminate or suspend your access to all or part of the Services for any reason, including without limitation, any violation of these Terms of Use.</li>\r\n</ul>\r\n\r\n<p>Without limiting the foregoing, we have the right to fully cooperate with any law enforcement authorities or court order requesting or directing us to disclose the identity or other information of anyone posting any materials on or through the Services. YOU WAIVE AND HOLD HARMLESS THE COMPANY AND ITS AFFILIATES, LICENSEES AND SERVICE PROVIDERS FROM ANY CLAIMS RESULTING FROM ANY ACTION TAKEN BY THE COMPANY/ANY OF THE FOREGOING PARTIES DURING, OR TAKEN AS A CONSEQUENCE OF, INVESTIGATIONS BY EITHER THE COMPANY/SUCH PARTIES OR LAW ENFORCEMENT AUTHORITIES.</p>\r\n\r\n<p>However, we do not undertake to review material before it is posted on the Services, and cannot ensure prompt removal of objectionable material after it has been posted. Accordingly, we assume no liability for any action or inaction regarding transmissions, communications, or content provided by any user or third party. We have no liability or responsibility to anyone for performance or nonperformance of the activities described in this section.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Content Standards</u></strong> </p>\r\n\r\n<p>These content standards apply to any and all User Contributions and use of Interactive Services. User Contributions must in their entirety comply with all applicable federal, state, local, and international laws and regulations. Without limiting the foregoing, User Contributions must not:</p>\r\n\r\n<ul>\r\n <li>Contain any material that is defamatory, obscene, indecent, abusive, offensive, harassing, violent, hateful, inflammatory, or otherwise objectionable.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Promote sexually explicit or pornographic material, violence, or discrimination based on race, sex, religion, nationality, disability, sexual orientation, or age.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Infringe any patent, trademark, trade secret, copyright, or other intellectual property or other rights of any other person.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Violate the legal rights (including the rights of publicity and privacy) of others or contain any material that could give rise to any civil or criminal liability under applicable laws or regulations or that otherwise may be in conflict with these Terms of Use and our Privacy Policy.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Be likely to deceive any person.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Promote any illegal activity, or advocate, promote, or assist any unlawful act.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Impersonate any person, or misrepresent your identity or affiliation with any person or organization.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Involve commercial activities or sales, such as contests, sweepstakes and other sales promotions, barter, or advertising.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Give the impression that they emanate from or are endorsed by us or any other person or entity, if this is not the case.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Copyright Infringement</u></strong> </p>\r\n\r\n<p>If you believe that any User Contributions violate your copyright, please send us a notice of copyright infringement to <strong>hello@quicklly.com</strong>. It is the policy of the Company to terminate the user accounts of repeat infringers.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Reliance on Information Posted</u></strong> </p>\r\n\r\n<p>The information presented on or through the Services is made available solely for general information purposes. We do not warrant the accuracy, completeness, or usefulness of this information. Any reliance you place on such information is strictly at your own risk. We disclaim all liability and responsibility arising from any reliance placed on such materials by you or any other visitor to the Services, or by anyone who may be informed of any of its contents.</p>\r\n\r\n<p>These Services may include content provided by third parties, including materials provided by other users, bloggers, and third-party licensors, syndicators, aggregators, and/or reporting services. All statements and/or opinions expressed in these materials, and all articles and responses to questions and other content, other than the content provided by the Company, are solely the opinions and the responsibility of the person or entity providing those materials. These materials do not necessarily reflect the opinion of the Company. We are not responsible, or liable to you or any third party, for the content or accuracy of any materials provided by any third parties.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Changes to the Services</u></strong> </p>\r\n\r\n<p>We may update the content on the Services from time to time, but its content is not necessarily complete or up-to-date. Any of the material on the Services may be out of date at any given time, and we are under no obligation to update such material.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Information About You and Your Visits to the Website</u></strong> </p>\r\n\r\n<p>All information we collect on the Website is subject to our Privacy Policy. By using the Website, you consent to all actions taken by us with respect to your information in compliance with the Privacy Policy.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Linking to the Website and Social Media Features</u></strong> </p>\r\n\r\n<p>You may link to our homepage, provided you do so in a way that is fair and legal and does not damage our reputation or take advantage of it, but you must not establish a link in such a way as to suggest any form of association, approval, or endorsement on our part without our express written consent.</p>\r\n\r\n<p>The Website may provide certain social media features that enable you to:</p>\r\n\r\n<ul>\r\n <li>Link from your own or certain third-party websites to certain content on the Website.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Send emails or other communications with certain content, or links to certain content, on the Website.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Cause limited portions of content on the Website to be displayed or appear to be displayed on your own or certain third-party websites.</li>\r\n</ul>\r\n\r\n<p>You may use these features solely as they are provided by us, solely with respect to the content they are displayed with. Subject to the foregoing, you must NOT:</p>\r\n\r\n<ul>\r\n <li>Establish a link from any website that is not owned by you.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Cause the Website or portions of it to be displayed on, or appear to be displayed by, any other site, for example, framing, deep linking, or in-line linking.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Link to any part of the Website other than the homepage.</li>\r\n</ul>\r\n\r\n<ul>\r\n <li>Otherwise take any action with respect to the materials on this Website that is inconsistent with any other provision of these Terms of Use. </li>\r\n</ul>\r\n\r\n<p>You agree to cooperate with us in causing any unauthorized framing or linking immediately to stop. We reserve the right to withdraw linking permission without notice.</p>\r\n\r\n<p>We may disable all or any social media features and any links at any time without notice in our discretion.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Links from the Website</u></strong> </p>\r\n\r\n<p>If the Website contains links to other sites and resources provided by third parties, these links are provided for your convenience only. This includes links contained in advertisements, including banner advertisements and sponsored links. We have no control over the contents of those sites or resources, and accept no responsibility for them or for any loss or damage that may arise from your use of them. If you decide to access any of the third-party websites linked to this Website, you do so entirely at your own risk and subject to the terms and conditions of use for such websites.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Geographic Restrictions</u></strong> </p>\r\n\r\n<p>The owner of the Services is based in the state of Illinois in the United States. We provide these Services for use only by persons located in the United States. We make no claims that the Services or any of its content is accessible or appropriate outside of the United States. Access to the Services may not be legal by certain persons or in certain countries. If you access the Services from outside the United States, you do so on your own initiative and are responsible for compliance with local laws.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Disclaimer of Warranties</u></strong> </p>\r\n\r\n<p>You understand that we cannot and do not guarantee or warrant that Services or files available for downloading from the internet will be free of viruses or other destructive code. You are responsible for implementing sufficient procedures and checkpoints to satisfy your particular requirements for anti-virus protection and accuracy of data input and output, and for maintaining a means external to our site for any reconstruction of any lost data. TO THE FULLEST EXTENT PROVIDED BY LAW, WE WILL NOT BE LIABLE FOR ANY LOSS OR DAMAGE CAUSED BY A DISTRIBUTED DENIAL-OF-SERVICE ATTACK, VIRUSES, OR OTHER TECHNOLOGICALLY HARMFUL MATERIAL THAT MAY INFECT YOUR COMPUTER EQUIPMENT, COMPUTER PROGRAMS, DATA, OR OTHER PROPRIETARY MATERIAL DUE TO YOUR USE OF THE WEBSITE OR THE APP OR ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE OR THE APP TO YOUR DOWNLOADING OF ANY MATERIAL POSTED ON IT, OR ON ANY WEBSITE LINKED TO IT.</p>\r\n\r\n<p> </p>\r\n\r\n<p>YOUR USE OF THE WEBSITE, THE APP, THEIR CONTENT, AND ANY SERVICES OR ITEMS OBTAINED THROUGH THEM IS AT YOUR OWN RISK. THE WEBSITE, THE APP, THEIR CONTENT, AND ANY OTHER SERVICES OR ITEMS OBTAINED THROUGH THEM ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITHOUT ANY WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED. NEITHER THE COMPANY NOR ANY PERSON ASSOCIATED WITH THE COMPANY MAKES ANY WARRANTY OR REPRESENTATION WITH RESPECT TO THE COMPLETENESS, SECURITY, RELIABILITY, QUALITY, ACCURACY, OR AVAILABILITY OF THE SERVICES. WITHOUT LIMITING THE FOREGOING, NEITHER THE COMPANY NOR ANYONE ASSOCIATED WITH THE COMPANY REPRESENTS OR WARRANTS THAT THE WEBSITE, THE APP, THEIR CONTENT, OR ANY OTHER SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE WILL BE ACCURATE, RELIABLE, ERROR-FREE, OR UNINTERRUPTED, THAT DEFECTS WILL BE CORRECTED, THAT OUR SITE, APP OR THE SERVER THAT MAKES TEM AVAILABLE ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS, OR THAT THE WEBSITE, THE APP OR ANY SERVICES OR ITEMS OBTAINED THROUGH THE WEBSITE OR THE APP WILL OTHERWISE MEET YOUR NEEDS OR EXPECTATIONS. </p>\r\n\r\n<p>TO THE FULLEST EXTENT PROVIDED BY LAW, THE COMPANY HEREBY DISCLAIMS ALL WARRANTIES OF ANY KIND, WHETHER EXPRESS OR IMPLIED, STATUTORY, OR OTHERWISE, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, NON-INFRINGEMENT, AND FITNESS FOR PARTICULAR PURPOSE.</p>\r\n\r\n<p>THE FOREGOING DOES NOT AFFECT ANY WARRANTIES THAT CANNOT BE EXCLUDED OR LIMITED UNDER APPLICABLE LAW.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Limitation on Liability</u></strong> </p>\r\n\r\n<p>TO THE FULLEST EXTENT PROVIDED BY LAW, IN NO EVENT WILL THE COMPANY, ITS AFFILIATES, OR THEIR LICENSORS, SERVICE PROVIDERS, EMPLOYEES, AGENTS, OFFICERS, OR DIRECTORS BE LIABLE FOR DAMAGES OF ANY KIND, UNDER ANY LEGAL THEORY, ARISING OUT OF OR IN CONNECTION WITH YOUR USE, OR INABILITY TO USE, THE SERVICES, ANY WEBSITES LINKED TO IT, ANY CONTENT ON THE SERVICES OR SUCH OTHER CONTENT, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, OR PUNITIVE DAMAGES, INCLUDING BUT NOT LIMITED TO, PERSONAL INJURY, PAIN AND SUFFERING, EMOTIONAL DISTRESS, LOSS OF REVENUE, LOSS OF PROFITS, LOSS OF BUSINESS OR ANTICIPATED SAVINGS, LOSS OF USE, LOSS OF GOODWILL, LOSS OF DATA, AND WHETHER CAUSED BY TORT (INCLUDING NEGLIGENCE), BREACH OF CONTRACT, OR OTHERWISE, EVEN IF FORESEEABLE. THE FOREGOING DOES NOT AFFECT ANY LIABILITY THAT CANNOT BE EXCLUDED OR LIMITED UNDER APPLICABLE LAW.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Indemnification</u></strong> </p>\r\n\r\n<p>You agree to defend, indemnify, and hold harmless the Company, its affiliates, licensors, and service providers, and its and their respective officers, directors, employees, contractors, agents, licensors, suppliers, successors, and assigns from and against any claims, liabilities, damages, judgments, awards, losses, costs, expenses, or fees (including reasonable attorneys’ fees) arising out of or relating to your violation of these Terms of Use or your use of the Services, including, but not limited to, your User Contributions, any use of the Services’ content, materials, and products other than as expressly authorized in these Terms of Use or your use of any information obtained from the Services.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Governing Law and Jurisdiction</u></strong> </p>\r\n\r\n<p>All matters relating to the Services and these Terms of Use and any dispute or claim arising therefrom or related thereto (in each case, including non-contractual disputes or claims), shall be governed by and construed in accordance with the internal laws of the State of Illinois without giving effect to any choice or conflict of law provision or rule (whether of the State of Illinois or any other jurisdiction).</p>\r\n\r\n<p>Any legal suit, action, or proceeding arising out of, or related to, these Terms of Use or the Services shall be instituted exclusively in the federal courts of the United States or the courts of the State of Illinois in each case located in the City of Chicago and County of Cook (although we retain the right to bring any suit, action, or proceeding against you for breach of these Terms of Use in your country of residence or any other relevant country). You waive any and all objections to the exercise of jurisdiction over you by such courts and to venue in such courts.</p>\r\n\r\n<p> </p>\r\n\r\n<p> <strong><u>Limitation on Time to File Claims</u></strong> </p>\r\n\r\n<p>ANY CAUSE OF ACTION OR CLAIM YOU MAY HAVE ARISING OUT OF OR RELATING TO THESE TERMS OF USE OR THE WEBSITE MUST BE COMMENCED WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES, OTHERWISE, SUCH CAUSE OF ACTION OR CLAIM IS PERMANENTLY BARRED.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Waiver and Severability</u></strong> </p>\r\n\r\n<p>No waiver of by the Company of any term or condition set out in these Terms of Use shall be deemed a further or continuing waiver of such term or condition or a waiver of any other term or condition, and any failure of the Company to assert a right or provision under these Terms of Use shall not constitute a waiver of such right or provision.</p>\r\n\r\n<p>If any provision of these Terms of Use is held by a court or other tribunal of competent jurisdiction to be invalid, illegal or unenforceable for any reason, such provision shall be eliminated or limited to the minimum extent such that the remaining provisions of the Terms of Use will continue in full force and effect.</p>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Entire Agreement</u></strong> </p>\r\n\r\n<p>The Terms of Use and our Privacy Policy constitute the sole and entire agreement between you and Quicklly, Inc., regarding the Services and supersede all prior and contemporaneous understandings, agreements, representations, and warranties, both written and oral, regarding the Website.</p>\r\n\r\n<p> </p>\r\n\r\n<p><span style=\"font-size:16px\"><strong>Shipping Policy</strong></span></p>\r\n\r\n<p><strong>1. Delivery Areas:</strong> Quicklly, the nation's leading online marketplace for Indian food and groceries, is dedicated to bringing the flavors and ingredients of Indian cuisine to customers across the United States. Quicklly strives to provide delivery services to as many areas as possible. However, the availability of delivery may vary depending on the specific location. Customers can conveniently check the availability of delivery to their area by entering their zip code or address during the checkout process.</p>\r\n\r\n<p><strong>2. Delivery Time:</strong> Quicklly understands the importance of timely delivery and aims to ensure that customers receive their orders promptly. During the checkout process, Quicklly provides an estimated delivery time, considering the customer's location and the availability of delivery slots. The estimated delivery time serves as a guide, allowing customers to plan accordingly.</p>\r\n\r\n<p><strong>3. Delivery Charges:</strong> Quicklly strives to offer competitive and transparent pricing for its delivery services. To provide customers with the added benefit of free delivery, Quicklly set a minimum order requirement of $30. If the order does not meet the minimum requirement, a delivery charge applies. The specific delivery charges will be clearly communicated to the customer during the checkout process, allowing for informed decision-making.</p>\r\n\r\n<p><strong>4. Packaging and Quality:</strong> Quicklly takes great care in packaging each order, employing industry-standard practices to maintain the quality and freshness of the items during transit. Special attention is given to perishable items, utilizing appropriate temperature control measures and secure packaging to preserve their integrity and taste.</p>\r\n\r\n<p><strong>5. Shipment Confirmation:</strong> To keep customers informed and engaged, Quicklly provides a comprehensive shipment confirmation process. Once an order is successfully placed and processed, customers receive a shipment confirmation email and/or SMS notification. This confirmation serves as an acknowledgment of the order and includes essential details such as the items shipped, the estimated delivery date, and a tracking number or link. With the tracking information at their fingertips, customers can easily monitor the progress of their order and anticipate its arrival.</p>\r\n\r\n<p><strong>6. Order Tracking:</strong> Quicklly offers an intuitive order tracking feature. Through the provided tracking number or link, customers can conveniently access detailed tracking information. This includes the estimated delivery time and any relevant updates regarding the status of the order. Whether through the Quicklly website, mobile app, or customer support, customers can stay informed about their delivery every step of the way. *Please note that real-time tracking is limited to orders made from certain partner stores.</p>\r\n\r\n<p><strong>7. Delivery Issues and Returns:</strong> In the event of any issues or concerns regarding the delivery, such as missing items or damaged products, Quicklly encourages customers to promptly contact their dedicated customer support team. Customers can reach out within a reasonable timeframe, and Quicklly will take appropriate action to resolve the issue. This may involve providing replacements, issuing refunds, or taking other necessary measures to ensure customer satisfaction. In cases where photographic evidence is required to document damaged items, Quicklly will guide customers through the process.</p>\r\n\r\n<p><strong>8. Refunds and Cancellations: </strong>Customers have the option to cancel their order within 2 hours of placing it. However, if a cancellation is made after the order has been dispatched, Quicklly's cancellation and refund policy will apply. This policy takes into account the specific circumstances of the order and ensures fair and appropriate resolution. Refunds for canceled or returned items will be processed using the same payment method used during the purchase. For eligible returns, refunds will be issued once the returned items are received and inspected, ensuring a smooth and hassle-free refund process.</p>\r\n\r\n<p><strong>9. Legal Terms:</strong> By placing an order on Quicklly's eCommerce store, customers agree to comply with all applicable laws and regulations regarding the purchase, shipping, and delivery of the ordered products. Quicklly expects customers to provide accurate and up-to-date shipping information to ensure successful and timely delivery. Quicklly reserves the right to refuse service, cancel orders, or modify the shipping policy at any time without prior notice. By using the Quicklly platform, customers acknowledge and agree to the terms and conditions outlined in the legal agreements governing the use of the website and services.</p>\r\n\r\n<p><strong>10. Customer Support:</strong> Quicklly's dedicated support team is available to address any queries, concerns, or issues related to orders or deliveries. Customers can reach out the support team via email, phone, or through the support channels available on the Quicklly website. The support team is committed to providing prompt and personalized assistance, ensuring a positive and satisfactory experience for all Quicklly customers.</p>\r\n\r\n<p> </p>\r\n\r\n<p><span style=\"font-size:16px\"><strong>Gift Cards:</strong></span></p>\r\n\r\n<ul>\r\n <li>The gift card cannot be combined with any other offers or promotions.</li>\r\n <li>Validity periods range from 1 month to 6 months based on the type of gift card purchased.</li>\r\n <li>For specific details regarding the validity period of your gift card, please refer to the card or contact customer service.</li>\r\n <li>The gift card cannot be exchanged for cash or its equivalent.</li>\r\n</ul>\r\n\r\n<p> </p>\r\n\r\n<p><strong><u>Your Comments and Concerns</u></strong> </p>\r\n\r\n<p>These Services are operated by QUICKLLY, INC., [COMPANY ADDRESS].</p>\r\n\r\n<p>All notices of copyright infringement claims should be sent to the copyright agent [NAME AND EMAIL].</p>\r\n\r\n<p>All other feedback, comments, requests for technical support, and other communications relating to the Services should be directed to: <strong>hello@quicklly.com</strong>.</p>\r\n','Terms & Conditions - Quicklly\r\n','','We may revise and update these Terms of Use from time to time, in our sole discretion. All changes are effective immediately when we post them.\r\n',1),(19,'FAQs','<p style=\"text-align:justify\">Kindly check the FAQs below if you are not very familiar with the functioning of this website. If your query is of urgent nature and is different from the set of questions then do write to us at info@myvalue365.com or call us on +91-8527399365 between 7 am & 10 pm on all days including Sunday to get our immediate help.</p>\r\n','Online Grocery Store Noida and Ghaziabad','online grocery shopping chicago,\r\nbest grocery delivery chicago,\r\norder groceries online chicago,\r\nonline grocery chicago,\r\nlocal grocery delivery,\r\ngrocery home delivery chicago,\r\ngrocery stores in chicago area,\r\nIndian grocery store in chicago,\r\nonline grocery store,\r\nIndian food in chicago,\r\nIndian spices in chicago,','FAQs',1),(23,'Our Team','<p style=\"text-align:justify\"><span style=\"color:rgb(255, 0, 0)\"><strong>About Our Team</strong></span></p>\r\n\r\n<p style=\"text-align:justify\">A brief look at the dynamic and people-friendly team behind MyValue 365, for whom <strong>customer service is their top priority:</strong></p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"color:rgb(255, 0, 0)\"><span style=\"font-size:16px\"><u>Subhash Pahwa, Chairman</u></span></span></p>\r\n\r\n<p style=\"text-align:justify\">Armed with a Masters degree in Commerce, Subhash Pahwa has an awe-inspiring 30 years of experience of managing retail operations. Taking care of key partnerships such as with dealers and numerous other stakeholders is second nature to him.</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"color:rgb(255, 0, 0)\"><span style=\"font-size:16px\"><u>Hanish Pahwa, Co-Founder & CEO</u></span></span></p>\r\n\r\n<p style=\"text-align:justify\">With a background in Engineering, and an MBA from Purdue University (USA), geography has never prevented him from spreading his wings. Luckily for him, his work also satisfies his passion for travelling. Various clients worldwide have benefitted from his help in business development and streamlining of business process. MyValue 365 is his venture to contribute these same skills, besides managing key targets and looking after overall business health, including operations, marketing, partnerships and more. And for personal fitness, he swears by gymming.</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"color:rgb(255, 0, 0)\"><span style=\"font-size:16px\"><u>Keval Raj, Co-founder & CMO</u></span></span></p>\r\n\r\n<p style=\"text-align:justify\">Strategy and innovation go hand-in-hand under him. He has been instrumental in reshaping marketing departments in various organizations he has worked with. He started his career with a BBA degree from Amity, followed by a Masters in Enterprenuership & International business , University of Glasgow (UK). When not exercising his grey cells, he can be found flexing muscles in the gym. Or hosting superbly organized events!</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"color:rgb(255, 0, 0)\"><span style=\"font-size:16px\"><u>Abhishek Bhardwaj, Co-founder & CTO</u></span></span></p>\r\n\r\n<p style=\"text-align:justify\">He holds an engineering degree from Purdue University (USA), and has worked with many international clients, delivering various working ecommerce models globally. He looks forward to add value and implement the same knowledge to advantage in this venture. Technology is his forte, as also his core work area.</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"color:rgb(255, 0, 0)\"><span style=\"font-size:16px\"><u>Akash Pahwa, Co-founder & COO</u></span></span></p>\r\n\r\n<p style=\"text-align:justify\">With 5 years of solid experience managing the retail chain “Value 365” in the capacity of Director, Akash will be responsible for looking after the operations of the new company. He is currently pursuing a BA from the University of Delhi and also some operations-oriented courses to find more innovative ways to upgrade services for the end-customer. To unwind, he loves listening to music and travelling.</p>\r\n\r\n<p style=\"text-align:justify\"><span style=\"color:rgb(255, 0, 0)\"><span style=\"font-size:16px\"><u>Hiren Bhatt, Co-Founder & CFO</u></span></span></p>\r\n\r\n<div>Where there is finance, there is Hiren. With an MBA (majoring in Finance), an M.Com (majoring in Accounting), and a BMS (again, with a major in Finance) in his academic kitty, no wonder his personal interests also revolve around investing in derivatives and currency!</div>\r\n\r\n<div> </div>\r\n\r\n<p>Besides contributing his expertise in finance and investments, he also has a nose for identifying up-and-coming, rewarding opportunities. Apart from supporting Myvalue365.com finance team , he has been working as a Senior Business Analyst with <em>UBS Bank</em>, he has previously worked with <em>Asurion Inc</em> and <em>Broadcast Music Inc</em>.</p>\r\n\r\n<p style=\"text-align:justify\"> </p>\r\n\r\n<p style=\"text-align:justify\"> </p>\r\n','','online grocery shopping chicago,\r\nbest grocery delivery chicago,\r\norder groceries online chicago,\r\nonline grocery chicago,\r\nlocal grocery delivery,\r\ngrocery home delivery chicago,\r\ngrocery stores in chicago area,\r\nIndian grocery store in chicago,\r\nonline grocery store,\r\nIndian food in chicago,\r\nIndian spices in chicago,','',1),(24,'Vission!','<h3 style=\"text-align:center\"><span style=\"color:#000000\">Vision!</span></h3>\r\n\r\n<p style=\"text-align:justify\"><span style=\"color:#333333\">Myvalue365.com aims to automate the entire online market process pertaining to shopping of grocery items, daily needs products, and fresh produce, especially those available in ethnic-specialty grocery stores. In the process, the wholesalers, the retailers and, of course, the customers will be benefitted. Win-win for all!<br />\r\n<br />\r\nThis platform will connect the retailers to the customers (and vice versa), the wholesalers to the retailers (and vice versa) and the customers to the wholesalers (and vice versa).<br />\r\n<br />\r\nCurrently on offer are grocery and other daily needs products. Soon, the platform will expand to launch a virtual supermarket that will include other product categories such as electronics, furniture, home décor, and accessories. In addition, many more services will be made available – restaurants, handyman, cleaning, plumbing, and repairs.<br />\r\n <br />\r\nBe it products or services, myValue365 will have control of the entire transaction, and will offer quality service to the customers.</span></p>\r\n','Myvalue365 Vission','Myvalue365 Vission','Myvalue365 Vission',1),(25,'Who?','<h3 style=\"text-align:center\"><span style=\"color:#000000\">Who?</span></h3>\r\n\r\n<p style=\"text-align:justify\"><span style=\"color:#333333\">We are a Chicago-based online grocery portal, seeking to provide digital presence to ethnic-specialty grocery stores – Spanish, Indian, and Chinese – and offer their products at the best possible prices, and with maximum convenience, to the customers.</span></p>\r\n','Who is Quicklly','online grocery shopping chicago,\r\nbest grocery delivery chicago,\r\norder groceries online chicago,\r\nonline grocery chicago,\r\nlocal grocery delivery,\r\ngrocery home delivery chicago,\r\ngrocery stores in chicago area,\r\nIndian grocery store in chicago,\r\nonline grocery store,\r\nIndian food in chicago,\r\nIndian spices in chicago,','Who is Quicklly',1),(26,'How?','<h3 style=\"text-align:center\"><span style=\"color:#000000\">How?</span></h3>\r\n\r\n<p style=\"text-align:justify\"><span style=\"color:#333333\">Myvalue365.com acts as THE link among the consumers, retailers, and wholesalers. We connect all of them to build an online community of buyers and sellers. <br />\r\n<br />\r\nUsers can enter the postal code of the specific area they are based in as the guiding factor to browse through and select all the items to meet their needs.<br />\r\n<br />\r\nWe integrate existing local businesses, small and big – convenience stores, bakeries, electronics, restaurants, handyman and repair services, etc – into the network to maximize reach and minimize logistical hassles. <br />\r\n<br />\r\nFurther, we connect retailers and wholesalers, and provide them with a platform for inventory management.</span></p>\r\n','How myvalue365 work','online grocery shopping chicago,\r\nbest grocery delivery chicago,\r\norder groceries online chicago,\r\nonline grocery chicago,\r\nlocal grocery delivery,\r\ngrocery home delivery chicago,\r\ngrocery stores in chicago area,\r\nIndian grocery store in chicago,\r\nonline grocery store,\r\nIndian food in chicago,\r\nIndian spices in chicago,','How myvalue365 work',1),(27,'Landing Page (Index.php)','<p>Home Page of Quicklly.com</p>\r\n','Buy Groceries & Food Online | Same Day Delivery - Quicklly','online grocery, order groceries online, online grocery delivery, online grocery store, grocery shop online, online grocery near me, online grocery shopping\r\n','Shop Online and have Groceries & Food delivered to your door. Free and Same-day delivery.',1),(28,'Store Listing Page (products.php)','<p>After choosing any category or subcategory or on click on SHOP NOW button on Banners</p>\r\n','Buy Groceries Online | Online Grocery Store in Chicago - Quicklly','online grocery shopping chicago,\r\nbest grocery delivery chicago,\r\norder groceries online chicago,\r\nonline grocery chicago,\r\nlocal grocery delivery,\r\ngrocery home delivery chicago,\r\ngrocery stores in chicago \r\n','We offer ease of online grocery shopping from our local stores in Chicago. Shop from our wide range of groceries at best price.Visit us now free delivery.\"',1),(29,'Product Listing Page (listing.php)','<p>Display all products of a category or subcategory</p>\r\n','Organic & Farm fresh Groceries local store Chicago | Free Delivery - MyValue365','farm fresh groceries delivery\r\nfresh groceries online\r\nlocal organic food delivery\r\nfarm fresh grocery store\r\nfarm fresh grocery delivery\r\norganic grocery delivery\r\nOnline organic grocery \r\n','We deliver organic & farm fresh groceries at best price. Experience the best organic produce & fresh grocery delivery services online. Shop now & get free delivery in Chicago.',1),(30,'Order Review Page (basket.php)','<p>Review order before make payment.</p>\r\n','Quicklly- Online grocery Supermarket | Review Order','online grocery shopping chicago,\r\nbest grocery delivery chicago,\r\norder groceries online chicago,\r\nonline grocery chicago,\r\nlocal grocery delivery,\r\ngrocery home delivery chicago,\r\ngrocery stores in chicago area,\r\nIndian grocery store in chicago,\r\nonline grocery store,\r\nIndian food in chicago,\r\nIndian spices in chicago,','Best super saver prices. 100% items delivered. Doorstep Returns. Lowest Price Guaranteed. Online Grocery Store Chicago.\r\nBrands: Amul, Britannia, Maggi, Cadbury, Aashirvaad, Fortune, Coca Cola, Pepsi, Nuttella.',1),(31,'What We Do','<h3>Nation's most comprehensive, one-stop South Asian marketplace.</h3>\r\n\r\n<p>Quicklly makes it easier for people to order their favorite South Asian food and grocery items in just a few clicks. Consumers can browse through countless Indian brands offering their beloved desi items.</p>\r\n\r\n<p>Quicklly provides access to 10000+ products, including Indian grocery ingredients, meal kits, and <a href=\"https://www.quicklly.com/indian-grocery/order-halal-meat-poultry\"><span style=\"color:#008000\">halal meat with doorstep delivery</span></a>. Enjoy Free Delivery along with same-day delivery in <a href=\"https://www.quicklly.com/indian-grocery-delivery/near-me-in-chicago-il\"><span style=\"color:#008000\">Chicago</span></a>, Chicago Land, <a href=\"https://www.quicklly.com/indian-grocery-delivery/near-me-in-manhattan-ny\"><span style=\"color:#008000\">New York</span></a>, <a href=\"https://www.quicklly.com/indian-grocery-delivery/near-me-in-new-jersey-nj\"><span style=\"color:#008000\">New Jersey</span></a>, and Bay Area. Find your favorite Indian grocery brands listed on Quicklly!</p>\r\n','','','',1),(32,'What We Provide','<h3>What We Provide</h3>\r\n\r\n<p>Quicklly provides a complete digital presence for local businesses that offer Indian Groceries, Indian Food, Tiffins, and Meal Baskets with a same-day delivery option, connecting them to customers across Greater Chicago, San Francisco, the Bay Area, New Jersey, New York and nationwide.</p>','\r\n','','',1),(33,'Quickllys Nationwide Offerings1','<h3>Quicklly's Nationwide Offerings.</h3>\r\n\r\n<p>With some of the best South Asian Restaurants and Grocery Stores on board, Quicklly brings the flavors of India to a foreign land. Consumers can now shop based on their needs on the Quicklly website or mobile app.</p>\r\n','','','',1),(34,'Quickllys Nationwide Offerings2','<h3>Quicklly's Nationwide Offerings.</h3>\r\n\r\n<p>Indian Meal Kit - for ready to eat food<br />\r\n<a href=\"https://www.quicklly.com/order-indian-roti-kit\"><span style=\"color:#008000\">Indian Roti Kit</span></a> - for soft and fluffy rotis<br />\r\n<a href=\"https://www.quicklly.com/order-chai-tea-coffee-kit\"><span style=\"color:#008000\">Chai Tea & Coffee Kit</span></a> - for authentic Indian beverages</p>\r\n','','','',1),(35,'Quickllys Nationwide Offerings3','<h3>Quicklly's Nationwide Offerings.</h3>\r\n\r\n<p><a href=\"https://www.quicklly.com/indian-seasoning-kit\"><span style=\"color:#008000\">Indian Seasoning Kit</span></a> - for locally sourced Indian spices<br />\r\n<a href=\"https://www.quicklly.com/organic-indian-grocery-delivery\"><span style=\"color:#008000\">Organic Indian Grocery Box</span></a> - to shop for organic Indian groceries<br />\r\n<a href=\"https://www.quicklly.com/indian-bbq-skewers-marinade-kit\"><span style=\"color:#008000\">Indian BBQ Kit</span></a> - to enjoy sizzling BBQ's without the hassle</p>\r\n','','','',1); /*!40000 ALTER TABLE `tbl_content` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_content_food_grocery` -- DROP TABLE IF EXISTS `tbl_content_food_grocery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_content_food_grocery` ( `id` int NOT NULL, `title` varchar(255) NOT NULL, `sectionid` int NOT NULL, `content` varchar(255) NOT NULL, `page` varchar(255) NOT NULL, `location` varchar(255) NOT NULL, `meta_title` varchar(255) NOT NULL, `meta_description` text NOT NULL, `meta_keywords` text NOT NULL, `status` enum('1','0') NOT NULL, `entry` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_content_food_grocery` -- LOCK TABLES `tbl_content_food_grocery` WRITE; /*!40000 ALTER TABLE `tbl_content_food_grocery` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_content_food_grocery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_country` -- DROP TABLE IF EXISTS `tbl_country`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_country` ( `id` int NOT NULL, `country` varchar(255) NOT NULL, `phone_code` varchar(10) NOT NULL, `status` int NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_country` -- LOCK TABLES `tbl_country` WRITE; /*!40000 ALTER TABLE `tbl_country` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_country` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_coupon` -- DROP TABLE IF EXISTS `tbl_coupon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_coupon` ( `id` int NOT NULL AUTO_INCREMENT, `ref_user_id` varchar(50) NOT NULL, `hero` varchar(2) NOT NULL, `spin` varchar(3) NOT NULL, `coupon_code` varchar(255) NOT NULL, `valid_for` enum('All','Particular','All_APP','WEB','APP_FIRST_TIME_USER','WEB_FIRST_TIME_USER') DEFAULT NULL, `discount_type` enum('Percent','Direct') NOT NULL, `valid_time` varchar(50) NOT NULL, `discount` double NOT NULL, `minimum_purchase` double NOT NULL, `to_email` varchar(255) NOT NULL, `expire_date` date NOT NULL, `generate_date` datetime NOT NULL, `plan_id` tinyint NOT NULL DEFAULT '0', `sort_order` int NOT NULL DEFAULT '0', `status` tinyint NOT NULL, `notification_id` int DEFAULT NULL, `location` longtext, `store_id` longtext, `email_notification_id` int DEFAULT NULL, `section` varchar(500) DEFAULT NULL, `applicable_on` enum('pickup','delivery') DEFAULT NULL, `coupon_code_type` varchar(50) DEFAULT NULL, `coupon_type` varchar(100) DEFAULT NULL, `store_type` varchar(50) DEFAULT NULL, `coupon_source` int DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=59291 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_coupon` -- LOCK TABLES `tbl_coupon` WRITE; /*!40000 ALTER TABLE `tbl_coupon` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_coupon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_courier` -- DROP TABLE IF EXISTS `tbl_courier`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_courier` ( `id` int NOT NULL, `order_id` int NOT NULL, `courier_request` text NOT NULL, `courier_response` text NOT NULL, `label` text, `created_timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_courier` -- LOCK TABLES `tbl_courier` WRITE; /*!40000 ALTER TABLE `tbl_courier` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_courier` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_courier_vendor` -- DROP TABLE IF EXISTS `tbl_courier_vendor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_courier_vendor` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(100) DEFAULT NULL, `code` varchar(50) DEFAULT NULL, `status` tinyint NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_courier_vendor` -- LOCK TABLES `tbl_courier_vendor` WRITE; /*!40000 ALTER TABLE `tbl_courier_vendor` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_courier_vendor` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_cron_jobs` -- DROP TABLE IF EXISTS `tbl_cron_jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_cron_jobs` ( `id` int NOT NULL AUTO_INCREMENT, `userid` int NOT NULL, `email` varchar(1000) NOT NULL, `thirtydate` varchar(500) NOT NULL, `wishdate` varchar(500) NOT NULL, `cartdate` varchar(500) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2557 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_cron_jobs` -- LOCK TABLES `tbl_cron_jobs` WRITE; /*!40000 ALTER TABLE `tbl_cron_jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_cron_jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_cronjob_snap` -- DROP TABLE IF EXISTS `tbl_cronjob_snap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_cronjob_snap` ( `id` int NOT NULL AUTO_INCREMENT, `posted_date` datetime NOT NULL, `status` int NOT NULL, `order_id` int NOT NULL, `store_id` int NOT NULL, `delivery_date` date NOT NULL, `delivery_time` varchar(50) NOT NULL, `name` varchar(100) NOT NULL, `phone` varchar(50) NOT NULL, `state` varchar(100) NOT NULL, `city` varchar(100) NOT NULL, `street` varchar(500) NOT NULL, `apt` varchar(100) NOT NULL, `zip` varchar(50) NOT NULL, `notes` varchar(500) NOT NULL, `subtotal` double NOT NULL, `tip` double NOT NULL, `total` double NOT NULL, `item_ids` varchar(1000) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=133 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_cronjob_snap` -- LOCK TABLES `tbl_cronjob_snap` WRITE; /*!40000 ALTER TABLE `tbl_cronjob_snap` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_cronjob_snap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_cuminclub_insta_order_log` -- DROP TABLE IF EXISTS `tbl_cuminclub_insta_order_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_cuminclub_insta_order_log` ( `id` bigint NOT NULL AUTO_INCREMENT, `insta_order_id` bigint NOT NULL, `quicklly_order_id` varchar(255) NOT NULL, `req_payload` mediumtext, `response` text, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `end_point` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_cuminclub_insta_order_log` -- LOCK TABLES `tbl_cuminclub_insta_order_log` WRITE; /*!40000 ALTER TABLE `tbl_cuminclub_insta_order_log` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_cuminclub_insta_order_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_currybox_line_items` -- DROP TABLE IF EXISTS `tbl_currybox_line_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_currybox_line_items` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(500) DEFAULT NULL, `SKU` varchar(100) DEFAULT NULL, `price` varchar(20) DEFAULT NULL, `product_id` int DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=63 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_currybox_line_items` -- LOCK TABLES `tbl_currybox_line_items` WRITE; /*!40000 ALTER TABLE `tbl_currybox_line_items` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_currybox_line_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_deliveryestimate` -- DROP TABLE IF EXISTS `tbl_deliveryestimate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_deliveryestimate` ( `id` int NOT NULL, `cat_id` int NOT NULL, `min_days` int NOT NULL, `max_days` int NOT NULL, `dayshour` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_deliveryestimate` -- LOCK TABLES `tbl_deliveryestimate` WRITE; /*!40000 ALTER TABLE `tbl_deliveryestimate` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_deliveryestimate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_device_token` -- DROP TABLE IF EXISTS `tbl_device_token`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_device_token` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `device_type` varchar(20) DEFAULT NULL, `device_token` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `status` tinyint NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `user_id` (`user_id`,`device_token`) ) ENGINE=InnoDB AUTO_INCREMENT=3117942 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_device_token` -- LOCK TABLES `tbl_device_token` WRITE; /*!40000 ALTER TABLE `tbl_device_token` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_device_token` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_discount_lable` -- DROP TABLE IF EXISTS `tbl_discount_lable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_discount_lable` ( `id` int NOT NULL AUTO_INCREMENT, `display_label` varchar(100) NOT NULL, `discount_slug` varchar(100) NOT NULL, `discount_from` double NOT NULL, `discount_to` double NOT NULL, `display_order` int NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_discount_lable` -- LOCK TABLES `tbl_discount_lable` WRITE; /*!40000 ALTER TABLE `tbl_discount_lable` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_discount_lable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_driver` -- DROP TABLE IF EXISTS `tbl_driver`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_driver` ( `id` int NOT NULL AUTO_INCREMENT, `fname` varchar(50) NOT NULL, `lname` varchar(50) NOT NULL, `status` tinyint(1) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_driver` -- LOCK TABLES `tbl_driver` WRITE; /*!40000 ALTER TABLE `tbl_driver` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_driver` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_email_marketing` -- DROP TABLE IF EXISTS `tbl_email_marketing`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_email_marketing` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(500) NOT NULL, `template_type_id` int NOT NULL, `template_id` int NOT NULL, `discount_type` enum('Percent','Direct') NOT NULL, `valid_time` varchar(50) NOT NULL, `discount` double NOT NULL, `minimum_purchase` double NOT NULL, `expire_date` date NOT NULL, `generate_date` datetime NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_email_marketing` -- LOCK TABLES `tbl_email_marketing` WRITE; /*!40000 ALTER TABLE `tbl_email_marketing` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_email_marketing` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_email_marketing_template` -- DROP TABLE IF EXISTS `tbl_email_marketing_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_email_marketing_template` ( `id` int NOT NULL AUTO_INCREMENT, `template_type_id` int NOT NULL, `template_title` varchar(500) NOT NULL, `email_subject` varchar(500) NOT NULL, `email_content` text NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_email_marketing_template` -- LOCK TABLES `tbl_email_marketing_template` WRITE; /*!40000 ALTER TABLE `tbl_email_marketing_template` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_email_marketing_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_email_marketing_type` -- DROP TABLE IF EXISTS `tbl_email_marketing_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_email_marketing_type` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(500) NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_email_marketing_type` -- LOCK TABLES `tbl_email_marketing_type` WRITE; /*!40000 ALTER TABLE `tbl_email_marketing_type` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_email_marketing_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_email_offer` -- DROP TABLE IF EXISTS `tbl_email_offer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_email_offer` ( `id` int NOT NULL AUTO_INCREMENT, `image` varchar(500) DEFAULT NULL, `coupon_id` int DEFAULT NULL, `coupon_code` varchar(20) DEFAULT NULL, `text_msg` varchar(500) DEFAULT NULL, `storeid` int DEFAULT NULL, `url` varchar(1000) DEFAULT NULL, `created_on` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `email_type` int NOT NULL, `status` tinyint(1) DEFAULT NULL, PRIMARY KEY (`id`), KEY `id` (`id`,`coupon_id`,`coupon_code`,`storeid`,`created_on`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_email_offer` -- LOCK TABLES `tbl_email_offer` WRITE; /*!40000 ALTER TABLE `tbl_email_offer` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_email_offer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_enquiry` -- DROP TABLE IF EXISTS `tbl_enquiry`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_enquiry` ( `id` int NOT NULL, `uname` varchar(255) NOT NULL, `uemail` varchar(255) NOT NULL, `contact` varchar(255) NOT NULL, `enq_message` text NOT NULL, `ip` varchar(255) NOT NULL, `send_date` datetime NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_enquiry` -- LOCK TABLES `tbl_enquiry` WRITE; /*!40000 ALTER TABLE `tbl_enquiry` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_enquiry` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_event_email_to_attendee` -- DROP TABLE IF EXISTS `tbl_event_email_to_attendee`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_event_email_to_attendee` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(250) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `reply_to` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `subjects` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `emailtotype` tinyint NOT NULL, `event_id` int NOT NULL, `email_content` longtext CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `include_event_details` tinyint NOT NULL, `schedule_date` tinyint NOT NULL, `schedule_time` time NOT NULL, `event_before_days` int NOT NULL, `event_before_hours` int NOT NULL, `event_before_min` int NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_event_email_to_attendee` -- LOCK TABLES `tbl_event_email_to_attendee` WRITE; /*!40000 ALTER TABLE `tbl_event_email_to_attendee` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_event_email_to_attendee` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_event_meta` -- DROP TABLE IF EXISTS `tbl_event_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_event_meta` ( `id` int NOT NULL AUTO_INCREMENT, `prod_id` int NOT NULL, `full_address` varchar(255) NOT NULL, `street` varchar(255) NOT NULL, `city` varchar(150) NOT NULL, `state` varchar(150) NOT NULL, `pincode` varchar(150) NOT NULL, `latitude` decimal(10,8) NOT NULL, `longitude` decimal(10,9) NOT NULL, `event_from_date` varchar(255) NOT NULL, `event_to_date` varchar(255) NOT NULL, `event_timing` varchar(255) NOT NULL, `event_start_timing` time DEFAULT NULL, `event_end_timing` time DEFAULT NULL, `event_venue` varchar(500) DEFAULT NULL, `selling_start_date` date DEFAULT NULL, `selling_start_time` varchar(100) DEFAULT NULL, `selling_end_date` date DEFAULT NULL, `selling_end_time` varchar(100) DEFAULT NULL, `conveniencefeetype` varchar(100) NOT NULL, `last_eventcanceldatetype` varchar(150) NOT NULL, `last_event_cancel_date` date NOT NULL, `cancel_duduction_type` varchar(150) NOT NULL, `cancel_duduction_amount` double NOT NULL, `min` double NOT NULL, `max` double NOT NULL, `url_slug` varchar(1000) DEFAULT NULL, `taxpayby` tinyint NOT NULL, `taxinpercent` double NOT NULL, `event_label` varchar(100) DEFAULT NULL, `event_label_bg_color` varchar(50) DEFAULT NULL, `event_label_color` varchar(50) DEFAULT NULL, `organiser_name` varchar(200) DEFAULT NULL, `organiser_detail` varchar(500) DEFAULT NULL, `status` tinyint NOT NULL DEFAULT '1', `servicefeeapplied` varchar(100) DEFAULT NULL, `service_fee_type` varchar(100) DEFAULT NULL, `service_fee` double DEFAULT NULL, `servicefeetype` varchar(100) NOT NULL, `post_status` tinyint NOT NULL, `access_with` tinyint NOT NULL, `post_link` varchar(500) NOT NULL, `post_password` varchar(200) NOT NULL, PRIMARY KEY (`id`), KEY `status` (`status`), KEY `event_to_date` (`event_to_date`), KEY `prod_id` (`prod_id`) ) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_event_meta` -- LOCK TABLES `tbl_event_meta` WRITE; /*!40000 ALTER TABLE `tbl_event_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_event_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_event_tmp_cart` -- DROP TABLE IF EXISTS `tbl_event_tmp_cart`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_event_tmp_cart` ( `id` int NOT NULL AUTO_INCREMENT, `event_id` int NOT NULL, `user_id` int NOT NULL, `created_on` datetime NOT NULL, `valid_till` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=217 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_event_tmp_cart` -- LOCK TABLES `tbl_event_tmp_cart` WRITE; /*!40000 ALTER TABLE `tbl_event_tmp_cart` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_event_tmp_cart` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_event_tmp_cart_items` -- DROP TABLE IF EXISTS `tbl_event_tmp_cart_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_event_tmp_cart_items` ( `id` int NOT NULL AUTO_INCREMENT, `cart_id` int NOT NULL, `size_id` int NOT NULL, `qty` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=307 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_event_tmp_cart_items` -- LOCK TABLES `tbl_event_tmp_cart_items` WRITE; /*!40000 ALTER TABLE `tbl_event_tmp_cart_items` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_event_tmp_cart_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_event_visit_order` -- DROP TABLE IF EXISTS `tbl_event_visit_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_event_visit_order` ( `id` int NOT NULL AUTO_INCREMENT, `oid` int NOT NULL, `event_id` int NOT NULL, `ticket_size_id` int NOT NULL, `ticket_visit_count` int NOT NULL, `visit_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `status` tinyint NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_event_visit_order` -- LOCK TABLES `tbl_event_visit_order` WRITE; /*!40000 ALTER TABLE `tbl_event_visit_order` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_event_visit_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_faq` -- DROP TABLE IF EXISTS `tbl_faq`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_faq` ( `id` int NOT NULL, `faq_cat` varchar(255) NOT NULL, `question` text NOT NULL, `answer` text NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_faq` -- LOCK TABLES `tbl_faq` WRITE; /*!40000 ALTER TABLE `tbl_faq` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_faq` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_faqcat` -- DROP TABLE IF EXISTS `tbl_faqcat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_faqcat` ( `id` int NOT NULL, `category` varchar(255) NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_faqcat` -- LOCK TABLES `tbl_faqcat` WRITE; /*!40000 ALTER TABLE `tbl_faqcat` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_faqcat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_features` -- DROP TABLE IF EXISTS `tbl_features`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_features` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `attribute_id` int NOT NULL, `feature_value` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9142 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_features` -- LOCK TABLES `tbl_features` WRITE; /*!40000 ALTER TABLE `tbl_features` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_features` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_food_page_storelist` -- DROP TABLE IF EXISTS `tbl_food_page_storelist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_food_page_storelist` ( `id` int NOT NULL AUTO_INCREMENT, `sectionid` int NOT NULL, `storeid` int NOT NULL, `display_order` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_food_page_storelist` -- LOCK TABLES `tbl_food_page_storelist` WRITE; /*!40000 ALTER TABLE `tbl_food_page_storelist` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_food_page_storelist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_food_popup` -- DROP TABLE IF EXISTS `tbl_food_popup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_food_popup` ( `id` int NOT NULL AUTO_INCREMENT, `sectionid` int NOT NULL, `storeid` int NOT NULL, `display_order` int NOT NULL, `img` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=36 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_food_popup` -- LOCK TABLES `tbl_food_popup` WRITE; /*!40000 ALTER TABLE `tbl_food_popup` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_food_popup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_gchildsubcat` -- DROP TABLE IF EXISTS `tbl_gchildsubcat`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_gchildsubcat` ( `id` int NOT NULL, `cat_id` int NOT NULL, `subcat_id` int NOT NULL, `chsubcat_id` int NOT NULL, `gchildsubcat` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_gchildsubcat` -- LOCK TABLES `tbl_gchildsubcat` WRITE; /*!40000 ALTER TABLE `tbl_gchildsubcat` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_gchildsubcat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_gift_card_detail` -- DROP TABLE IF EXISTS `tbl_gift_card_detail`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_gift_card_detail` ( `id` int NOT NULL AUTO_INCREMENT, `card_amount` int NOT NULL, `product_id` int NOT NULL, `gift_card_id` int NOT NULL, `status` int NOT NULL, `created_by` int NOT NULL, `created_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_gift_card_detail` -- LOCK TABLES `tbl_gift_card_detail` WRITE; /*!40000 ALTER TABLE `tbl_gift_card_detail` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_gift_card_detail` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_giftcard_order_emails` -- DROP TABLE IF EXISTS `tbl_giftcard_order_emails`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_giftcard_order_emails` ( `id` int NOT NULL AUTO_INCREMENT, `giftcard_order_id` int DEFAULT NULL, `receiver_email` varchar(250) DEFAULT NULL, `email_flag` tinyint DEFAULT '0', `wallet_flag` tinyint DEFAULT NULL, `created_date` date DEFAULT NULL, `updated_date` date DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_giftcard_order_emails` -- LOCK TABLES `tbl_giftcard_order_emails` WRITE; /*!40000 ALTER TABLE `tbl_giftcard_order_emails` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_giftcard_order_emails` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_giftcard_orders` -- DROP TABLE IF EXISTS `tbl_giftcard_orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_giftcard_orders` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int DEFAULT NULL, `order_item_id` int DEFAULT NULL, `photo` varchar(255) DEFAULT NULL, `card_type` varchar(100) DEFAULT NULL, `card_cat` varchar(100) DEFAULT NULL, `product_id` int DEFAULT NULL, `amount` int DEFAULT NULL, `sender_id` int DEFAULT NULL, `sender` varchar(200) DEFAULT NULL, `receiver` varchar(200) DEFAULT NULL, `receiver_email` varchar(200) DEFAULT NULL, `message` text, `storeid` int DEFAULT NULL, `storename` varchar(250) DEFAULT NULL, `store_location` varchar(30) DEFAULT NULL, `delivery_date` date DEFAULT NULL, `created_date` date DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=83 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_giftcard_orders` -- LOCK TABLES `tbl_giftcard_orders` WRITE; /*!40000 ALTER TABLE `tbl_giftcard_orders` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_giftcard_orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_giftcards` -- DROP TABLE IF EXISTS `tbl_giftcards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_giftcards` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `gift_category_id` int NOT NULL, `store_id` int DEFAULT NULL, `popup_image` varchar(255) NOT NULL, `card_image` varchar(255) NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_giftcards` -- LOCK TABLES `tbl_giftcards` WRITE; /*!40000 ALTER TABLE `tbl_giftcards` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_giftcards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_giftcards-old` -- DROP TABLE IF EXISTS `tbl_giftcards-old`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_giftcards-old` ( `id` int NOT NULL, `title` varchar(255) NOT NULL, `card_amount` double NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_giftcards-old` -- LOCK TABLES `tbl_giftcards-old` WRITE; /*!40000 ALTER TABLE `tbl_giftcards-old` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_giftcards-old` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_grocery_offer` -- DROP TABLE IF EXISTS `tbl_grocery_offer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_grocery_offer` ( `id` int NOT NULL AUTO_INCREMENT, `section_id` int NOT NULL, `section_slug` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `store_id` int NOT NULL, `store_slug` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `photo` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `mob_photo` varchar(1000) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `title` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `status` int NOT NULL, `is_nationwide` int NOT NULL, `display_order` int NOT NULL, `created_at` datetime NOT NULL, `display_page_secid` int NOT NULL, `subtitle` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `bg_color` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `btn_label` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `btn_bg_color` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `btn_text_color` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `link_type` enum('No Link','External','Store Page','Section Page') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `post_url` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_grocery_offer` -- LOCK TABLES `tbl_grocery_offer` WRITE; /*!40000 ALTER TABLE `tbl_grocery_offer` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_grocery_offer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_ic_request_log` -- DROP TABLE IF EXISTS `tbl_ic_request_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_ic_request_log` ( `id` int NOT NULL AUTO_INCREMENT, `re_body` longtext NOT NULL, `ic_webhook_pay_load` longtext, `QC_Resp` longtext, `Created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `request_frm` varchar(200) DEFAULT NULL, `re_serve_log` mediumtext, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=741929 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_ic_request_log` -- LOCK TABLES `tbl_ic_request_log` WRITE; /*!40000 ALTER TABLE `tbl_ic_request_log` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_ic_request_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_justbrands_contactus` -- DROP TABLE IF EXISTS `tbl_justbrands_contactus`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_justbrands_contactus` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(200) DEFAULT NULL, `email` varchar(200) DEFAULT NULL, `phone` varchar(30) DEFAULT NULL, `address` varchar(200) DEFAULT NULL, `organization` varchar(200) DEFAULT NULL, `designation` varchar(200) DEFAULT NULL, `apartment` varchar(150) DEFAULT NULL, `created_date` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_justbrands_contactus` -- LOCK TABLES `tbl_justbrands_contactus` WRITE; /*!40000 ALTER TABLE `tbl_justbrands_contactus` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_justbrands_contactus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_justdeliveryprice` -- DROP TABLE IF EXISTS `tbl_justdeliveryprice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_justdeliveryprice` ( `id` int NOT NULL AUTO_INCREMENT, `state` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `price` double NOT NULL, `unit` int NOT NULL, `status` int NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_justdeliveryprice` -- LOCK TABLES `tbl_justdeliveryprice` WRITE; /*!40000 ALTER TABLE `tbl_justdeliveryprice` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_justdeliveryprice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_maincategory` -- DROP TABLE IF EXISTS `tbl_maincategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_maincategory` ( `uid` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` varchar(10000) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_id` int NOT NULL, `section_id` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `maincategory` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `slug` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `group_id` int NOT NULL DEFAULT '0', `mainid` int NOT NULL, `is_nationwide_category` tinyint DEFAULT NULL, `is_bay_area_category` tinyint DEFAULT NULL, `short_description` text CHARACTER SET latin1 COLLATE latin1_swedish_ci, `h1` varchar(10000) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `meta_title` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `meta_keywords` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `meta_description` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `content` mediumtext CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `showforusps` int NOT NULL, `status` tinyint NOT NULL, `sort_order` int NOT NULL, `mm_uniq_subcat` int NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `storeid` (`storeid`(1000)), KEY `parent_id` (`parent_id`,`section_id`,`maincategory`,`slug`,`showforusps`,`status`,`sort_order`), KEY `id` (`id`,`slug`,`sort_order`,`maincategory`,`parent_id`), KEY `maincategory` (`maincategory`) ) ENGINE=InnoDB AUTO_INCREMENT=23691 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_maincategory` -- LOCK TABLES `tbl_maincategory` WRITE; /*!40000 ALTER TABLE `tbl_maincategory` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_maincategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_maincategory_bkp_16july` -- DROP TABLE IF EXISTS `tbl_maincategory_bkp_16july`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_maincategory_bkp_16july` ( `uid` varchar(500) NOT NULL, `storeid` varchar(10000) NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_id` int NOT NULL, `section_id` varchar(50) NOT NULL, `maincategory` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `group_id` int NOT NULL DEFAULT '0', `mainid` int NOT NULL, `is_nationwide_category` tinyint DEFAULT NULL, `is_bay_area_category` tinyint DEFAULT NULL, `short_description` text, `h1` varchar(10000) NOT NULL, `meta_title` varchar(500) NOT NULL, `meta_keywords` varchar(500) NOT NULL, `meta_description` text NOT NULL, `content` mediumtext NOT NULL, `showforusps` int NOT NULL, `status` tinyint NOT NULL, `sort_order` int NOT NULL, PRIMARY KEY (`id`), KEY `storeid` (`storeid`(1000)), KEY `parent_id` (`parent_id`,`section_id`,`maincategory`,`slug`,`showforusps`,`status`,`sort_order`), KEY `id` (`id`,`slug`,`sort_order`,`maincategory`,`parent_id`), KEY `maincategory` (`maincategory`) ) ENGINE=InnoDB AUTO_INCREMENT=5014 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_maincategory_bkp_16july` -- LOCK TABLES `tbl_maincategory_bkp_16july` WRITE; /*!40000 ALTER TABLE `tbl_maincategory_bkp_16july` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_maincategory_bkp_16july` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_maincategory_bkp_22_june_orgi` -- DROP TABLE IF EXISTS `tbl_maincategory_bkp_22_june_orgi`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_maincategory_bkp_22_june_orgi` ( `uid` varchar(500) NOT NULL, `storeid` varchar(10000) NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_id` int NOT NULL, `section_id` varchar(50) NOT NULL, `maincategory` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `group_id` int NOT NULL DEFAULT '0', `mainid` int NOT NULL, `is_nationwide_category` tinyint DEFAULT NULL, `is_bay_area_category` tinyint DEFAULT NULL, `short_description` text, `h1` varchar(10000) NOT NULL, `meta_title` varchar(500) NOT NULL, `meta_keywords` varchar(500) NOT NULL, `meta_description` text NOT NULL, `content` mediumtext NOT NULL, `showforusps` int NOT NULL, `status` tinyint NOT NULL, `sort_order` int NOT NULL, PRIMARY KEY (`id`), KEY `storeid` (`storeid`(1000)), KEY `parent_id` (`parent_id`,`section_id`,`maincategory`,`slug`,`showforusps`,`status`,`sort_order`), KEY `id` (`id`,`slug`,`sort_order`,`maincategory`,`parent_id`), KEY `maincategory` (`maincategory`) ) ENGINE=InnoDB AUTO_INCREMENT=4997 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_maincategory_bkp_22_june_orgi` -- LOCK TABLES `tbl_maincategory_bkp_22_june_orgi` WRITE; /*!40000 ALTER TABLE `tbl_maincategory_bkp_22_june_orgi` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_maincategory_bkp_22_june_orgi` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_maincategory_bkpwithoutcatfix30aug` -- DROP TABLE IF EXISTS `tbl_maincategory_bkpwithoutcatfix30aug`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_maincategory_bkpwithoutcatfix30aug` ( `uid` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` varchar(10000) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_id` int NOT NULL, `section_id` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `maincategory` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `slug` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `group_id` int NOT NULL DEFAULT '0', `mainid` int NOT NULL, `is_nationwide_category` tinyint DEFAULT NULL, `is_bay_area_category` tinyint DEFAULT NULL, `short_description` text CHARACTER SET latin1 COLLATE latin1_swedish_ci, `h1` varchar(10000) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `meta_title` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `meta_keywords` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `meta_description` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `content` mediumtext CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `showforusps` int NOT NULL, `status` tinyint NOT NULL, `sort_order` int NOT NULL, PRIMARY KEY (`id`), KEY `storeid` (`storeid`(1000)), KEY `parent_id` (`parent_id`,`section_id`,`maincategory`,`slug`,`showforusps`,`status`,`sort_order`), KEY `id` (`id`,`slug`,`sort_order`,`maincategory`,`parent_id`), KEY `maincategory` (`maincategory`) ) ENGINE=InnoDB AUTO_INCREMENT=23691 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_maincategory_bkpwithoutcatfix30aug` -- LOCK TABLES `tbl_maincategory_bkpwithoutcatfix30aug` WRITE; /*!40000 ALTER TABLE `tbl_maincategory_bkpwithoutcatfix30aug` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_maincategory_bkpwithoutcatfix30aug` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_maincategory_mm1` -- DROP TABLE IF EXISTS `tbl_maincategory_mm1`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_maincategory_mm1` ( `uid` varchar(500) NOT NULL, `storeid` varchar(10000) NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_id` int NOT NULL, `section_id` varchar(50) NOT NULL, `maincategory` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `group_id` int NOT NULL DEFAULT '0', `mainid` int NOT NULL, `is_nationwide_category` tinyint DEFAULT NULL, `is_bay_area_category` tinyint DEFAULT NULL, `short_description` text, `h1` varchar(10000) NOT NULL, `meta_title` varchar(500) NOT NULL, `meta_keywords` varchar(500) NOT NULL, `meta_description` text NOT NULL, `content` mediumtext NOT NULL, `showforusps` int NOT NULL, `status` tinyint NOT NULL, `sort_order` int NOT NULL, PRIMARY KEY (`id`), KEY `storeid` (`storeid`(1000)), KEY `parent_id` (`parent_id`,`section_id`,`maincategory`,`slug`,`showforusps`,`status`,`sort_order`), KEY `id` (`id`,`slug`,`sort_order`,`maincategory`,`parent_id`), KEY `maincategory` (`maincategory`) ) ENGINE=InnoDB AUTO_INCREMENT=778 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_maincategory_mm1` -- LOCK TABLES `tbl_maincategory_mm1` WRITE; /*!40000 ALTER TABLE `tbl_maincategory_mm1` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_maincategory_mm1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_maincategory_mm2` -- DROP TABLE IF EXISTS `tbl_maincategory_mm2`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_maincategory_mm2` ( `uid` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` varchar(10000) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_id` int NOT NULL, `section_id` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `maincategory` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `slug` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `group_id` int NOT NULL DEFAULT '0', `mainid` int NOT NULL, `is_nationwide_category` tinyint DEFAULT NULL, `is_bay_area_category` tinyint DEFAULT NULL, `short_description` text CHARACTER SET latin1 COLLATE latin1_swedish_ci, `h1` varchar(10000) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `meta_title` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `meta_keywords` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `meta_description` text CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `content` mediumtext CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `showforusps` int NOT NULL, `status` tinyint NOT NULL, `sort_order` int NOT NULL, PRIMARY KEY (`id`), KEY `storeid` (`storeid`(1000)), KEY `parent_id` (`parent_id`,`section_id`,`maincategory`,`slug`,`showforusps`,`status`,`sort_order`), KEY `id` (`id`,`slug`,`sort_order`,`maincategory`,`parent_id`), KEY `maincategory` (`maincategory`) ) ENGINE=InnoDB AUTO_INCREMENT=24169 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_maincategory_mm2` -- LOCK TABLES `tbl_maincategory_mm2` WRITE; /*!40000 ALTER TABLE `tbl_maincategory_mm2` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_maincategory_mm2` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_maincategory_stores` -- DROP TABLE IF EXISTS `tbl_maincategory_stores`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_maincategory_stores` ( `id` int NOT NULL AUTO_INCREMENT, `catid` int NOT NULL, `storeid` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=974 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_maincategory_stores` -- LOCK TABLES `tbl_maincategory_stores` WRITE; /*!40000 ALTER TABLE `tbl_maincategory_stores` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_maincategory_stores` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_meal_kit_store` -- DROP TABLE IF EXISTS `tbl_meal_kit_store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_meal_kit_store` ( `id` int NOT NULL AUTO_INCREMENT, `type` tinyint NOT NULL, `section_id` int NOT NULL, `section_heading` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `section_subheading` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `section_slug` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `section_img` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `section_rating` int NOT NULL, `status` tinyint NOT NULL, `display_order` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_meal_kit_store` -- LOCK TABLES `tbl_meal_kit_store` WRITE; /*!40000 ALTER TABLE `tbl_meal_kit_store` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_meal_kit_store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_mealme_order` -- DROP TABLE IF EXISTS `tbl_mealme_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_mealme_order` ( `id` int NOT NULL AUTO_INCREMENT, `created_on` datetime NOT NULL, `uid` int NOT NULL, `zipcode` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `first_name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `last_name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `phone` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `email` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `latitude` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `longitude` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `street_num` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `street` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `apartment` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `city` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `state` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `country` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `uid` (`uid`), CONSTRAINT `tbl_mealme_order_ibfk_1` FOREIGN KEY (`uid`) REFERENCES `tbl_user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE=InnoDB AUTO_INCREMENT=564 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_mealme_order` -- LOCK TABLES `tbl_mealme_order` WRITE; /*!40000 ALTER TABLE `tbl_mealme_order` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_mealme_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_mealme_order_prods` -- DROP TABLE IF EXISTS `tbl_mealme_order_prods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_mealme_order_prods` ( `id` int NOT NULL AUTO_INCREMENT, `mm_order_tbl_id` int NOT NULL, `mm_order_tbl_store_id` int NOT NULL, `pid` int NOT NULL, `mm_prod_id` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `name` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `price` double NOT NULL, `qty` int NOT NULL, `image` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `description` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, PRIMARY KEY (`id`), KEY `mm_order_tbl_id` (`mm_order_tbl_id`), KEY `mm_order_tbl_store_id` (`mm_order_tbl_store_id`), KEY `tbl_mealme_order_prods_ibfk_3` (`pid`), CONSTRAINT `tbl_mealme_order_prods_ibfk_1` FOREIGN KEY (`mm_order_tbl_id`) REFERENCES `tbl_mealme_order` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT, CONSTRAINT `tbl_mealme_order_prods_ibfk_2` FOREIGN KEY (`mm_order_tbl_store_id`) REFERENCES `tbl_mealme_order_stores` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT, CONSTRAINT `tbl_mealme_order_prods_ibfk_3` FOREIGN KEY (`pid`) REFERENCES `tbl_product_bkpwithoutcatfix` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE=InnoDB AUTO_INCREMENT=152 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_mealme_order_prods` -- LOCK TABLES `tbl_mealme_order_prods` WRITE; /*!40000 ALTER TABLE `tbl_mealme_order_prods` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_mealme_order_prods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_mealme_order_prods_addon` -- DROP TABLE IF EXISTS `tbl_mealme_order_prods_addon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_mealme_order_prods_addon` ( `id` int NOT NULL AUTO_INCREMENT, `parent_id` int DEFAULT NULL, `mm_order_tbl_id` int NOT NULL, `mm_order_tbl_store_id` int NOT NULL, `mm_order_tbl_prod_id` int NOT NULL, `prod_addon_id` int NOT NULL, `name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `price` double DEFAULT NULL, `qty` int DEFAULT NULL, `mm_addon_id` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `parent_id` (`parent_id`), KEY `mm_order_tbl_id` (`mm_order_tbl_id`), KEY `mm_order_tbl_store_id` (`mm_order_tbl_store_id`), CONSTRAINT `tbl_mealme_order_prods_addon_ibfk_1` FOREIGN KEY (`parent_id`) REFERENCES `tbl_mealme_order_prods_addon` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `tbl_mealme_order_prods_addon_ibfk_2` FOREIGN KEY (`mm_order_tbl_id`) REFERENCES `tbl_mealme_order` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT, CONSTRAINT `tbl_mealme_order_prods_addon_ibfk_3` FOREIGN KEY (`mm_order_tbl_store_id`) REFERENCES `tbl_mealme_order_stores` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT ) ENGINE=InnoDB AUTO_INCREMENT=387 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_mealme_order_prods_addon` -- LOCK TABLES `tbl_mealme_order_prods_addon` WRITE; /*!40000 ALTER TABLE `tbl_mealme_order_prods_addon` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_mealme_order_prods_addon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_mealme_order_stores` -- DROP TABLE IF EXISTS `tbl_mealme_order_stores`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_mealme_order_stores` ( `id` int NOT NULL AUTO_INCREMENT, `mm_order_tbl_id` int NOT NULL, `storeid` int NOT NULL, `mm_storeid` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `store_name` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `store_address` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `quote_id` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `sub_total` double NOT NULL, `delivery_fee_cents` double NOT NULL, `service_fee_cents` double NOT NULL, `small_order_fee_cents` double NOT NULL, `sales_tax_cents` double NOT NULL, `total_without_tips` double NOT NULL, `delivery_time_min` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `delivery_time_max` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `expected_time_of_arrival` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `mm_order_key` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `order_placed` int NOT NULL, `placed_on` datetime DEFAULT NULL, `tracking_link` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `error` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `order_status` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `mm_order_tbl_id` (`mm_order_tbl_id`), KEY `storeid` (`storeid`), CONSTRAINT `tbl_mealme_order_stores_ibfk_1` FOREIGN KEY (`mm_order_tbl_id`) REFERENCES `tbl_mealme_order` (`id`) ON DELETE CASCADE ON UPDATE RESTRICT, CONSTRAINT `tbl_mealme_order_stores_ibfk_2` FOREIGN KEY (`storeid`) REFERENCES `stores` (`storeid`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE=InnoDB AUTO_INCREMENT=745 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_mealme_order_stores` -- LOCK TABLES `tbl_mealme_order_stores` WRITE; /*!40000 ALTER TABLE `tbl_mealme_order_stores` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_mealme_order_stores` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_meta` -- DROP TABLE IF EXISTS `tbl_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_meta` ( `id` int NOT NULL AUTO_INCREMENT, `sectionid` int DEFAULT '0', `catid` int NOT NULL, `storeid` int NOT NULL, `pagetitle` varchar(100) NOT NULL, `filename` varchar(100) NOT NULL, `city` varchar(200) NOT NULL, `state` varchar(200) NOT NULL, `content` varchar(50000) NOT NULL, `h1` varchar(500) NOT NULL, `meta_title` varchar(300) NOT NULL, `meta_key` varchar(500) NOT NULL, `meta_description` varchar(1500) NOT NULL, `canonical` varchar(1000) NOT NULL, `status` int NOT NULL, PRIMARY KEY (`id`), KEY `h1` (`h1`), KEY `meta_title` (`meta_title`), KEY `meta_key` (`meta_key`), KEY `meta_description` (`meta_description`(767)), KEY `sectionid` (`sectionid`,`catid`,`storeid`,`pagetitle`,`filename`,`city`,`state`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=8113 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_meta` -- LOCK TABLES `tbl_meta` WRITE; /*!40000 ALTER TABLE `tbl_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_moments` -- DROP TABLE IF EXISTS `tbl_moments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_moments` ( `id` int NOT NULL AUTO_INCREMENT, `sender_userid` varchar(100) NOT NULL, `fname` varchar(100) NOT NULL, `lname` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `phone` varchar(100) NOT NULL, `house_no` varchar(500) NOT NULL, `street` varchar(500) NOT NULL, `complex` varchar(500) NOT NULL, `city` varchar(200) NOT NULL, `state` varchar(200) NOT NULL, `zipcode` varchar(50) NOT NULL, `full_address` varchar(300) NOT NULL, `latitude` decimal(11,8) NOT NULL, `longitude` decimal(11,8) NOT NULL, `src` varchar(50) NOT NULL, `app_ver` varchar(100) DEFAULT NULL, `video` varchar(100) DEFAULT NULL, `msg` varchar(500) DEFAULT NULL, `order_id` int DEFAULT NULL, `created_on` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `modified_on` datetime DEFAULT NULL, `skip_prod` bit(1) NOT NULL DEFAULT b'0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1384 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_moments` -- LOCK TABLES `tbl_moments` WRITE; /*!40000 ALTER TABLE `tbl_moments` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_moments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_moments_banners` -- DROP TABLE IF EXISTS `tbl_moments_banners`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_moments_banners` ( `id` int NOT NULL AUTO_INCREMENT, `desktop_photo` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `mobile_photo` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `app_photo` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `app_ipad` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `status` int NOT NULL, `button_text` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `button_bg_color` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `button_text_color` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_moments_banners` -- LOCK TABLES `tbl_moments_banners` WRITE; /*!40000 ALTER TABLE `tbl_moments_banners` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_moments_banners` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_nationwide_zipcode` -- DROP TABLE IF EXISTS `tbl_nationwide_zipcode`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_nationwide_zipcode` ( `id` int NOT NULL AUTO_INCREMENT, `start` int NOT NULL, `end` int NOT NULL, `code` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `name` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `time_zone` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `status` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_nationwide_zipcode` -- LOCK TABLES `tbl_nationwide_zipcode` WRITE; /*!40000 ALTER TABLE `tbl_nationwide_zipcode` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_nationwide_zipcode` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_new_subscriber_email` -- DROP TABLE IF EXISTS `tbl_new_subscriber_email`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_new_subscriber_email` ( `id` int NOT NULL AUTO_INCREMENT, `user_email` varchar(1000) NOT NULL, `send_email_count` tinyint NOT NULL, `user_flag` tinyint NOT NULL, `next_email_date` date NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1808 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_new_subscriber_email` -- LOCK TABLES `tbl_new_subscriber_email` WRITE; /*!40000 ALTER TABLE `tbl_new_subscriber_email` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_new_subscriber_email` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_newsletter` -- DROP TABLE IF EXISTS `tbl_newsletter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_newsletter` ( `id` int NOT NULL, `email` varchar(255) NOT NULL, `subscribe_date` datetime NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_newsletter` -- LOCK TABLES `tbl_newsletter` WRITE; /*!40000 ALTER TABLE `tbl_newsletter` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_newsletter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_newsletter_template` -- DROP TABLE IF EXISTS `tbl_newsletter_template`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_newsletter_template` ( `id` int NOT NULL, `title` varchar(255) NOT NULL, `description` text NOT NULL, `posted_date` datetime NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_newsletter_template` -- LOCK TABLES `tbl_newsletter_template` WRITE; /*!40000 ALTER TABLE `tbl_newsletter_template` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_newsletter_template` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_notification_count` -- DROP TABLE IF EXISTS `tbl_notification_count`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_notification_count` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `notification_type` varchar(100) DEFAULT NULL, `reward_amt` float DEFAULT NULL, `status` tinyint NOT NULL DEFAULT '1', `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_notification_count` -- LOCK TABLES `tbl_notification_count` WRITE; /*!40000 ALTER TABLE `tbl_notification_count` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_notification_count` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_notification_frequency` -- DROP TABLE IF EXISTS `tbl_notification_frequency`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_notification_frequency` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(150) DEFAULT NULL, `status` tinyint NOT NULL DEFAULT '1', `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_notification_frequency` -- LOCK TABLES `tbl_notification_frequency` WRITE; /*!40000 ALTER TABLE `tbl_notification_frequency` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_notification_frequency` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_notification_type` -- DROP TABLE IF EXISTS `tbl_notification_type`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_notification_type` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL, `Description` varchar(255) DEFAULT NULL, `status` tinyint NOT NULL DEFAULT '1', `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_notification_type` -- LOCK TABLES `tbl_notification_type` WRITE; /*!40000 ALTER TABLE `tbl_notification_type` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_notification_type` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_notifications` -- DROP TABLE IF EXISTS `tbl_notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_notifications` ( `id` int NOT NULL AUTO_INCREMENT, `ref_user_id` varchar(50) DEFAULT NULL, `notification_type` int NOT NULL, `location` longtext, `coupon_code` varchar(255) NOT NULL, `valid_for` enum('All','Particular','Mobile') NOT NULL, `discount_type` enum('Percent','Direct') NOT NULL, `valid_time` varchar(50) NOT NULL, `discount` double NOT NULL, `minimum_purchase` double NOT NULL, `to_email` varchar(255) DEFAULT NULL, `expire_date` date NOT NULL, `generate_date` datetime NOT NULL, `msg_title` varchar(255) DEFAULT NULL, `msg_content` tinytext, `status` tinyint NOT NULL, `notification_datetime` datetime DEFAULT NULL, `notification_frequency` int DEFAULT NULL, `notification_count` int NOT NULL DEFAULT '0', `store_id` longtext, `images` varchar(255) DEFAULT NULL, `section` varchar(500) DEFAULT NULL, `is_sent` tinyint DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=394 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_notifications` -- LOCK TABLES `tbl_notifications` WRITE; /*!40000 ALTER TABLE `tbl_notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_order` -- DROP TABLE IF EXISTS `tbl_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_order` ( `uid` int NOT NULL, `storeid` varchar(10) NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `snap_track_id` varchar(20) NOT NULL, `tracking_no` varchar(100) NOT NULL, `user_id` int NOT NULL, `user_type` varchar(500) NOT NULL, `employee_id` int NOT NULL, `order_via` varchar(255) NOT NULL, `app_ver` varchar(100) DEFAULT NULL, `amount` double NOT NULL, `lowtax` double NOT NULL, `hightax` double NOT NULL, `cityofchicago_sodatax` double NOT NULL, `directtax` double NOT NULL, `tax_value` double NOT NULL, `min_order_charge` double NOT NULL, `pkgcharge` varchar(10) NOT NULL, `discount` double NOT NULL, `discount_via` varchar(255) NOT NULL, `special_discount` varchar(100) NOT NULL, `special_discount_via` varchar(100) NOT NULL, `other_discount` varchar(10) NOT NULL, `other_discount_via` varchar(250) NOT NULL, `saving` varchar(100) NOT NULL, `shipping_amount` double NOT NULL, `payment_method` varchar(255) NOT NULL, `delivery_type` varchar(100) NOT NULL, `delivery_day` varchar(100) NOT NULL, `order_type` varchar(100) NOT NULL, `expres_amt` double NOT NULL, `drivertip` varchar(10) NOT NULL, `eservicefee` double NOT NULL, `convenience_fees` double NOT NULL, `total_amount` double NOT NULL, `coupon_code` varchar(255) NOT NULL, `ship_fname` varchar(255) NOT NULL, `ship_lname` varchar(255) NOT NULL, `ship_email` varchar(255) NOT NULL, `ship_company_name` varchar(255) NOT NULL, `ship_house_no` varchar(255) NOT NULL, `ship_street` varchar(255) NOT NULL, `ship_complex` varchar(255) NOT NULL, `ship_landmark` varchar(255) NOT NULL, `ship_pincode` varchar(255) NOT NULL, `ship_area` varchar(255) NOT NULL, `ship_state` varchar(500) NOT NULL, `ship_city_id` varchar(255) NOT NULL, `ship_mobile` varchar(255) NOT NULL, `ship_phone` varchar(255) NOT NULL, `ship_full_address` varchar(255) DEFAULT NULL, `ship_latitude` decimal(10,8) DEFAULT NULL, `ship_longitude` decimal(11,8) DEFAULT NULL, `ship_type` varchar(255) NOT NULL, `ship_timing` varchar(255) NOT NULL, `order_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `deliverby` text NOT NULL, `is_send_to_vendor` varchar(5) NOT NULL, `vendor_sync_comments` text NOT NULL, `usps_expected_delivery` varchar(100) NOT NULL, `usps_tracking_code` varchar(100) NOT NULL, `order_status` int NOT NULL, `last_status_datetime` timestamp NULL DEFAULT NULL, `payment_status` int NOT NULL, `transaction_id` varchar(50) NOT NULL, `special_msg` varchar(1000) NOT NULL, `delivery_note` varchar(10000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `ip` varchar(255) NOT NULL, `status` int NOT NULL, `rating_status` enum('Pending','Rated','Skipped') NOT NULL DEFAULT 'Pending', `overall_rating` float DEFAULT NULL, `overall_review` varchar(300) DEFAULT NULL, `rating_datetime` timestamp NULL DEFAULT NULL, `sub_id` varchar(50) DEFAULT NULL, `cp_source` int DEFAULT NULL, `mealme_id` int DEFAULT NULL, PRIMARY KEY (`id`), KEY `storeid` (`storeid`,`id`,`user_id`,`amount`,`lowtax`,`hightax`,`cityofchicago_sodatax`,`directtax`,`tax_value`,`min_order_charge`,`discount`,`saving`,`payment_method`), KEY `order_type` (`order_type`,`drivertip`,`total_amount`,`coupon_code`,`order_date`,`order_status`,`status`), KEY `ship_pincode` (`ship_pincode`,`payment_status`), KEY `id` (`id`,`tracking_no`,`user_id`,`order_via`,`discount_via`,`delivery_type`,`order_type`), KEY `coupon_code` (`coupon_code`,`ship_email`,`ship_pincode`), KEY `ship_type` (`ship_type`,`order_date`,`order_status`,`payment_status`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=175767 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_order` -- LOCK TABLES `tbl_order` WRITE; /*!40000 ALTER TABLE `tbl_order` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_order` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_unicode_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = '' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`devgoquicklly`@`localhost`*/ /*!50003 TRIGGER `tbl_order_before_upd_tr` BEFORE UPDATE ON `tbl_order` FOR EACH ROW BEGIN IF NEW.order_status <> OLD.order_status THEN UPDATE tbl_order_itmes SET order_status = NEW.order_status, status_date = CURRENT_TIMESTAMP WHERE order_id = NEW.id AND (order_status != 6 AND order_status != 7); SET NEW.last_status_datetime = CURRENT_TIMESTAMP; END IF; END */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `tbl_order_breakup` -- DROP TABLE IF EXISTS `tbl_order_breakup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_order_breakup` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` varchar(15) NOT NULL, `storeid` varchar(15) NOT NULL, `store_total` varchar(15) NOT NULL, `website_total` varchar(15) NOT NULL, `hike` varchar(10) NOT NULL, `store_tax_total` varchar(10) NOT NULL, `website_tax_total` varchar(10) NOT NULL, `price_rounding` varchar(10) NOT NULL, `tax_rounding` varchar(10) NOT NULL, `store_commision` varchar(15) NOT NULL, `total_discount` varchar(10) NOT NULL, `discount` varchar(10) NOT NULL, `user_id` varchar(10) NOT NULL, `shipping_amount` varchar(10) NOT NULL, `pkg_charge` varchar(10) NOT NULL, `tip` varchar(10) NOT NULL, `commission_value` varchar(10) NOT NULL, `minimum` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `eservicefee` varchar(100) NOT NULL, `convenience_fees` varchar(100) NOT NULL, `company_amount` varchar(15) NOT NULL, `storehikerounder` varchar(10) NOT NULL, `storeamount` varchar(15) NOT NULL, `store_amt_percent` varchar(5) NOT NULL, `discount_percent` varchar(5) NOT NULL, `bt_charge` varchar(5) NOT NULL, `service_fee` varchar(15) NOT NULL, `store_discount` varchar(10) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=133030 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_order_breakup` -- LOCK TABLES `tbl_order_breakup` WRITE; /*!40000 ALTER TABLE `tbl_order_breakup` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_order_breakup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_order_chef_breakup` -- DROP TABLE IF EXISTS `tbl_order_chef_breakup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_order_chef_breakup` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `chefid` int NOT NULL, `chef_total` float NOT NULL, `chef_com_percent` varchar(5) NOT NULL, `chef_commision` float NOT NULL, `posted_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_order_chef_breakup` -- LOCK TABLES `tbl_order_chef_breakup` WRITE; /*!40000 ALTER TABLE `tbl_order_chef_breakup` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_order_chef_breakup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_order_comments` -- DROP TABLE IF EXISTS `tbl_order_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_order_comments` ( `id` int NOT NULL AUTO_INCREMENT, `comments` text NOT NULL, `storeid` int NOT NULL, `order_item_id` int NOT NULL, `order_id` int NOT NULL, `order_status` int NOT NULL, `payment_status` int NOT NULL, `pay_via` varchar(255) NOT NULL, `transaction_id` varchar(255) NOT NULL, `card_number` varchar(255) NOT NULL, `pay_date` date NOT NULL, `pay_amount` double NOT NULL, `posted_date` datetime NOT NULL, `posted_by` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=172443 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_order_comments` -- LOCK TABLES `tbl_order_comments` WRITE; /*!40000 ALTER TABLE `tbl_order_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_order_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_order_event` -- DROP TABLE IF EXISTS `tbl_order_event`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_order_event` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `user_id` int NOT NULL, `user_name` varchar(500) NOT NULL, `event_id` int NOT NULL, `event_product_id` int NOT NULL, `event_store_id` int NOT NULL, `event_name` varchar(500) NOT NULL, `event_remarks` varchar(500) NOT NULL, `total_qty` varchar(255) NOT NULL, `total_amount` double NOT NULL, `event_from_date` varchar(500) NOT NULL, `event_to_date` varchar(255) NOT NULL, `latitude` decimal(10,8) NOT NULL, `longitude` decimal(10,9) NOT NULL, `event_time` varchar(500) NOT NULL, `event_address` varchar(1000) NOT NULL, `event_qr_code_image` varchar(500) NOT NULL, `event_cancel_date` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `event_cancel_reason` varchar(1000) NOT NULL, `event_visit_status` tinyint NOT NULL, `visit_count` int DEFAULT NULL, `event_visit_date_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `service_fee_type` varchar(100) NOT NULL, `service_fee_rate` double NOT NULL, `service_fee_amount` double NOT NULL, `convenience_fee_type` varchar(100) DEFAULT NULL, `convenience_fee_rate` double DEFAULT NULL, `convenience_fee_amount` double DEFAULT NULL, `custom_payment_status` int NOT NULL, `event_status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=593 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_order_event` -- LOCK TABLES `tbl_order_event` WRITE; /*!40000 ALTER TABLE `tbl_order_event` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_order_event` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_order_event_items` -- DROP TABLE IF EXISTS `tbl_order_event_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_order_event_items` ( `id` int NOT NULL AUTO_INCREMENT, `event_order_id` int NOT NULL, `order_id` int NOT NULL, `event_id` int NOT NULL, `event_size_name` varchar(255) NOT NULL, `event_sizeid` int NOT NULL, `event_qty` int NOT NULL, `event_qr_code_image` varchar(500) DEFAULT NULL, `mrp_price` double NOT NULL, `selling_price` double NOT NULL, `total_sellprice` double NOT NULL, `discount` int NOT NULL, `tax_method` varchar(500) NOT NULL, `tax_value` double NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=740 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_order_event_items` -- LOCK TABLES `tbl_order_event_items` WRITE; /*!40000 ALTER TABLE `tbl_order_event_items` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_order_event_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_order_itmes` -- DROP TABLE IF EXISTS `tbl_order_itmes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_order_itmes` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `storeid` int NOT NULL, `productid` varchar(100) NOT NULL, `product_name` varchar(255) NOT NULL, `catering_size_id` int DEFAULT NULL, `size` varchar(100) NOT NULL, `size_type` varchar(100) NOT NULL, `hike` varchar(5) NOT NULL, `wh_price` varchar(100) NOT NULL, `price` double NOT NULL, `mrp_price` varchar(50) NOT NULL, `qty` int NOT NULL, `discount` double NOT NULL, `tax_method` varchar(50) NOT NULL, `wh_tax_value` varchar(100) NOT NULL, `tax_value` double NOT NULL, `sell_price` double NOT NULL, `expres_amt` double NOT NULL, `product_id` int NOT NULL, `user_id` int NOT NULL, `order_via` varchar(100) NOT NULL, `order_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `delivery_date` date NOT NULL, `delivery_from` varchar(100) NOT NULL, `delivery_to` varchar(100) NOT NULL, `customize` varchar(2000) NOT NULL, `source` varchar(122) DEFAULT NULL, `add_on_ids` varchar(500) NOT NULL, `add_on_qtys` varchar(500) NOT NULL, `add_on_sizeids` varchar(500) DEFAULT NULL, `remarks` varchar(2000) NOT NULL, `section` varchar(50) NOT NULL, `usps_expected_delivery` varchar(100) NOT NULL, `snap_tracking_no` varchar(500) NOT NULL, `ups_tracking_no` varchar(500) NOT NULL, `twilio_sms_sid` varchar(500) NOT NULL DEFAULT '', `twilio_call_sid` varchar(500) NOT NULL DEFAULT '', `twilio_fax_sid` varchar(500) NOT NULL DEFAULT '', `order_status` varchar(50) NOT NULL, `comments` text NOT NULL, `status_date` datetime NOT NULL, `courier` varchar(20) NOT NULL, `ship_date` varchar(25) NOT NULL, `is_send_to_vendor` varchar(3) NOT NULL DEFAULT 'No', `vendor_sync_comments` varchar(150) NOT NULL, `user_replacement_option` enum('Replace with Best Match','Call Us Before Replacing','Do Not Replace') DEFAULT NULL, `subscription_type` varchar(250) DEFAULT NULL, `delivery_type` varchar(250) DEFAULT NULL, `delivery_date_next` date DEFAULT NULL, `delivery_from_next` varchar(100) DEFAULT NULL, `delivery_to_next` varchar(100) DEFAULT NULL, `moment_id` int DEFAULT NULL, `mealme_id` int DEFAULT NULL, `tracking_link` varchar(500) DEFAULT NULL, `tmp_event_cart_id` int DEFAULT NULL, `section_id` int NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`,`order_id`,`storeid`,`productid`,`price`,`qty`,`discount`,`tax_method`,`wh_tax_value`,`tax_value`,`sell_price`,`product_id`,`user_id`,`order_date`), KEY `wh_price` (`wh_price`), KEY `order_id` (`order_id`,`storeid`,`productid`,`product_id`,`user_id`,`order_via`,`order_date`,`delivery_date`,`section`), KEY `usps_expected_delivery` (`usps_expected_delivery`,`ups_tracking_no`,`order_status`,`courier`,`is_send_to_vendor`,`user_replacement_option`,`subscription_type`), KEY `ups_tracking_no` (`ups_tracking_no`,`courier`), KEY `section_id` (`section_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1479466 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_order_itmes` -- LOCK TABLES `tbl_order_itmes` WRITE; /*!40000 ALTER TABLE `tbl_order_itmes` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_order_itmes` ENABLE KEYS */; UNLOCK TABLES; /*!50003 SET @saved_cs_client = @@character_set_client */ ; /*!50003 SET @saved_cs_results = @@character_set_results */ ; /*!50003 SET @saved_col_connection = @@collation_connection */ ; /*!50003 SET character_set_client = utf8mb4 */ ; /*!50003 SET character_set_results = utf8mb4 */ ; /*!50003 SET collation_connection = utf8mb4_unicode_ci */ ; /*!50003 SET @saved_sql_mode = @@sql_mode */ ; /*!50003 SET sql_mode = '' */ ; DELIMITER ;; /*!50003 CREATE*/ /*!50017 DEFINER=`devgoquicklly`@`localhost`*/ /*!50003 TRIGGER `order_shopper` AFTER INSERT ON `tbl_order_itmes` FOR EACH ROW BEGIN INSERT INTO tbl_order_shopper ( order_id, product_id, product_name, qty, price, size, tax_method, tax_value, size_type, storeid, user_replacement_remarks, status ) VALUES ( NEW.order_id, NEW.product_id, NEW.product_name, NEW.qty, NEW.price, NEW.size, NEW.tax_method, NEW.tax_value, NEW.size_type, NEW.storeid, NEW.user_replacement_option, 'Available' ); END */;; DELIMITER ; /*!50003 SET sql_mode = @saved_sql_mode */ ; /*!50003 SET character_set_client = @saved_cs_client */ ; /*!50003 SET character_set_results = @saved_cs_results */ ; /*!50003 SET collation_connection = @saved_col_connection */ ; -- -- Table structure for table `tbl_order_label` -- DROP TABLE IF EXISTS `tbl_order_label`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_order_label` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `storeid` int NOT NULL, `courrier` varchar(255) NOT NULL DEFAULT 'UPS', `label_file` blob NOT NULL, `label_parameters` text, `label` varchar(50) DEFAULT NULL, `pick_up_date` date DEFAULT NULL, `estimate_delivery_date` date DEFAULT NULL, `delivery_date` date DEFAULT NULL, `created_by` int NOT NULL, `created_on` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `status` enum('Active','InActive') NOT NULL DEFAULT 'Active', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2418 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_order_label` -- LOCK TABLES `tbl_order_label` WRITE; /*!40000 ALTER TABLE `tbl_order_label` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_order_label` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_order_report` -- DROP TABLE IF EXISTS `tbl_order_report`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_order_report` ( `id` int NOT NULL, `order_date` varchar(200) NOT NULL, `customer_id` varchar(20) NOT NULL, `order_no` int NOT NULL, `store_id` int NOT NULL, `store_name` varchar(500) NOT NULL, `customer_zipcode` int NOT NULL, `customer_type` varchar(20) NOT NULL, `maincategory_id` int NOT NULL, `maincategory_name` varchar(100) NOT NULL, `subcategory_id` varchar(20) NOT NULL, `product_id` int NOT NULL, `product_name` varchar(500) NOT NULL, `order_qty` varchar(20) NOT NULL, `amount` float NOT NULL, `payment_type` varchar(50) NOT NULL, `coupon` varchar(10) NOT NULL, `coupon_amount` float NOT NULL, `last_order_date` varchar(50) NOT NULL, `order_status` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_order_report` -- LOCK TABLES `tbl_order_report` WRITE; /*!40000 ALTER TABLE `tbl_order_report` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_order_report` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_order_shopper` -- DROP TABLE IF EXISTS `tbl_order_shopper`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_order_shopper` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `product_id` int NOT NULL, `product_name` varchar(250) NOT NULL, `qty` int NOT NULL, `price` double NOT NULL, `tax_value` varchar(50) NOT NULL, `tax_method` varchar(50) NOT NULL, `size` varchar(10) NOT NULL, `size_type` varchar(20) NOT NULL, `replaced_product` varchar(300) DEFAULT NULL, `replaced_product_qty` int DEFAULT NULL, `replaced_product_price` varchar(10) DEFAULT NULL, `replaced_product_size` varchar(20) DEFAULT NULL, `storeid` int DEFAULT NULL, `replaced_product_storeid` int DEFAULT NULL, `status` enum('Available','Full Replacement','Partial Replacement','No Replacement') NOT NULL, `shopper_status` int NOT NULL DEFAULT '0', `remarks` varchar(1000) DEFAULT NULL, `user_replacement_remarks` enum('Replace with Best Match','Call Us Before Replacing','Do Not Replace') DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=609664 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_order_shopper` -- LOCK TABLES `tbl_order_shopper` WRITE; /*!40000 ALTER TABLE `tbl_order_shopper` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_order_shopper` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_order_status` -- DROP TABLE IF EXISTS `tbl_order_status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_order_status` ( `id` int NOT NULL AUTO_INCREMENT, `order_status` varchar(255) NOT NULL, `mealme_status` varchar(50) NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_order_status` -- LOCK TABLES `tbl_order_status` WRITE; /*!40000 ALTER TABLE `tbl_order_status` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_order_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_otp_log` -- DROP TABLE IF EXISTS `tbl_otp_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_otp_log` ( `id` int NOT NULL AUTO_INCREMENT, `country_code` varchar(50) NOT NULL, `mobile` varchar(50) NOT NULL, `email` varchar(100) DEFAULT NULL, `firstName` varchar(100) DEFAULT NULL, `lastName` varchar(100) DEFAULT NULL, `otp` varchar(50) NOT NULL, `tag` varchar(100) NOT NULL, `callfrom` varchar(50) DEFAULT NULL, `sent_on` datetime DEFAULT NULL, `valid_till` datetime DEFAULT NULL, `verified_on` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=18493 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_otp_log` -- LOCK TABLES `tbl_otp_log` WRITE; /*!40000 ALTER TABLE `tbl_otp_log` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_otp_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_photo` -- DROP TABLE IF EXISTS `tbl_photo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_photo` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `title` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `display_order` int DEFAULT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2715 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_photo` -- LOCK TABLES `tbl_photo` WRITE; /*!40000 ALTER TABLE `tbl_photo` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_photo` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_popup` -- DROP TABLE IF EXISTS `tbl_popup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_popup` ( `pop_id` int NOT NULL AUTO_INCREMENT, `title` varchar(200) NOT NULL, `subtitle` varchar(200) NOT NULL, `botton_name` varchar(200) NOT NULL, `image` varchar(200) NOT NULL, `section` varchar(100) NOT NULL, `status` int NOT NULL, `button_color` varchar(100) NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`pop_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_popup` -- LOCK TABLES `tbl_popup` WRITE; /*!40000 ALTER TABLE `tbl_popup` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_popup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_precart` -- DROP TABLE IF EXISTS `tbl_precart`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_precart` ( `id` int NOT NULL, `precart_title` varchar(255) NOT NULL, `cart_amount` double NOT NULL, `photo` varchar(255) NOT NULL, `posted_date` datetime NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_precart` -- LOCK TABLES `tbl_precart` WRITE; /*!40000 ALTER TABLE `tbl_precart` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_precart` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_precart_itmes` -- DROP TABLE IF EXISTS `tbl_precart_itmes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_precart_itmes` ( `id` int NOT NULL, `product_price_id` int NOT NULL, `qty` int NOT NULL, `precart_id` int NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_precart_itmes` -- LOCK TABLES `tbl_precart_itmes` WRITE; /*!40000 ALTER TABLE `tbl_precart_itmes` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_precart_itmes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_precartproduct` -- DROP TABLE IF EXISTS `tbl_precartproduct`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_precartproduct` ( `id` int NOT NULL, `headline` varchar(255) NOT NULL, `product_price_ids` varchar(255) NOT NULL, `precart_id` int NOT NULL, `status` tinyint NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_precartproduct` -- LOCK TABLES `tbl_precartproduct` WRITE; /*!40000 ALTER TABLE `tbl_precartproduct` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_precartproduct` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_press` -- DROP TABLE IF EXISTS `tbl_press`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_press` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `image` varchar(255) NOT NULL, `brand` varchar(255) NOT NULL, `url` varchar(255) NOT NULL, `follow` varchar(255) NOT NULL DEFAULT 'nofollow', `status` enum('1','0') NOT NULL DEFAULT '1', `entry` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `name` (`name`,`image`,`brand`,`status`), KEY `url` (`url`) ) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_press` -- LOCK TABLES `tbl_press` WRITE; /*!40000 ALTER TABLE `tbl_press` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_press` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product` -- DROP TABLE IF EXISTS `tbl_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product` ( `uid` int NOT NULL DEFAULT '10', `storeid` bigint NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_cat_id` int DEFAULT NULL, `categories` varchar(255) NOT NULL, `cat_id` int NOT NULL, `subcat_id` int NOT NULL DEFAULT '0', `childsubcat_id` int DEFAULT NULL, `gchildsubcat_id` int DEFAULT NULL, `brand_id` int NOT NULL, `addon` varchar(10000) DEFAULT NULL, `addon_qty` varchar(1000) DEFAULT NULL, `product_ref_id` varchar(100) DEFAULT NULL, `product_name` varchar(255) NOT NULL, `product_code` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `pp_sizes` varchar(255) DEFAULT NULL, `pp_size` varchar(255) DEFAULT NULL, `pp_size_type` varchar(1000) DEFAULT NULL, `pp_weight` varchar(10) DEFAULT NULL, `pp_actual_price` double DEFAULT NULL, `pp_mrp_price` double DEFAULT NULL, `pp_tax` varchar(10) DEFAULT NULL, `pp_tax_method` varchar(50) DEFAULT NULL, `pp_tax_value` varchar(10) DEFAULT NULL, `pp_discount` double DEFAULT NULL, `pp_weekly_discount` double DEFAULT NULL, `pp_biweekly_discount` double DEFAULT NULL, `pp_monthly_discount` double DEFAULT NULL, `pp_sell_price` double DEFAULT NULL, `pp_weekly_sell_price` double DEFAULT NULL, `pp_biweekly_sell_price` double DEFAULT NULL, `pp_monthly_sell_price` double DEFAULT NULL, `pp_in_stock` tinyint DEFAULT NULL, `pp_pphoto` varchar(255) DEFAULT NULL, `pp_barcode` varchar(255) DEFAULT NULL, `pp_barcode_number` varchar(500) DEFAULT NULL, `pp_video` text, `pp_status` int DEFAULT NULL, `product_app_photo` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `product_video` varchar(55) DEFAULT NULL, `description` text, `ingredients` text, `how_to_use` text, `nutritional_facts` text, `meta_title` text, `meta_keywords` text, `meta_description` text, `latest` int DEFAULT NULL, `price_change` int DEFAULT NULL, `display_order` int NOT NULL DEFAULT '20', `posted_by` varchar(11) DEFAULT NULL, `posted_date` varchar(50) DEFAULT NULL, `display_status` int DEFAULT NULL, `status` tinyint NOT NULL, `desp_plaintext` varchar(1000) DEFAULT NULL, `photo_wide` varchar(500) DEFAULT NULL, `only_for_meal_kit` tinyint DEFAULT '0', `only_for_addon` int DEFAULT NULL, `subscription_status` tinyint DEFAULT NULL, `no_of_select` tinyint DEFAULT NULL, `ship_start_date` date DEFAULT NULL, `product_tag` varchar(250) DEFAULT NULL, `product_sku` varchar(250) DEFAULT NULL, `order_count` int NOT NULL DEFAULT '0', `update_on` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `product_section` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `catmaxqty` varchar(250) DEFAULT NULL, `line_item` varchar(255) DEFAULT NULL, `temp_section_name` varchar(200) NOT NULL, `temp_section_slug` varchar(200) NOT NULL, `temp_section_url` varchar(200) NOT NULL, `temp_is_nationwide` int NOT NULL, `temp_storename` varchar(200) NOT NULL, `temp_storeaddress` varchar(200) NOT NULL, `temp_storephoto` varchar(200) NOT NULL, `temp_store_slug` varchar(200) NOT NULL, `temp_store_status` int DEFAULT NULL, `temp_skip_store` int DEFAULT NULL, `specification` text, `last_updated_on` timestamp NULL DEFAULT NULL, `pinecone_sync_datetime` datetime DEFAULT NULL, `data_sync_datetime` datetime DEFAULT NULL, `mm_product_flg` tinyint DEFAULT '0', `mm_customization` tinyint DEFAULT '0', `img_url` text, `img_thumb_url` text, `mm_product_id` text, `mm_subcat` int NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `storeid` (`storeid`,`id`,`categories`,`cat_id`,`status`), KEY `product_section` (`product_section`), KEY `categories` (`categories`), KEY `storeid_2` (`storeid`,`id`,`cat_id`), KEY `order_count` (`order_count`), KEY `pp_in_stock` (`pp_in_stock`), KEY `temp_is_nationwide` (`temp_is_nationwide`), KEY `parent_cat_id` (`parent_cat_id`,`temp_store_status`,`temp_skip_store`), KEY `pp_sell_price` (`pp_sell_price`) ) ENGINE=InnoDB AUTO_INCREMENT=610613 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product` -- LOCK TABLES `tbl_product` WRITE; /*!40000 ALTER TABLE `tbl_product` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_addons` -- DROP TABLE IF EXISTS `tbl_product_addons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product_addons` ( `id` int NOT NULL AUTO_INCREMENT, `prod_id` int NOT NULL, `addon_id` int NOT NULL, `addon_qty` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2853 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_addons` -- LOCK TABLES `tbl_product_addons` WRITE; /*!40000 ALTER TABLE `tbl_product_addons` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product_addons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_bkpwithoutcatfix` -- DROP TABLE IF EXISTS `tbl_product_bkpwithoutcatfix`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product_bkpwithoutcatfix` ( `uid` int NOT NULL DEFAULT '10', `storeid` bigint NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_cat_id` int DEFAULT NULL, `categories` varchar(255) NOT NULL, `cat_id` int NOT NULL, `subcat_id` int NOT NULL DEFAULT '0', `childsubcat_id` int DEFAULT NULL, `gchildsubcat_id` int DEFAULT NULL, `brand_id` int NOT NULL, `addon` varchar(10000) DEFAULT NULL, `addon_qty` varchar(1000) DEFAULT NULL, `product_ref_id` varchar(100) DEFAULT NULL, `product_name` varchar(255) NOT NULL, `product_code` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `pp_sizes` varchar(255) DEFAULT NULL, `pp_size` varchar(255) DEFAULT NULL, `pp_size_type` varchar(1000) DEFAULT NULL, `pp_weight` varchar(10) DEFAULT NULL, `pp_actual_price` double DEFAULT NULL, `pp_mrp_price` double DEFAULT NULL, `pp_tax` varchar(10) DEFAULT NULL, `pp_tax_method` varchar(50) DEFAULT NULL, `pp_tax_value` varchar(10) DEFAULT NULL, `pp_discount` double DEFAULT NULL, `pp_weekly_discount` double DEFAULT NULL, `pp_biweekly_discount` double DEFAULT NULL, `pp_monthly_discount` double DEFAULT NULL, `pp_sell_price` double DEFAULT NULL, `pp_weekly_sell_price` double DEFAULT NULL, `pp_biweekly_sell_price` double DEFAULT NULL, `pp_monthly_sell_price` double DEFAULT NULL, `pp_in_stock` tinyint DEFAULT NULL, `pp_pphoto` varchar(255) DEFAULT NULL, `pp_barcode` varchar(255) DEFAULT NULL, `pp_barcode_number` varchar(500) DEFAULT NULL, `pp_video` text, `pp_status` int DEFAULT NULL, `product_app_photo` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `product_video` varchar(55) DEFAULT NULL, `description` text, `ingredients` text, `how_to_use` text, `nutritional_facts` text, `meta_title` text, `meta_keywords` text, `meta_description` text, `latest` int DEFAULT NULL, `price_change` int DEFAULT NULL, `display_order` int NOT NULL DEFAULT '20', `posted_by` varchar(11) DEFAULT NULL, `posted_date` varchar(50) DEFAULT NULL, `display_status` int DEFAULT NULL, `status` tinyint NOT NULL, `desp_plaintext` varchar(1000) DEFAULT NULL, `photo_wide` varchar(500) DEFAULT NULL, `only_for_meal_kit` tinyint DEFAULT '0', `only_for_addon` int DEFAULT NULL, `subscription_status` tinyint DEFAULT NULL, `no_of_select` tinyint DEFAULT NULL, `ship_start_date` date DEFAULT NULL, `product_tag` varchar(250) DEFAULT NULL, `product_sku` varchar(250) DEFAULT NULL, `order_count` int NOT NULL DEFAULT '0', `update_on` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `product_section` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `catmaxqty` varchar(250) DEFAULT NULL, `line_item` varchar(255) DEFAULT NULL, `temp_section_name` varchar(200) NOT NULL, `temp_section_slug` varchar(200) NOT NULL, `temp_section_url` varchar(200) NOT NULL, `temp_is_nationwide` int NOT NULL, `temp_storename` varchar(200) NOT NULL, `temp_storeaddress` varchar(200) NOT NULL, `temp_storephoto` varchar(200) NOT NULL, `temp_store_slug` varchar(200) NOT NULL, `temp_store_status` int DEFAULT NULL, `temp_skip_store` int DEFAULT NULL, `specification` text, `last_updated_on` timestamp NULL DEFAULT NULL, `pinecone_sync_datetime` datetime DEFAULT NULL, `data_sync_datetime` datetime DEFAULT NULL, `mm_product_flg` tinyint DEFAULT '0', `mm_customization` tinyint DEFAULT '0', `img_url` text, `img_thumb_url` text, `mm_product_id` text, PRIMARY KEY (`id`), KEY `storeid` (`storeid`,`id`,`categories`,`cat_id`,`status`), KEY `product_section` (`product_section`), KEY `categories` (`categories`), KEY `storeid_2` (`storeid`,`id`,`cat_id`), KEY `order_count` (`order_count`), KEY `pp_in_stock` (`pp_in_stock`), KEY `temp_is_nationwide` (`temp_is_nationwide`), KEY `parent_cat_id` (`parent_cat_id`,`temp_store_status`,`temp_skip_store`), KEY `pp_sell_price` (`pp_sell_price`) ) ENGINE=InnoDB AUTO_INCREMENT=610613 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_bkpwithoutcatfix` -- LOCK TABLES `tbl_product_bkpwithoutcatfix` WRITE; /*!40000 ALTER TABLE `tbl_product_bkpwithoutcatfix` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product_bkpwithoutcatfix` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_cats` -- DROP TABLE IF EXISTS `tbl_product_cats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product_cats` ( `id` int NOT NULL AUTO_INCREMENT, `prod_id` int NOT NULL, `cat_id` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=629052 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_cats` -- LOCK TABLES `tbl_product_cats` WRITE; /*!40000 ALTER TABLE `tbl_product_cats` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product_cats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_custm_fix` -- DROP TABLE IF EXISTS `tbl_product_custm_fix`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product_custm_fix` ( `uid` int NOT NULL DEFAULT '10', `storeid` bigint NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_cat_id` int DEFAULT NULL, `categories` varchar(255) NOT NULL, `cat_id` int NOT NULL, `subcat_id` int NOT NULL DEFAULT '0', `childsubcat_id` int DEFAULT NULL, `gchildsubcat_id` int DEFAULT NULL, `brand_id` int NOT NULL, `addon` varchar(10000) DEFAULT NULL, `addon_qty` varchar(1000) DEFAULT NULL, `product_ref_id` varchar(100) DEFAULT NULL, `product_name` varchar(255) NOT NULL, `product_code` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `pp_sizes` varchar(255) DEFAULT NULL, `pp_size` varchar(255) DEFAULT NULL, `pp_size_type` varchar(1000) DEFAULT NULL, `pp_weight` varchar(10) DEFAULT NULL, `pp_actual_price` double DEFAULT NULL, `pp_mrp_price` double DEFAULT NULL, `pp_tax` varchar(10) DEFAULT NULL, `pp_tax_method` varchar(50) DEFAULT NULL, `pp_tax_value` varchar(10) DEFAULT NULL, `pp_discount` double DEFAULT NULL, `pp_weekly_discount` double DEFAULT NULL, `pp_biweekly_discount` double DEFAULT NULL, `pp_monthly_discount` double DEFAULT NULL, `pp_sell_price` double DEFAULT NULL, `pp_weekly_sell_price` double DEFAULT NULL, `pp_biweekly_sell_price` double DEFAULT NULL, `pp_monthly_sell_price` double DEFAULT NULL, `pp_in_stock` tinyint DEFAULT NULL, `pp_pphoto` varchar(255) DEFAULT NULL, `pp_barcode` varchar(255) DEFAULT NULL, `pp_barcode_number` varchar(500) DEFAULT NULL, `pp_video` text, `pp_status` int DEFAULT NULL, `product_app_photo` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `product_video` varchar(55) DEFAULT NULL, `description` text, `ingredients` text, `how_to_use` text, `nutritional_facts` text, `meta_title` text, `meta_keywords` text, `meta_description` text, `latest` int DEFAULT NULL, `price_change` int DEFAULT NULL, `display_order` int NOT NULL DEFAULT '20', `posted_by` varchar(11) DEFAULT NULL, `posted_date` varchar(50) DEFAULT NULL, `display_status` int DEFAULT NULL, `status` tinyint NOT NULL, `desp_plaintext` varchar(1000) DEFAULT NULL, `photo_wide` varchar(500) DEFAULT NULL, `only_for_meal_kit` tinyint DEFAULT '0', `only_for_addon` int DEFAULT NULL, `subscription_status` tinyint DEFAULT NULL, `no_of_select` tinyint DEFAULT NULL, `ship_start_date` date DEFAULT NULL, `product_tag` varchar(250) DEFAULT NULL, `product_sku` varchar(250) DEFAULT NULL, `order_count` int NOT NULL DEFAULT '0', `update_on` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `product_section` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `catmaxqty` varchar(250) DEFAULT NULL, `line_item` varchar(255) DEFAULT NULL, `temp_section_name` varchar(200) NOT NULL, `temp_section_slug` varchar(200) NOT NULL, `temp_section_url` varchar(200) NOT NULL, `temp_is_nationwide` int NOT NULL, `temp_storename` varchar(200) NOT NULL, `temp_storeaddress` varchar(200) NOT NULL, `temp_storephoto` varchar(200) NOT NULL, `temp_store_slug` varchar(200) NOT NULL, `temp_store_status` int DEFAULT NULL, `temp_skip_store` int DEFAULT NULL, `specification` text, `last_updated_on` timestamp NULL DEFAULT NULL, `pinecone_sync_datetime` datetime DEFAULT NULL, `data_sync_datetime` datetime DEFAULT NULL, `mm_product_flg` tinyint DEFAULT '0', `mm_customization` tinyint DEFAULT '0', `img_url` text, `img_thumb_url` text, `mm_product_id` text, PRIMARY KEY (`id`), KEY `storeid` (`storeid`,`id`,`categories`,`cat_id`,`status`), KEY `product_section` (`product_section`), KEY `categories` (`categories`), KEY `storeid_2` (`storeid`,`id`,`cat_id`), KEY `order_count` (`order_count`), KEY `pp_in_stock` (`pp_in_stock`), KEY `temp_is_nationwide` (`temp_is_nationwide`), KEY `parent_cat_id` (`parent_cat_id`,`temp_store_status`,`temp_skip_store`), KEY `pp_sell_price` (`pp_sell_price`) ) ENGINE=InnoDB AUTO_INCREMENT=610609 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_custm_fix` -- LOCK TABLES `tbl_product_custm_fix` WRITE; /*!40000 ALTER TABLE `tbl_product_custm_fix` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product_custm_fix` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_history` -- DROP TABLE IF EXISTS `tbl_product_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product_history` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `productprice_id` int NOT NULL, `product_name` varchar(1000) NOT NULL, `storeid` int NOT NULL, `mrp_price` varchar(10) NOT NULL, `sell_price` varchar(10) NOT NULL, `discount` varchar(5) NOT NULL, `user_id` int NOT NULL, `user_type` varchar(100) NOT NULL, `size` varchar(10) NOT NULL, `size_type` varchar(10) NOT NULL, `system` varchar(500) NOT NULL, `system_user` varchar(500) NOT NULL, `ip_address` varchar(100) NOT NULL, `modify_date` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=35600 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_history` -- LOCK TABLES `tbl_product_history` WRITE; /*!40000 ALTER TABLE `tbl_product_history` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_mm` -- DROP TABLE IF EXISTS `tbl_product_mm`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product_mm` ( `uid` int NOT NULL DEFAULT '10', `storeid` bigint NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_cat_id` int DEFAULT NULL, `categories` varchar(255) NOT NULL, `cat_id` int NOT NULL, `subcat_id` int NOT NULL DEFAULT '0', `childsubcat_id` int DEFAULT NULL, `gchildsubcat_id` int DEFAULT NULL, `brand_id` int NOT NULL, `addon` varchar(10000) DEFAULT NULL, `addon_qty` varchar(1000) DEFAULT NULL, `product_ref_id` varchar(100) DEFAULT NULL, `product_name` varchar(255) NOT NULL, `product_code` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `pp_sizes` varchar(255) DEFAULT NULL, `pp_size` varchar(255) DEFAULT NULL, `pp_size_type` varchar(1000) DEFAULT NULL, `pp_weight` varchar(10) DEFAULT NULL, `pp_actual_price` double DEFAULT NULL, `pp_mrp_price` double DEFAULT NULL, `pp_tax` varchar(10) DEFAULT NULL, `pp_tax_method` varchar(50) DEFAULT NULL, `pp_tax_value` varchar(10) DEFAULT NULL, `pp_discount` double DEFAULT NULL, `pp_weekly_discount` double DEFAULT NULL, `pp_biweekly_discount` double DEFAULT NULL, `pp_monthly_discount` double DEFAULT NULL, `pp_sell_price` double DEFAULT NULL, `pp_weekly_sell_price` double DEFAULT NULL, `pp_biweekly_sell_price` double DEFAULT NULL, `pp_monthly_sell_price` double DEFAULT NULL, `pp_in_stock` tinyint DEFAULT NULL, `pp_pphoto` varchar(255) DEFAULT NULL, `pp_barcode` varchar(255) DEFAULT NULL, `pp_barcode_number` varchar(500) DEFAULT NULL, `pp_video` text, `product_app_photo` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `product_video` varchar(55) DEFAULT NULL, `description` text, `ingredients` text, `how_to_use` text, `nutritional_facts` text, `meta_title` text, `meta_keywords` text, `meta_description` text, `latest` int DEFAULT NULL, `price_change` int DEFAULT NULL, `display_order` int NOT NULL DEFAULT '20', `posted_by` varchar(11) DEFAULT NULL, `posted_date` varchar(50) DEFAULT NULL, `display_status` int DEFAULT NULL, `status` tinyint NOT NULL, `desp_plaintext` varchar(1000) DEFAULT NULL, `photo_wide` varchar(500) DEFAULT NULL, `only_for_meal_kit` tinyint DEFAULT '0', `only_for_addon` int DEFAULT NULL, `subscription_status` tinyint DEFAULT NULL, `no_of_select` tinyint DEFAULT NULL, `ship_start_date` date DEFAULT NULL, `product_tag` varchar(250) DEFAULT NULL, `product_sku` varchar(250) DEFAULT NULL, `order_count` int NOT NULL DEFAULT '0', `update_on` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `product_section` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `catmaxqty` varchar(250) DEFAULT NULL, `line_item` varchar(255) DEFAULT NULL, `temp_section_name` varchar(200) NOT NULL, `temp_section_slug` varchar(200) NOT NULL, `temp_section_url` varchar(200) NOT NULL, `temp_is_nationwide` int NOT NULL, `temp_storename` varchar(200) NOT NULL, `temp_storeaddress` varchar(200) NOT NULL, `temp_storephoto` varchar(200) NOT NULL, `temp_store_slug` varchar(200) NOT NULL, `temp_store_status` int DEFAULT NULL, `temp_skip_store` int DEFAULT NULL, `specification` text, `last_updated_on` timestamp NULL DEFAULT NULL, `pinecone_sync_datetime` datetime DEFAULT NULL, `data_sync_datetime` datetime DEFAULT NULL, `mm_product_flg` tinyint DEFAULT '0', `mm_customization` tinyint DEFAULT '0', `img_url` text, `img_thumb_url` text, `mm_product_id` text, PRIMARY KEY (`id`), KEY `storeid` (`storeid`,`id`,`categories`,`cat_id`,`status`), KEY `product_section` (`product_section`), KEY `categories` (`categories`), KEY `storeid_2` (`storeid`,`id`,`cat_id`), KEY `order_count` (`order_count`), KEY `pp_in_stock` (`pp_in_stock`), KEY `temp_is_nationwide` (`temp_is_nationwide`), KEY `parent_cat_id` (`parent_cat_id`,`temp_store_status`,`temp_skip_store`) ) ENGINE=InnoDB AUTO_INCREMENT=55 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_mm` -- LOCK TABLES `tbl_product_mm` WRITE; /*!40000 ALTER TABLE `tbl_product_mm` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product_mm` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_mm1` -- DROP TABLE IF EXISTS `tbl_product_mm1`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product_mm1` ( `uid` int NOT NULL DEFAULT '10', `storeid` bigint NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_cat_id` int DEFAULT NULL, `categories` varchar(255) NOT NULL, `cat_id` int NOT NULL, `subcat_id` int NOT NULL DEFAULT '0', `childsubcat_id` int DEFAULT NULL, `gchildsubcat_id` int DEFAULT NULL, `brand_id` int NOT NULL, `addon` varchar(10000) DEFAULT NULL, `addon_qty` varchar(1000) DEFAULT NULL, `product_ref_id` varchar(100) DEFAULT NULL, `product_name` varchar(255) NOT NULL, `product_code` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `pp_sizes` varchar(255) DEFAULT NULL, `pp_size` varchar(255) DEFAULT NULL, `pp_size_type` varchar(1000) DEFAULT NULL, `pp_weight` varchar(10) DEFAULT NULL, `pp_actual_price` double DEFAULT NULL, `pp_mrp_price` double DEFAULT NULL, `pp_tax` varchar(10) DEFAULT NULL, `pp_tax_method` varchar(50) DEFAULT NULL, `pp_tax_value` varchar(10) DEFAULT NULL, `pp_discount` double DEFAULT NULL, `pp_weekly_discount` double DEFAULT NULL, `pp_biweekly_discount` double DEFAULT NULL, `pp_monthly_discount` double DEFAULT NULL, `pp_sell_price` double DEFAULT NULL, `pp_weekly_sell_price` double DEFAULT NULL, `pp_biweekly_sell_price` double DEFAULT NULL, `pp_monthly_sell_price` double DEFAULT NULL, `pp_in_stock` tinyint DEFAULT NULL, `pp_pphoto` varchar(255) DEFAULT NULL, `pp_barcode` varchar(255) DEFAULT NULL, `pp_barcode_number` varchar(500) DEFAULT NULL, `pp_video` text, `product_app_photo` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `product_video` varchar(55) DEFAULT NULL, `description` text, `ingredients` text, `how_to_use` text, `nutritional_facts` text, `meta_title` text, `meta_keywords` text, `meta_description` text, `latest` int DEFAULT NULL, `price_change` int DEFAULT NULL, `display_order` int NOT NULL DEFAULT '20', `posted_by` varchar(11) DEFAULT NULL, `posted_date` varchar(50) DEFAULT NULL, `display_status` int DEFAULT NULL, `status` tinyint NOT NULL, `desp_plaintext` varchar(1000) DEFAULT NULL, `photo_wide` varchar(500) DEFAULT NULL, `only_for_meal_kit` tinyint DEFAULT '0', `only_for_addon` int DEFAULT NULL, `subscription_status` tinyint DEFAULT NULL, `no_of_select` tinyint DEFAULT NULL, `ship_start_date` date DEFAULT NULL, `product_tag` varchar(250) DEFAULT NULL, `product_sku` varchar(250) DEFAULT NULL, `order_count` int NOT NULL DEFAULT '0', `update_on` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `product_section` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `catmaxqty` varchar(250) DEFAULT NULL, `line_item` varchar(255) DEFAULT NULL, `temp_section_name` varchar(200) NOT NULL, `temp_section_slug` varchar(200) NOT NULL, `temp_section_url` varchar(200) NOT NULL, `temp_is_nationwide` int NOT NULL, `temp_storename` varchar(200) NOT NULL, `temp_storeaddress` varchar(200) NOT NULL, `temp_storephoto` varchar(200) NOT NULL, `temp_store_slug` varchar(200) NOT NULL, `temp_store_status` int DEFAULT NULL, `temp_skip_store` int DEFAULT NULL, `specification` text, `last_updated_on` timestamp NULL DEFAULT NULL, `pinecone_sync_datetime` datetime DEFAULT NULL, `data_sync_datetime` datetime DEFAULT NULL, `mm_product_flg` tinyint DEFAULT '0', `mm_customization` tinyint DEFAULT '0', `img_url` text, `img_thumb_url` text, `mm_product_id` text, PRIMARY KEY (`id`), KEY `storeid` (`storeid`,`id`,`categories`,`cat_id`,`status`), KEY `product_section` (`product_section`), KEY `categories` (`categories`), KEY `storeid_2` (`storeid`,`id`,`cat_id`), KEY `order_count` (`order_count`), KEY `pp_in_stock` (`pp_in_stock`), KEY `temp_is_nationwide` (`temp_is_nationwide`), KEY `parent_cat_id` (`parent_cat_id`,`temp_store_status`,`temp_skip_store`) ) ENGINE=InnoDB AUTO_INCREMENT=2042 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_mm1` -- LOCK TABLES `tbl_product_mm1` WRITE; /*!40000 ALTER TABLE `tbl_product_mm1` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product_mm1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_option` -- DROP TABLE IF EXISTS `tbl_product_option`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product_option` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `ingredient_name` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `ingredient_value` varchar(1000) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `ingredient_icon` varchar(500) NOT NULL, `vegan` int NOT NULL, `spice_level` varchar(100) NOT NULL DEFAULT '1', `taste_varient` varchar(200) NOT NULL, `status` int NOT NULL, `type` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=912 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_option` -- LOCK TABLES `tbl_product_option` WRITE; /*!40000 ALTER TABLE `tbl_product_option` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product_option` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_orginbkp_22july` -- DROP TABLE IF EXISTS `tbl_product_orginbkp_22july`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product_orginbkp_22july` ( `uid` int NOT NULL DEFAULT '10', `storeid` bigint NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_cat_id` int DEFAULT NULL, `categories` varchar(255) NOT NULL, `cat_id` int NOT NULL, `subcat_id` int NOT NULL DEFAULT '0', `childsubcat_id` int DEFAULT NULL, `gchildsubcat_id` int DEFAULT NULL, `brand_id` int NOT NULL, `addon` varchar(10000) DEFAULT NULL, `addon_qty` varchar(1000) DEFAULT NULL, `product_ref_id` varchar(100) DEFAULT NULL, `product_name` varchar(255) NOT NULL, `product_code` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `pp_sizes` varchar(255) DEFAULT NULL, `pp_size` varchar(255) DEFAULT NULL, `pp_size_type` varchar(1000) DEFAULT NULL, `pp_weight` varchar(10) DEFAULT NULL, `pp_actual_price` double DEFAULT NULL, `pp_mrp_price` double DEFAULT NULL, `pp_tax` varchar(10) DEFAULT NULL, `pp_tax_method` varchar(50) DEFAULT NULL, `pp_tax_value` varchar(10) DEFAULT NULL, `pp_discount` double DEFAULT NULL, `pp_weekly_discount` double DEFAULT NULL, `pp_biweekly_discount` double DEFAULT NULL, `pp_monthly_discount` double DEFAULT NULL, `pp_sell_price` double DEFAULT NULL, `pp_weekly_sell_price` double DEFAULT NULL, `pp_biweekly_sell_price` double DEFAULT NULL, `pp_monthly_sell_price` double DEFAULT NULL, `pp_in_stock` tinyint DEFAULT NULL, `pp_pphoto` varchar(255) DEFAULT NULL, `pp_barcode` varchar(255) DEFAULT NULL, `pp_barcode_number` varchar(500) DEFAULT NULL, `pp_video` text, `product_app_photo` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `product_video` varchar(55) DEFAULT NULL, `description` text, `ingredients` text, `how_to_use` text, `nutritional_facts` text, `meta_title` text, `meta_keywords` text, `meta_description` text, `latest` int DEFAULT NULL, `price_change` int DEFAULT NULL, `display_order` int NOT NULL DEFAULT '20', `posted_by` varchar(11) DEFAULT NULL, `posted_date` varchar(50) DEFAULT NULL, `display_status` int DEFAULT NULL, `status` tinyint NOT NULL, `desp_plaintext` varchar(1000) DEFAULT NULL, `photo_wide` varchar(500) DEFAULT NULL, `only_for_meal_kit` tinyint DEFAULT '0', `only_for_addon` int DEFAULT NULL, `subscription_status` tinyint DEFAULT NULL, `no_of_select` tinyint DEFAULT NULL, `ship_start_date` date DEFAULT NULL, `product_tag` varchar(250) DEFAULT NULL, `product_sku` varchar(250) DEFAULT NULL, `order_count` int NOT NULL DEFAULT '0', `update_on` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `product_section` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `catmaxqty` varchar(250) DEFAULT NULL, `line_item` varchar(255) DEFAULT NULL, `temp_section_name` varchar(200) NOT NULL, `temp_section_slug` varchar(200) NOT NULL, `temp_section_url` varchar(200) NOT NULL, `temp_is_nationwide` int NOT NULL, `temp_storename` varchar(200) NOT NULL, `temp_storeaddress` varchar(200) NOT NULL, `temp_storephoto` varchar(200) NOT NULL, `temp_store_slug` varchar(200) NOT NULL, `temp_store_status` int DEFAULT NULL, `temp_skip_store` int DEFAULT NULL, `specification` text, `last_updated_on` timestamp NULL DEFAULT NULL, `pinecone_sync_datetime` datetime DEFAULT NULL, `data_sync_datetime` datetime DEFAULT NULL, `mm_product_flg` tinyint DEFAULT '0', `mm_customization` tinyint DEFAULT '0', `img_url` text, `img_thumb_url` text, `mm_product_id` text, PRIMARY KEY (`id`), KEY `storeid` (`storeid`,`id`,`categories`,`cat_id`,`status`), KEY `product_section` (`product_section`), KEY `categories` (`categories`), KEY `storeid_2` (`storeid`,`id`,`cat_id`), KEY `order_count` (`order_count`), KEY `pp_in_stock` (`pp_in_stock`), KEY `temp_is_nationwide` (`temp_is_nationwide`), KEY `parent_cat_id` (`parent_cat_id`,`temp_store_status`,`temp_skip_store`), KEY `pp_sell_price` (`pp_sell_price`) ) ENGINE=InnoDB AUTO_INCREMENT=413717 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_orginbkp_22july` -- LOCK TABLES `tbl_product_orginbkp_22july` WRITE; /*!40000 ALTER TABLE `tbl_product_orginbkp_22july` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product_orginbkp_22july` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_rating` -- DROP TABLE IF EXISTS `tbl_product_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product_rating` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `product_id` int NOT NULL, `rating` int NOT NULL, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_rating` -- LOCK TABLES `tbl_product_rating` WRITE; /*!40000 ALTER TABLE `tbl_product_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_tag` -- DROP TABLE IF EXISTS `tbl_product_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product_tag` ( `id` int NOT NULL AUTO_INCREMENT, `pid` int NOT NULL, `tag` varchar(500) NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5607 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_tag` -- LOCK TABLES `tbl_product_tag` WRITE; /*!40000 ALTER TABLE `tbl_product_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_product_vbkp` -- DROP TABLE IF EXISTS `tbl_product_vbkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_product_vbkp` ( `uid` int NOT NULL DEFAULT '10', `storeid` bigint NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_cat_id` int DEFAULT NULL, `categories` varchar(255) NOT NULL, `cat_id` int NOT NULL, `subcat_id` int NOT NULL DEFAULT '0', `childsubcat_id` int DEFAULT NULL, `gchildsubcat_id` int DEFAULT NULL, `brand_id` int NOT NULL, `addon` varchar(10000) DEFAULT NULL, `addon_qty` varchar(1000) DEFAULT NULL, `product_ref_id` varchar(100) DEFAULT NULL, `product_name` varchar(255) NOT NULL, `product_code` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `pp_sizes` varchar(255) DEFAULT NULL, `pp_size` varchar(255) DEFAULT NULL, `pp_size_type` varchar(1000) DEFAULT NULL, `pp_weight` varchar(10) DEFAULT NULL, `pp_actual_price` double DEFAULT NULL, `pp_mrp_price` double DEFAULT NULL, `pp_tax` varchar(10) DEFAULT NULL, `pp_tax_method` varchar(50) DEFAULT NULL, `pp_tax_value` varchar(10) DEFAULT NULL, `pp_discount` double DEFAULT NULL, `pp_weekly_discount` double DEFAULT NULL, `pp_biweekly_discount` double DEFAULT NULL, `pp_monthly_discount` double DEFAULT NULL, `pp_sell_price` double DEFAULT NULL, `pp_weekly_sell_price` double DEFAULT NULL, `pp_biweekly_sell_price` double DEFAULT NULL, `pp_monthly_sell_price` double DEFAULT NULL, `pp_in_stock` tinyint DEFAULT NULL, `pp_pphoto` varchar(255) DEFAULT NULL, `pp_barcode` varchar(255) DEFAULT NULL, `pp_barcode_number` varchar(500) DEFAULT NULL, `pp_video` text, `product_app_photo` varchar(500) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `product_video` varchar(55) DEFAULT NULL, `description` text, `ingredients` text, `how_to_use` text, `nutritional_facts` text, `meta_title` text, `meta_keywords` text, `meta_description` text, `latest` int DEFAULT NULL, `price_change` int DEFAULT NULL, `display_order` int NOT NULL DEFAULT '20', `posted_by` varchar(11) DEFAULT NULL, `posted_date` varchar(50) DEFAULT NULL, `display_status` int DEFAULT NULL, `status` tinyint NOT NULL, `desp_plaintext` varchar(1000) DEFAULT NULL, `photo_wide` varchar(500) DEFAULT NULL, `only_for_meal_kit` tinyint DEFAULT '0', `only_for_addon` int DEFAULT NULL, `subscription_status` tinyint DEFAULT NULL, `no_of_select` tinyint DEFAULT NULL, `ship_start_date` date DEFAULT NULL, `product_tag` varchar(250) DEFAULT NULL, `product_sku` varchar(250) DEFAULT NULL, `order_count` int NOT NULL DEFAULT '0', `update_on` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `product_section` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `catmaxqty` varchar(250) DEFAULT NULL, `line_item` varchar(255) DEFAULT NULL, `temp_section_name` varchar(200) NOT NULL, `temp_section_slug` varchar(200) NOT NULL, `temp_section_url` varchar(200) NOT NULL, `temp_is_nationwide` int NOT NULL, `temp_storename` varchar(200) NOT NULL, `temp_storeaddress` varchar(200) NOT NULL, `temp_storephoto` varchar(200) NOT NULL, `temp_store_slug` varchar(200) NOT NULL, `temp_store_status` int DEFAULT NULL, `temp_skip_store` int DEFAULT NULL, `specification` text, `last_updated_on` timestamp NULL DEFAULT NULL, `pinecone_sync_datetime` datetime DEFAULT NULL, `data_sync_datetime` datetime DEFAULT NULL, `mm_product_flg` tinyint DEFAULT '0', `mm_customization` tinyint DEFAULT '0', `img_url` text, `img_thumb_url` text, `mm_product_id` text, PRIMARY KEY (`id`), KEY `storeid` (`storeid`,`id`,`categories`,`cat_id`,`status`), KEY `product_section` (`product_section`), KEY `categories` (`categories`), KEY `storeid_2` (`storeid`,`id`,`cat_id`), KEY `order_count` (`order_count`), KEY `pp_in_stock` (`pp_in_stock`), KEY `temp_is_nationwide` (`temp_is_nationwide`), KEY `parent_cat_id` (`parent_cat_id`,`temp_store_status`,`temp_skip_store`) ) ENGINE=InnoDB AUTO_INCREMENT=144944 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_product_vbkp` -- LOCK TABLES `tbl_product_vbkp` WRITE; /*!40000 ALTER TABLE `tbl_product_vbkp` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_product_vbkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_productaddon` -- DROP TABLE IF EXISTS `tbl_productaddon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_productaddon` ( `id` int NOT NULL AUTO_INCREMENT, `parent_id` int DEFAULT NULL, `productid` int NOT NULL, `addontype` varchar(50) NOT NULL, `type` varchar(100) NOT NULL, `category` varchar(500) NOT NULL, `addonname` varchar(500) NOT NULL, `mrpprice` varchar(10) NOT NULL, `sellprice` varchar(10) NOT NULL, `size` varchar(255) NOT NULL, `sizetype` varchar(20) NOT NULL, `pack_size` varchar(1000) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `photo` varchar(5000) NOT NULL, `photo_white` varchar(200) DEFAULT NULL, `tax_method` varchar(100) NOT NULL, `tax_value` varchar(50) NOT NULL, `bottle_size_tax` double NOT NULL DEFAULT '0', `discount_type` varchar(250) DEFAULT NULL, `discount` varchar(10) NOT NULL, `barcode` varchar(30) NOT NULL, `instock` varchar(2) NOT NULL, `is_catering_size` int NOT NULL DEFAULT '0', `status` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `min_qty` int DEFAULT NULL, `max_qty` int DEFAULT NULL, `selling_start_date` date DEFAULT NULL, `selling_end_date` date DEFAULT NULL, `ticket_label` varchar(100) DEFAULT NULL, `ticket_label_color` varchar(50) DEFAULT NULL, `display_order` tinyint NOT NULL, `mm_id` text, `default_qty` varchar(50) DEFAULT NULL, `lglmid` text CHARACTER SET latin1 COLLATE latin1_swedish_ci, PRIMARY KEY (`id`), KEY `productid` (`productid`), KEY `parent_id` (`parent_id`), KEY `status` (`status`) ) ENGINE=InnoDB AUTO_INCREMENT=873456 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_productaddon` -- LOCK TABLES `tbl_productaddon` WRITE; /*!40000 ALTER TABLE `tbl_productaddon` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_productaddon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_productaddon__vbkp` -- DROP TABLE IF EXISTS `tbl_productaddon__vbkp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_productaddon__vbkp` ( `id` int NOT NULL AUTO_INCREMENT, `parent_id` int DEFAULT NULL, `productid` int NOT NULL, `addontype` varchar(50) NOT NULL, `type` varchar(100) NOT NULL, `category` varchar(500) NOT NULL, `addonname` varchar(500) NOT NULL, `mrpprice` varchar(10) NOT NULL, `sellprice` varchar(10) NOT NULL, `size` varchar(255) NOT NULL, `sizetype` varchar(20) NOT NULL, `pack_size` varchar(1000) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `photo` varchar(5000) NOT NULL, `photo_white` varchar(200) DEFAULT NULL, `tax_method` varchar(100) NOT NULL, `tax_value` varchar(50) NOT NULL, `bottle_size_tax` double NOT NULL DEFAULT '0', `discount_type` varchar(250) DEFAULT NULL, `discount` varchar(10) NOT NULL, `barcode` varchar(30) NOT NULL, `instock` varchar(2) NOT NULL, `is_catering_size` int NOT NULL DEFAULT '0', `status` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `min_qty` int DEFAULT NULL, `max_qty` int DEFAULT NULL, `selling_start_date` date DEFAULT NULL, `selling_end_date` date DEFAULT NULL, `ticket_label` varchar(100) DEFAULT NULL, `ticket_label_color` varchar(50) DEFAULT NULL, `display_order` tinyint NOT NULL, `mm_id` text, `default_qty` varchar(50) DEFAULT NULL, `lglmid` text CHARACTER SET latin1 COLLATE latin1_swedish_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=363781 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_productaddon__vbkp` -- LOCK TABLES `tbl_productaddon__vbkp` WRITE; /*!40000 ALTER TABLE `tbl_productaddon__vbkp` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_productaddon__vbkp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_productaddon_bkplivedata30jl` -- DROP TABLE IF EXISTS `tbl_productaddon_bkplivedata30jl`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_productaddon_bkplivedata30jl` ( `id` int NOT NULL AUTO_INCREMENT, `parent_id` int DEFAULT NULL, `productid` int NOT NULL, `addontype` varchar(50) NOT NULL, `type` varchar(100) NOT NULL, `category` varchar(500) NOT NULL, `addonname` varchar(500) NOT NULL, `mrpprice` varchar(10) NOT NULL, `sellprice` varchar(10) NOT NULL, `size` varchar(255) NOT NULL, `sizetype` varchar(20) NOT NULL, `pack_size` varchar(1000) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `photo` varchar(5000) NOT NULL, `photo_white` varchar(200) DEFAULT NULL, `tax_method` varchar(100) NOT NULL, `tax_value` varchar(50) NOT NULL, `bottle_size_tax` double NOT NULL DEFAULT '0', `discount_type` varchar(250) DEFAULT NULL, `discount` varchar(10) NOT NULL, `barcode` varchar(30) NOT NULL, `instock` varchar(2) NOT NULL, `is_catering_size` int NOT NULL DEFAULT '0', `status` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `min_qty` int DEFAULT NULL, `max_qty` int DEFAULT NULL, `selling_start_date` date DEFAULT NULL, `selling_end_date` date DEFAULT NULL, `ticket_label` varchar(100) DEFAULT NULL, `ticket_label_color` varchar(50) DEFAULT NULL, `display_order` tinyint NOT NULL, `mm_id` text, `default_qty` varchar(50) DEFAULT NULL, `lglmid` text CHARACTER SET latin1 COLLATE latin1_swedish_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=873456 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_productaddon_bkplivedata30jl` -- LOCK TABLES `tbl_productaddon_bkplivedata30jl` WRITE; /*!40000 ALTER TABLE `tbl_productaddon_bkplivedata30jl` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_productaddon_bkplivedata30jl` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_productaddon_custm_fix` -- DROP TABLE IF EXISTS `tbl_productaddon_custm_fix`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_productaddon_custm_fix` ( `id` int NOT NULL AUTO_INCREMENT, `parent_id` int DEFAULT NULL, `productid` int NOT NULL, `addontype` varchar(50) NOT NULL, `type` varchar(100) NOT NULL, `category` varchar(500) NOT NULL, `addonname` varchar(500) NOT NULL, `mrpprice` varchar(10) NOT NULL, `sellprice` varchar(10) NOT NULL, `size` varchar(255) NOT NULL, `sizetype` varchar(20) NOT NULL, `pack_size` varchar(1000) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `photo` varchar(5000) NOT NULL, `photo_white` varchar(200) DEFAULT NULL, `tax_method` varchar(100) NOT NULL, `tax_value` varchar(50) NOT NULL, `bottle_size_tax` double NOT NULL DEFAULT '0', `discount_type` varchar(250) DEFAULT NULL, `discount` varchar(10) NOT NULL, `barcode` varchar(30) NOT NULL, `instock` varchar(2) NOT NULL, `is_catering_size` int NOT NULL DEFAULT '0', `status` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `min_qty` int DEFAULT NULL, `max_qty` int DEFAULT NULL, `selling_start_date` date DEFAULT NULL, `selling_end_date` date DEFAULT NULL, `ticket_label` varchar(100) DEFAULT NULL, `ticket_label_color` varchar(50) DEFAULT NULL, `display_order` tinyint NOT NULL, `mm_id` text, `default_qty` varchar(50) DEFAULT NULL, `lglmid` text CHARACTER SET latin1 COLLATE latin1_swedish_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=873456 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_productaddon_custm_fix` -- LOCK TABLES `tbl_productaddon_custm_fix` WRITE; /*!40000 ALTER TABLE `tbl_productaddon_custm_fix` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_productaddon_custm_fix` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_productaddon_mm` -- DROP TABLE IF EXISTS `tbl_productaddon_mm`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_productaddon_mm` ( `id` int NOT NULL AUTO_INCREMENT, `parent_id` int DEFAULT NULL, `productid` int NOT NULL, `addontype` varchar(50) NOT NULL, `type` varchar(100) NOT NULL, `category` varchar(500) NOT NULL, `addonname` varchar(500) NOT NULL, `mrpprice` varchar(10) NOT NULL, `sellprice` varchar(10) NOT NULL, `size` varchar(255) NOT NULL, `sizetype` varchar(20) NOT NULL, `pack_size` varchar(1000) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `photo` varchar(5000) NOT NULL, `tax_method` varchar(100) NOT NULL, `tax_value` varchar(50) NOT NULL, `bottle_size_tax` double NOT NULL DEFAULT '0', `discount_type` varchar(250) DEFAULT NULL, `discount` varchar(10) NOT NULL, `barcode` varchar(30) NOT NULL, `instock` varchar(2) NOT NULL, `is_catering_size` int NOT NULL DEFAULT '0', `status` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `min_qty` int DEFAULT NULL, `max_qty` int DEFAULT NULL, `selling_start_date` date DEFAULT NULL, `selling_end_date` date DEFAULT NULL, `ticket_label` varchar(100) DEFAULT NULL, `ticket_label_color` varchar(50) DEFAULT NULL, `display_order` tinyint NOT NULL, `mm_id` text, `default_qty` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_productaddon_mm` -- LOCK TABLES `tbl_productaddon_mm` WRITE; /*!40000 ALTER TABLE `tbl_productaddon_mm` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_productaddon_mm` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_productaddon_mm1` -- DROP TABLE IF EXISTS `tbl_productaddon_mm1`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_productaddon_mm1` ( `id` int NOT NULL AUTO_INCREMENT, `parent_id` int DEFAULT NULL, `productid` int NOT NULL, `addontype` varchar(50) NOT NULL, `type` varchar(100) NOT NULL, `category` varchar(500) NOT NULL, `addonname` varchar(500) NOT NULL, `mrpprice` varchar(10) NOT NULL, `sellprice` varchar(10) NOT NULL, `size` varchar(255) NOT NULL, `sizetype` varchar(20) NOT NULL, `pack_size` varchar(1000) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `photo` varchar(5000) NOT NULL, `tax_method` varchar(100) NOT NULL, `tax_value` varchar(50) NOT NULL, `bottle_size_tax` double NOT NULL DEFAULT '0', `discount_type` varchar(250) DEFAULT NULL, `discount` varchar(10) NOT NULL, `barcode` varchar(30) NOT NULL, `instock` varchar(2) NOT NULL, `is_catering_size` int NOT NULL DEFAULT '0', `status` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `min_qty` int DEFAULT NULL, `max_qty` int DEFAULT NULL, `selling_start_date` date DEFAULT NULL, `selling_end_date` date DEFAULT NULL, `ticket_label` varchar(100) DEFAULT NULL, `ticket_label_color` varchar(50) DEFAULT NULL, `display_order` tinyint NOT NULL, `mm_id` text, `default_qty` varchar(50) DEFAULT NULL, `lglmid` text CHARACTER SET latin1 COLLATE latin1_swedish_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2346 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_productaddon_mm1` -- LOCK TABLES `tbl_productaddon_mm1` WRITE; /*!40000 ALTER TABLE `tbl_productaddon_mm1` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_productaddon_mm1` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_productaddon_orginbkp_22july` -- DROP TABLE IF EXISTS `tbl_productaddon_orginbkp_22july`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_productaddon_orginbkp_22july` ( `id` int NOT NULL AUTO_INCREMENT, `parent_id` int DEFAULT NULL, `productid` int NOT NULL, `addontype` varchar(50) NOT NULL, `type` varchar(100) NOT NULL, `category` varchar(500) NOT NULL, `addonname` varchar(500) NOT NULL, `mrpprice` varchar(10) NOT NULL, `sellprice` varchar(10) NOT NULL, `size` varchar(255) NOT NULL, `sizetype` varchar(20) NOT NULL, `pack_size` varchar(1000) CHARACTER SET latin1 COLLATE latin1_swedish_ci DEFAULT NULL, `photo` varchar(5000) NOT NULL, `photo_white` varchar(200) DEFAULT NULL, `tax_method` varchar(100) NOT NULL, `tax_value` varchar(50) NOT NULL, `bottle_size_tax` double NOT NULL DEFAULT '0', `discount_type` varchar(250) DEFAULT NULL, `discount` varchar(10) NOT NULL, `barcode` varchar(30) NOT NULL, `instock` varchar(2) NOT NULL, `is_catering_size` int NOT NULL DEFAULT '0', `status` int NOT NULL, `pack_type` varchar(100) DEFAULT NULL, `min_qty` int DEFAULT NULL, `max_qty` int DEFAULT NULL, `selling_start_date` date DEFAULT NULL, `selling_end_date` date DEFAULT NULL, `ticket_label` varchar(100) DEFAULT NULL, `ticket_label_color` varchar(50) DEFAULT NULL, `display_order` tinyint NOT NULL, `mm_id` text, `default_qty` varchar(50) DEFAULT NULL, `lglmid` text CHARACTER SET latin1 COLLATE latin1_swedish_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=26469 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_productaddon_orginbkp_22july` -- LOCK TABLES `tbl_productaddon_orginbkp_22july` WRITE; /*!40000 ALTER TABLE `tbl_productaddon_orginbkp_22july` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_productaddon_orginbkp_22july` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_productprice` -- DROP TABLE IF EXISTS `tbl_productprice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_productprice` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `sizes` varchar(255) NOT NULL, `size` varchar(255) NOT NULL, `size_type` varchar(1000) NOT NULL, `weight` varchar(10) NOT NULL, `wholesale_min` int NOT NULL, `wholesale_discount` varchar(100) NOT NULL, `wholesale_discount1` varchar(100) NOT NULL, `wholesale_discount2` varchar(100) NOT NULL, `wholesale_discount3` varchar(100) NOT NULL, `actual_price` double NOT NULL, `mrp_price` double NOT NULL, `tax` varchar(10) NOT NULL, `tax_method` varchar(50) NOT NULL, `tax_value` varchar(10) NOT NULL DEFAULT '0', `old_tax_value` varchar(50) NOT NULL, `discount` double NOT NULL, `weekly_discount` double NOT NULL, `biweekly_discount` double NOT NULL, `monthly_discount` double NOT NULL, `sell_price` double NOT NULL, `weekly_sell_price` double NOT NULL, `biweekly_sell_price` double NOT NULL, `monthly_sell_price` double NOT NULL, `old_sell_price` varchar(50) NOT NULL, `in_stock` tinyint NOT NULL, `pphoto` varchar(255) NOT NULL, `barcode` varchar(255) NOT NULL, `barcode_number` varchar(500) NOT NULL, `video` text NOT NULL, `display_order` int NOT NULL DEFAULT '5', `status` tinyint NOT NULL, `puja_day` varchar(200) DEFAULT NULL, `price_detail` varchar(200) DEFAULT NULL, `puja_info` text, PRIMARY KEY (`id`), KEY `id` (`id`,`product_id`,`tax`,`tax_method`,`tax_value`,`discount`,`sell_price`,`in_stock`,`status`), KEY `product_id` (`product_id`,`in_stock`,`status`), KEY `product_id_2` (`product_id`,`discount`,`weekly_discount`,`biweekly_discount`,`monthly_discount`) ) ENGINE=InnoDB AUTO_INCREMENT=412771 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_productprice` -- LOCK TABLES `tbl_productprice` WRITE; /*!40000 ALTER TABLE `tbl_productprice` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_productprice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_productprice_6424` -- DROP TABLE IF EXISTS `tbl_productprice_6424`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_productprice_6424` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `sizes` varchar(255) NOT NULL, `size` varchar(255) NOT NULL, `size_type` varchar(1000) NOT NULL, `weight` varchar(10) NOT NULL, `wholesale_min` int NOT NULL, `wholesale_discount` varchar(100) NOT NULL, `wholesale_discount1` varchar(100) NOT NULL, `wholesale_discount2` varchar(100) NOT NULL, `wholesale_discount3` varchar(100) NOT NULL, `actual_price` double NOT NULL, `mrp_price` double NOT NULL, `tax` varchar(10) NOT NULL, `tax_method` varchar(50) NOT NULL, `tax_value` varchar(10) NOT NULL DEFAULT '0', `old_tax_value` varchar(50) NOT NULL, `discount` double NOT NULL, `weekly_discount` double NOT NULL, `biweekly_discount` double NOT NULL, `monthly_discount` double NOT NULL, `sell_price` double NOT NULL, `weekly_sell_price` double NOT NULL, `biweekly_sell_price` double NOT NULL, `monthly_sell_price` double NOT NULL, `old_sell_price` varchar(50) NOT NULL, `in_stock` tinyint NOT NULL, `pphoto` varchar(255) NOT NULL, `barcode` varchar(255) NOT NULL, `barcode_number` varchar(500) NOT NULL, `video` text NOT NULL, `display_order` int NOT NULL DEFAULT '5', `status` tinyint NOT NULL, `puja_day` varchar(200) DEFAULT NULL, `price_detail` varchar(200) DEFAULT NULL, `puja_info` text, PRIMARY KEY (`id`), KEY `id` (`id`,`product_id`,`tax`,`tax_method`,`tax_value`,`discount`,`sell_price`,`in_stock`,`status`), KEY `product_id` (`product_id`,`in_stock`,`status`), KEY `product_id_2` (`product_id`,`discount`,`weekly_discount`,`biweekly_discount`,`monthly_discount`) ) ENGINE=InnoDB AUTO_INCREMENT=412751 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_productprice_6424` -- LOCK TABLES `tbl_productprice_6424` WRITE; /*!40000 ALTER TABLE `tbl_productprice_6424` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_productprice_6424` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_productprice_mm` -- DROP TABLE IF EXISTS `tbl_productprice_mm`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_productprice_mm` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `sizes` varchar(255) NOT NULL, `size` varchar(255) NOT NULL, `size_type` varchar(1000) NOT NULL, `weight` varchar(10) NOT NULL, `wholesale_min` int NOT NULL, `wholesale_discount` varchar(100) NOT NULL, `wholesale_discount1` varchar(100) NOT NULL, `wholesale_discount2` varchar(100) NOT NULL, `wholesale_discount3` varchar(100) NOT NULL, `actual_price` double NOT NULL, `mrp_price` double NOT NULL, `tax` varchar(10) NOT NULL, `tax_method` varchar(50) NOT NULL, `tax_value` varchar(10) NOT NULL DEFAULT '0', `old_tax_value` varchar(50) NOT NULL, `discount` double NOT NULL, `weekly_discount` double NOT NULL, `biweekly_discount` double NOT NULL, `monthly_discount` double NOT NULL, `sell_price` double NOT NULL, `weekly_sell_price` double NOT NULL, `biweekly_sell_price` double NOT NULL, `monthly_sell_price` double NOT NULL, `old_sell_price` varchar(50) NOT NULL, `in_stock` tinyint NOT NULL, `pphoto` varchar(255) NOT NULL, `barcode` varchar(255) NOT NULL, `barcode_number` varchar(500) NOT NULL, `video` text NOT NULL, `display_order` int NOT NULL DEFAULT '5', `status` tinyint NOT NULL, `puja_day` varchar(200) DEFAULT NULL, `price_detail` varchar(200) DEFAULT NULL, `puja_info` text, PRIMARY KEY (`id`), KEY `id` (`id`,`product_id`,`tax`,`tax_method`,`tax_value`,`discount`,`sell_price`,`in_stock`,`status`), KEY `product_id` (`product_id`,`in_stock`,`status`), KEY `product_id_2` (`product_id`,`discount`,`weekly_discount`,`biweekly_discount`,`monthly_discount`) ) ENGINE=InnoDB AUTO_INCREMENT=155 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_productprice_mm` -- LOCK TABLES `tbl_productprice_mm` WRITE; /*!40000 ALTER TABLE `tbl_productprice_mm` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_productprice_mm` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_promotion_data` -- DROP TABLE IF EXISTS `tbl_promotion_data`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_promotion_data` ( `id` int NOT NULL AUTO_INCREMENT, `coupon_code` varchar(500) NOT NULL, `main_description` varchar(500) NOT NULL, `short_description` varchar(500) NOT NULL, `store_logo` varchar(500) NOT NULL, `store_url` varchar(500) NOT NULL, `type` tinyint NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=307 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_promotion_data` -- LOCK TABLES `tbl_promotion_data` WRITE; /*!40000 ALTER TABLE `tbl_promotion_data` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_promotion_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_psizes` -- DROP TABLE IF EXISTS `tbl_psizes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_psizes` ( `id` int NOT NULL AUTO_INCREMENT, `psize` varchar(255) NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_psizes` -- LOCK TABLES `tbl_psizes` WRITE; /*!40000 ALTER TABLE `tbl_psizes` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_psizes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_puja_avaibility_date_time` -- DROP TABLE IF EXISTS `tbl_puja_avaibility_date_time`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_puja_avaibility_date_time` ( `id` int NOT NULL AUTO_INCREMENT, `sizeid` int NOT NULL, `seller_id` int NOT NULL, `astrologer_id` int NOT NULL, `avaibility_date` date NOT NULL, `from_time` datetime NOT NULL, `to_time` datetime NOT NULL, `booking_status` int NOT NULL DEFAULT '0', `status` int NOT NULL, `timegap` int NOT NULL, `timezone` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `seller_id` (`seller_id`,`avaibility_date`,`from_time`,`to_time`,`status`), KEY `booking_status` (`booking_status`,`timegap`,`timezone`) ) ENGINE=InnoDB AUTO_INCREMENT=33758 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_puja_avaibility_date_time` -- LOCK TABLES `tbl_puja_avaibility_date_time` WRITE; /*!40000 ALTER TABLE `tbl_puja_avaibility_date_time` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_puja_avaibility_date_time` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_puja_avaibility_date_time_backup` -- DROP TABLE IF EXISTS `tbl_puja_avaibility_date_time_backup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_puja_avaibility_date_time_backup` ( `id` int NOT NULL AUTO_INCREMENT, `slotid` int DEFAULT NULL, `sizeid` int NOT NULL, `seller_id` int NOT NULL, `astrologer_id` int NOT NULL, `avaibility_date` date NOT NULL, `from_time` datetime NOT NULL, `to_time` datetime NOT NULL, `booking_status` int NOT NULL DEFAULT '0', `status` int NOT NULL, `timegap` int NOT NULL, `timezone` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `seller_id` (`seller_id`,`avaibility_date`,`from_time`,`to_time`,`status`), KEY `booking_status` (`booking_status`,`timegap`,`timezone`) ) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_puja_avaibility_date_time_backup` -- LOCK TABLES `tbl_puja_avaibility_date_time_backup` WRITE; /*!40000 ALTER TABLE `tbl_puja_avaibility_date_time_backup` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_puja_avaibility_date_time_backup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_puja_date` -- DROP TABLE IF EXISTS `tbl_puja_date`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_puja_date` ( `dt_id` int NOT NULL AUTO_INCREMENT, `product_id` varchar(200) NOT NULL, `custom_date` date NOT NULL, `status` int NOT NULL, PRIMARY KEY (`dt_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_puja_date` -- LOCK TABLES `tbl_puja_date` WRITE; /*!40000 ALTER TABLE `tbl_puja_date` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_puja_date` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_puja_extend_videcall_history` -- DROP TABLE IF EXISTS `tbl_puja_extend_videcall_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_puja_extend_videcall_history` ( `id` int NOT NULL AUTO_INCREMENT, `old_oid` int NOT NULL, `extend_oid` int NOT NULL, `user_id` int NOT NULL, `slotid` int NOT NULL, `status` int NOT NULL DEFAULT '0', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=65 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_puja_extend_videcall_history` -- LOCK TABLES `tbl_puja_extend_videcall_history` WRITE; /*!40000 ALTER TABLE `tbl_puja_extend_videcall_history` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_puja_extend_videcall_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_puja_faq` -- DROP TABLE IF EXISTS `tbl_puja_faq`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_puja_faq` ( `id` int NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `detail` text NOT NULL, `status` int NOT NULL, `order_no` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_puja_faq` -- LOCK TABLES `tbl_puja_faq` WRITE; /*!40000 ALTER TABLE `tbl_puja_faq` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_puja_faq` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_puja_media` -- DROP TABLE IF EXISTS `tbl_puja_media`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_puja_media` ( `id` int NOT NULL AUTO_INCREMENT, `photo` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `status` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_puja_media` -- LOCK TABLES `tbl_puja_media` WRITE; /*!40000 ALTER TABLE `tbl_puja_media` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_puja_media` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_puja_meta` -- DROP TABLE IF EXISTS `tbl_puja_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_puja_meta` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` varchar(100) NOT NULL, `url_slug` varchar(100) NOT NULL, `status` int NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=134 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_puja_meta` -- LOCK TABLES `tbl_puja_meta` WRITE; /*!40000 ALTER TABLE `tbl_puja_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_puja_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_puja_schedule` -- DROP TABLE IF EXISTS `tbl_puja_schedule`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_puja_schedule` ( `sc_id` int NOT NULL AUTO_INCREMENT, `order_id` varchar(200) NOT NULL, `pid` varchar(200) NOT NULL, `prodreference_id` varchar(200) DEFAULT NULL, `schedule_date` date DEFAULT NULL, `to_schedule_date` date DEFAULT NULL, `schedule_time` time DEFAULT NULL, `user_id` varchar(200) NOT NULL, `booked_date` date DEFAULT NULL, `to_booked_date` date DEFAULT NULL, `booked_slot` varchar(200) DEFAULT NULL, `name` varchar(200) DEFAULT NULL, `dob` datetime DEFAULT NULL, `birthplace` varchar(200) DEFAULT NULL, `useremailid` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `birthcountry` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `questionTodiscussion` text CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci, `slotid` int DEFAULT NULL, `price_id` varchar(100) DEFAULT NULL, `current_status` varchar(200) DEFAULT NULL, `chat_status` int DEFAULT '0', `order_complete_date` datetime DEFAULT NULL, `date_specific` tinyint DEFAULT NULL, `booking_day` int DEFAULT NULL, `seviceType` varchar(100) DEFAULT NULL, `order_status_comment` text, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`sc_id`) ) ENGINE=InnoDB AUTO_INCREMENT=361 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_puja_schedule` -- LOCK TABLES `tbl_puja_schedule` WRITE; /*!40000 ALTER TABLE `tbl_puja_schedule` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_puja_schedule` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_puja_temp_cart` -- DROP TABLE IF EXISTS `tbl_puja_temp_cart`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_puja_temp_cart` ( `card_id` int NOT NULL AUTO_INCREMENT, `slot_id` int NOT NULL, `sizeid` int NOT NULL, `user_id` int NOT NULL, `cart_group` int DEFAULT NULL, `created_on` datetime NOT NULL, `valid_till` datetime NOT NULL, PRIMARY KEY (`card_id`) ) ENGINE=InnoDB AUTO_INCREMENT=2787 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_puja_temp_cart` -- LOCK TABLES `tbl_puja_temp_cart` WRITE; /*!40000 ALTER TABLE `tbl_puja_temp_cart` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_puja_temp_cart` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_puja_time` -- DROP TABLE IF EXISTS `tbl_puja_time`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_puja_time` ( `dtt_id` int NOT NULL AUTO_INCREMENT, `product_id` varchar(200) NOT NULL, `date_id` varchar(200) NOT NULL, `from_time` time NOT NULL, `to_time` time NOT NULL, `status` int NOT NULL, PRIMARY KEY (`dtt_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_puja_time` -- LOCK TABLES `tbl_puja_time` WRITE; /*!40000 ALTER TABLE `tbl_puja_time` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_puja_time` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_purchased_giftcard` -- DROP TABLE IF EXISTS `tbl_purchased_giftcard`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_purchased_giftcard` ( `id` int NOT NULL AUTO_INCREMENT, `receiver_email` varchar(255) NOT NULL, `gift_message` varchar(255) NOT NULL, `sender_id` int NOT NULL, `store_id` int DEFAULT NULL, `quantity` int NOT NULL, `product_id` int NOT NULL, `order_id` int NOT NULL, `giftcard_amount` float NOT NULL, `payment_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `status` int NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_purchased_giftcard` -- LOCK TABLES `tbl_purchased_giftcard` WRITE; /*!40000 ALTER TABLE `tbl_purchased_giftcard` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_purchased_giftcard` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_quicklly_pass_change_plan` -- DROP TABLE IF EXISTS `tbl_quicklly_pass_change_plan`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_quicklly_pass_change_plan` ( `id` int NOT NULL AUTO_INCREMENT, `subs_id` int NOT NULL, `plan_id` int NOT NULL, `user_id` int NOT NULL, `plan_change_date` timestamp(4) NOT NULL DEFAULT CURRENT_TIMESTAMP(4), `status` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=92 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_quicklly_pass_change_plan` -- LOCK TABLES `tbl_quicklly_pass_change_plan` WRITE; /*!40000 ALTER TABLE `tbl_quicklly_pass_change_plan` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_quicklly_pass_change_plan` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_quicklly_pass_coupon` -- DROP TABLE IF EXISTS `tbl_quicklly_pass_coupon`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_quicklly_pass_coupon` ( `id` int NOT NULL AUTO_INCREMENT, `plan_id` int NOT NULL, `coupon_code` varchar(500) NOT NULL, `coupon_title` varchar(200) NOT NULL, `discount_percentage` int NOT NULL, `min_order` int NOT NULL DEFAULT '0', `temp_minorder` int NOT NULL, `bg_color_code` varchar(200) NOT NULL, `section_id` int NOT NULL, `section_name` varchar(200) NOT NULL, `sort_order` int NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_quicklly_pass_coupon` -- LOCK TABLES `tbl_quicklly_pass_coupon` WRITE; /*!40000 ALTER TABLE `tbl_quicklly_pass_coupon` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_quicklly_pass_coupon` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_quicklly_pass_plan` -- DROP TABLE IF EXISTS `tbl_quicklly_pass_plan`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_quicklly_pass_plan` ( `id` int NOT NULL AUTO_INCREMENT, `plan_name` varchar(500) NOT NULL, `plan_price` double NOT NULL, `plan_discount` double NOT NULL, `plan_short_desc` varchar(1000) NOT NULL, `plan_extra_off_percentage` int NOT NULL, `plan_pickup_orders_off` int NOT NULL, `plan_minimum_order_cretaria` tinyint NOT NULL, `plan_free_delivery` tinyint NOT NULL, `plan_packaging_fee` tinyint NOT NULL, `plan_color_mode` tinyint NOT NULL, `plan_type` varchar(100) NOT NULL, `status` tinyint NOT NULL, `display_order` int NOT NULL, `subscription_type` int NOT NULL, `platform_service_fees_pickup` double NOT NULL DEFAULT '0', `platform_service_fees_delivery` double NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `id` (`id`), KEY `plan_name` (`plan_name`,`plan_type`,`status`,`display_order`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_quicklly_pass_plan` -- LOCK TABLES `tbl_quicklly_pass_plan` WRITE; /*!40000 ALTER TABLE `tbl_quicklly_pass_plan` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_quicklly_pass_plan` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_quicklly_pass_plan_details` -- DROP TABLE IF EXISTS `tbl_quicklly_pass_plan_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_quicklly_pass_plan_details` ( `id` int NOT NULL AUTO_INCREMENT, `plan_id` int NOT NULL, `plan_features` varchar(500) NOT NULL, `plan_title` varchar(200) NOT NULL, `plain_short_icon` varchar(500) NOT NULL, `plan_flag` int NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_quicklly_pass_plan_details` -- LOCK TABLES `tbl_quicklly_pass_plan_details` WRITE; /*!40000 ALTER TABLE `tbl_quicklly_pass_plan_details` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_quicklly_pass_plan_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_quicklly_pass_saving_history` -- DROP TABLE IF EXISTS `tbl_quicklly_pass_saving_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_quicklly_pass_saving_history` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `order_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `user_id` int NOT NULL, `plan_id` int NOT NULL, `sub_total` double NOT NULL, `total_saving` double NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2935 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_quicklly_pass_saving_history` -- LOCK TABLES `tbl_quicklly_pass_saving_history` WRITE; /*!40000 ALTER TABLE `tbl_quicklly_pass_saving_history` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_quicklly_pass_saving_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_quicklly_pass_subscription` -- DROP TABLE IF EXISTS `tbl_quicklly_pass_subscription`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_quicklly_pass_subscription` ( `sub_id` int NOT NULL AUTO_INCREMENT, `plan_id` int NOT NULL, `order_id` varchar(111) NOT NULL, `user_id` int NOT NULL, `subscription_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `subscription_status` tinyint NOT NULL, `reason_for_cancel` varchar(1000) NOT NULL, `cancel_status` tinyint NOT NULL DEFAULT '0', `next_order_date` date NOT NULL, `subscription_types` int DEFAULT NULL, PRIMARY KEY (`sub_id`), KEY `sub_id` (`sub_id`,`plan_id`,`order_id`,`user_id`,`subscription_date`,`subscription_status`) ) ENGINE=InnoDB AUTO_INCREMENT=1017 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_quicklly_pass_subscription` -- LOCK TABLES `tbl_quicklly_pass_subscription` WRITE; /*!40000 ALTER TABLE `tbl_quicklly_pass_subscription` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_quicklly_pass_subscription` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_quicklly_pass_subscription_order` -- DROP TABLE IF EXISTS `tbl_quicklly_pass_subscription_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_quicklly_pass_subscription_order` ( `id` int NOT NULL AUTO_INCREMENT, `plain_id` int NOT NULL, `plan_name` varchar(200) NOT NULL, `price` double NOT NULL, `payment_status` int NOT NULL, `order_status` tinyint NOT NULL, `subs_id` int NOT NULL, `user_id` int NOT NULL, `order_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `order_from` varchar(200) NOT NULL, `app_ver` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2006 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_quicklly_pass_subscription_order` -- LOCK TABLES `tbl_quicklly_pass_subscription_order` WRITE; /*!40000 ALTER TABLE `tbl_quicklly_pass_subscription_order` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_quicklly_pass_subscription_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_quicklly_pass_transaction` -- DROP TABLE IF EXISTS `tbl_quicklly_pass_transaction`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_quicklly_pass_transaction` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `transaction_id` varchar(200) NOT NULL, `transaction_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `transaction_status` tinyint NOT NULL, `customer_id` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1324 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_quicklly_pass_transaction` -- LOCK TABLES `tbl_quicklly_pass_transaction` WRITE; /*!40000 ALTER TABLE `tbl_quicklly_pass_transaction` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_quicklly_pass_transaction` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_rating` -- DROP TABLE IF EXISTS `tbl_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_rating` ( `id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `user_id` int NOT NULL, `store_id` int NOT NULL, `rating` float NOT NULL, `review` varchar(300) NOT NULL, `rating_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `app_store_rating` tinyint NOT NULL DEFAULT '0', `custNotInterested` int NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6806 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_rating` -- LOCK TABLES `tbl_rating` WRITE; /*!40000 ALTER TABLE `tbl_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_recipe` -- DROP TABLE IF EXISTS `tbl_recipe`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_recipe` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `recipe_name` varchar(255) DEFAULT NULL, `category` int NOT NULL, `description` varchar(500) DEFAULT NULL, `tags` varchar(255) DEFAULT NULL, `veg_non_veg` int NOT NULL, `variation` varchar(1000) DEFAULT NULL, `photo` text NOT NULL, `recipe_slug` varchar(500) NOT NULL, `serve_qty` varchar(255) DEFAULT NULL, `prepretion_time` varchar(255) DEFAULT NULL, `cooking_time` varchar(255) DEFAULT NULL, `recipe_type` varchar(255) DEFAULT NULL, `pre_method` varchar(255) DEFAULT NULL, `holiday_special` varchar(255) DEFAULT NULL, `additional_note` varchar(255) DEFAULT NULL, `status` enum('1','0') NOT NULL DEFAULT '0', `entry` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=70 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_recipe` -- LOCK TABLES `tbl_recipe` WRITE; /*!40000 ALTER TABLE `tbl_recipe` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_recipe` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_recipe_ingredients` -- DROP TABLE IF EXISTS `tbl_recipe_ingredients`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_recipe_ingredients` ( `id` int NOT NULL AUTO_INCREMENT, `recipe_id` int NOT NULL, `product_id` int NOT NULL, `product_name` varchar(255) NOT NULL, `qty` varchar(100) NOT NULL, `qty_type` varchar(255) NOT NULL, `status` enum('1','0') NOT NULL DEFAULT '1', `entry` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1135 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_recipe_ingredients` -- LOCK TABLES `tbl_recipe_ingredients` WRITE; /*!40000 ALTER TABLE `tbl_recipe_ingredients` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_recipe_ingredients` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_recipe_map_products` -- DROP TABLE IF EXISTS `tbl_recipe_map_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_recipe_map_products` ( `id` int NOT NULL AUTO_INCREMENT, `recipe_id` int NOT NULL, `ingredients_id` int NOT NULL, `product_id` varchar(255) NOT NULL, `product_name` varchar(255) NOT NULL, `entry` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=892 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_recipe_map_products` -- LOCK TABLES `tbl_recipe_map_products` WRITE; /*!40000 ALTER TABLE `tbl_recipe_map_products` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_recipe_map_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_recipe_nutrition` -- DROP TABLE IF EXISTS `tbl_recipe_nutrition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_recipe_nutrition` ( `id` int NOT NULL AUTO_INCREMENT, `recipe_id` int NOT NULL, `nutrition_name` varchar(225) NOT NULL, `nutrition_value` varchar(225) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=856 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_recipe_nutrition` -- LOCK TABLES `tbl_recipe_nutrition` WRITE; /*!40000 ALTER TABLE `tbl_recipe_nutrition` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_recipe_nutrition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_recipe_rating` -- DROP TABLE IF EXISTS `tbl_recipe_rating`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_recipe_rating` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `recipe_id` int NOT NULL, `rating` int NOT NULL, `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_recipe_rating` -- LOCK TABLES `tbl_recipe_rating` WRITE; /*!40000 ALTER TABLE `tbl_recipe_rating` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_recipe_rating` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_recipe_step` -- DROP TABLE IF EXISTS `tbl_recipe_step`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_recipe_step` ( `id` int NOT NULL AUTO_INCREMENT, `recipe_id` int NOT NULL, `step` text NOT NULL, `status` enum('1','0') NOT NULL DEFAULT '1', `entry` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `step_image` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4220 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_recipe_step` -- LOCK TABLES `tbl_recipe_step` WRITE; /*!40000 ALTER TABLE `tbl_recipe_step` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_recipe_step` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_refund` -- DROP TABLE IF EXISTS `tbl_refund`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_refund` ( `id` int NOT NULL AUTO_INCREMENT, `orderid` int NOT NULL, `storeid` int NOT NULL, `amount` varchar(20) NOT NULL, `status` int NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_refund` -- LOCK TABLES `tbl_refund` WRITE; /*!40000 ALTER TABLE `tbl_refund` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_refund` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_reward_history` -- DROP TABLE IF EXISTS `tbl_reward_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_reward_history` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `order_id` int NOT NULL, `reward_point` int NOT NULL, `store_id` int DEFAULT NULL, `type` enum('Dr','Cr') NOT NULL, `remarks` varchar(2000) NOT NULL, `added_date` datetime NOT NULL, `status` tinyint NOT NULL, `tab_order` tinyint DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=98124 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_reward_history` -- LOCK TABLES `tbl_reward_history` WRITE; /*!40000 ALTER TABLE `tbl_reward_history` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_reward_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_sample_request` -- DROP TABLE IF EXISTS `tbl_sample_request`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_sample_request` ( `id` int NOT NULL AUTO_INCREMENT, `full_name` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `email` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `phone` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `organization_name` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `website` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `address` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` datetime NOT NULL, `ip` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `IsBlackListed` varchar(10) COLLATE utf8mb3_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=554 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_sample_request` -- LOCK TABLES `tbl_sample_request` WRITE; /*!40000 ALTER TABLE `tbl_sample_request` DISABLE KEYS */; INSERT INTO `tbl_sample_request` VALUES (2,'Puneet Pratap Singh','niitpuneetkumar@gmail.com','8318405807','Puneet ORG','www.puneetorg.com','kanpur up','2024-10-03 06:19:52','103.139.56.48',NULL),(3,'Sunaina Meena','Sunaina@quicklly.com','2243660987','Quicklly Inc','https://www.quicklly.com','Chicago, Illinois, United States','2024-10-04 07:39:58','122.180.199.200',NULL),(4,'Keval Raj','keval@quicklly.com','7737083342','Quicklly','https://www.quicklly.com','1400 North Lakeshore Driive, Chicago, IL, 60610','2024-10-04 08:40:59','73.8.233.105',NULL),(5,'Pritesh Velankar','pritesh@quicklly.com','7034732226','Quicklly Inc','','1908 Mariann Dr, Leander, TX 78641','2024-10-06 10:33:15','47.221.141.218',NULL),(6,'puneet','puneet@gmail.com','8318405807','2252','www.quicklly.com','2342342','2024-10-07 05:10:19','103.139.56.114',NULL),(7,'puneet','niitpuneetkumar@gmail.com','8318405807','aafsf','www.quicklly.com','erteter','2024-10-07 05:12:31','103.139.56.114',NULL),(8,'puneet','niitpuneetkumar@gmail.com','8318405807','63666','www.quicklly.com','fdg dfhdfh df','2024-10-07 05:14:24','103.139.56.114',NULL),(9,'puneet','niitpuneetkumar@gmail.com','8318405807','xyz','www.quicklly.com','ryrtbr rtyrty rtytr','2024-10-07 05:22:55','103.139.56.114',NULL),(10,'puneet','niitpuneetkumar@gmail.com','8318405807','2252','www.quicklly.com','2342342','2024-10-07 05:26:00','103.139.56.114',NULL),(11,'puneet','niitpuneetkumar@gmail.com','8318405807','quicklly','www.quicklly.com','208007 kanpur, up ','2024-10-07 07:13:37','103.139.56.62',NULL),(12,'puneet','niitpuneetkumar@gmail.com','8318405807','quicklly','www.quicklly.com','Chicago, IL 60610, USA','2024-10-07 07:25:50','103.139.56.62',NULL),(13,'puneet','niitpuneetkumar@gmail.com','8318405807','quickkly','www.quicklly.com','Chicago, IL 60610, USA','2024-10-07 07:39:39','103.139.56.62',NULL),(14,'puneet','niitpuneetkumar@gmail.com','8318405807','quickkly','www.quicklly.com','Chicago, IL 60610, USA','2024-10-07 07:40:24','103.139.56.62',NULL),(15,'puneet','niitpuneetkumar@gmail.com','8318405807','quicklly','www.quicklly.com','West Chicago Avenue, Chicago, IL 60610, USA','2024-10-07 07:58:46','103.139.56.62',NULL),(16,'puneet','niitpuneetkumar@gmail.com','8318405807','quicklly','www.quicklly.com','West Chicago Avenue, Chicago, IL 60610, USA','2024-10-07 08:01:42','103.139.56.62',NULL),(17,'Keval Raj','keval@quicklly.com','7737083342','Quicklly','www.quicklly.com','775 Newark Avenue','2024-10-07 03:09:23','73.8.233.105',NULL),(18,'Mark Yessin','MYessin@gmail.com','6465889072','Hain Celestial','','2 Treeview Circle, Scotch Plains, NJ, USA','2024-10-07 03:39:52','174.205.100.209',NULL),(19,'Pritesh Velankar','vpritesh@gmail.com','7034732226','Quicklly','','Test Address','2024-10-08 09:38:46','107.77.230.122',NULL),(20,'Paul Monteverde','paulm@doordash.com','3103872779','DoorDash ','DoorDash ','1994 Oak Manor Dr','2024-10-08 07:29:52','174.205.97.26',NULL),(21,'Carr Osborn','carr.osborn@vallartasupermarkets.com','8189347115','Vallarta Supermarkets','','4200 Laurel Canyon Boulevard, studio city, CA, USA','2024-10-08 08:01:01','107.77.228.9',NULL),(22,'TORAH@ADVENTURECPG.COM','TORAH@ADVENTURECPG.COM','8052231885','Adventure CPG','Adventure cpg ','110 Birch Leaf Ln, Fleetwood, NC, USA','2024-10-08 10:59:01','172.56.209.120',NULL),(23,'ygSzfcOA','valenzueladjaklin1991@gmail.com','5790414545','MozMTzvRbQXhFsM','JBwOlMQmGp','mmrjyQtZeS','2024-10-14 01:07:41','112.196.81.54',NULL),(24,'','','','','','','2024-10-14 01:07:43','112.196.81.54',NULL),(25,'Darla Sebastian','darlasebastian@gmail.com','7148756175','Heritage Grocers Group','Www.heritagegrocers.com','1080 East Oak Street, Anaheim, CA, USA','2024-10-17 05:25:48','146.75.146.41',NULL),(26,'sbsWvSGkiJMDfOK','frehuerh@gmail.com','3127744946','DdtMewYuwsngtN','nwFUpPDzbdOz','EByDdGAjNkd','2024-10-19 07:04:52','114.5.99.74',NULL),(27,'','','','','','','2024-10-19 07:04:54','114.5.99.74',NULL),(36,'puneet','niitpuneetkumar@gmail.com','8318405807','quicklly','https://www.quicklly.com','West Chicago Avenue, Chicago, IL 60610, USA','2024-10-21 12:59:23','103.139.56.53',NULL),(37,'Kev','k@k.com','9089009123','K','https://www.quicklly.com/online-indian-marketplace','Kansas City, MO, USA','2024-10-21 04:16:27','174.194.135.206',NULL),(38,'Brian Hoos','bhoos@nyit.edu','5166861483','New York Institute of Technology','nyit.edu','500 Northern Boulevard, Old Westbury, NY, USA','2024-10-21 01:34:17','64.35.176.177',NULL),(39,'Richard Cassel','richard@firstclassvending.com','3232687632','First Class Vending, Inc','firstclassvending.com','6875 Suva Street, Bell Gardens, CA, USA','2024-10-22 11:12:19','66.27.48.202',NULL),(40,'Richard Cassel','richard@firstclassvending.com','3232687632','First Class Vending, Inc','firstclassvending.com','6875 Suva Street, Bell Gardens, CA, USA','2024-10-22 11:12:20','66.27.48.202',NULL),(41,'Richard Cassel','richard@firstclassvending.com','3232687632','First Class Vending, Inc','firstclassvending.com','6875 Suva Street, Bell Gardens, CA, USA','2024-10-22 11:12:22','66.27.48.202',NULL),(42,'Rujit Raval','rujutraval@gmail.com','9182183255','None','None','636 Trailside Bend, Round Rock, TX, USA','2024-10-22 10:00:50','162.193.134.185',NULL),(43,'Puneet Pratap Singh','niitpuneetkumar@gmail.com','8318405807','quicklly','www.quicklly.com','West Chicago Avenue, Chicago, IL 60610, USA','2024-10-23 08:27:59','103.139.56.53',NULL),(53,'Puneet Pratap Singh','niitpuneetkumar@gmail.com','8318405807','quicklly','www.quicklly.com','West Chicago Avenue, Chicago, IL 60610, USA','2024-10-26 08:11:26','103.139.56.83',NULL),(54,'dLUIKpaTc','marquezharvif2003@gmail.com','6374822952','GfpkfqmpRTAvwW','UlqRtUvcDbMW','ACPAVegFaLp','2024-10-26 09:08:39','119.15.89.58',NULL),(55,'Keval Raj','keval@quicklly.com','17737083342','Quicklly','www.quicklly.com','775 Newark Avenue','2024-10-28 01:53:04','70.50.179.236',NULL),(56,'Dena Norman','eddlemand@missouri.edu','5738829197','University of MO Campus Dining','','900 Virginia Ave, Columbia, MO 65201, USA','2024-10-29 09:41:39','128.206.31.73',NULL),(57,'Dustin Miller ','dustin.miller@furmanos.com','7178050031','Furmano Foods ','www.furmanos.com','770 Cannery Road, Northumberland, PA, USA','2024-10-29 09:45:45','209.50.156.91',NULL),(58,'UqbnuGWCtf','st.fiofab@yahoo.com','7847243376','uSiCLuAkPZE','zzuyejZAXZJQJi','xsNNuBcOiLGb','2024-10-31 04:08:17','41.220.130.190','1'),(59,'Laurie V Colson','lauriecolson@ku.edu','3154086290','University of Kansas Memorial Union','dining.ku.edu','1301 Jayhawk Blvd Lawrence Kansas 66045','2024-11-05 10:52:02','129.237.90.169',NULL),(60,'kLUWUJTZub','iwejgojxxbo@yahoo.com','7671718332','UTPdyCHzUAhFULY','NXtFbIuatbhgxy','IgzKQyoRfFPl','2024-11-08 02:26:18','88.81.75.190','1'),(61,'Joe Regelbrugge','joseph.regelbrugge@cwu.edu','2062650882','CWU Dining','https://www.cwu.edu/student-life/dining/','CWU Dining 400 East University Way, MS 7588 Ellensburg WA 98926 SURC 225','2024-11-08 09:28:04','72.233.200.16',NULL),(62,'mTJcvaCaOt','mcbrideevelinai@gmail.com','6314016996','RZUmeWwGxNf','eVgcyeWRW','qOUqEBHE','2024-11-09 12:36:14','129.0.153.73','1'),(63,'TPSbTeasNLYtTK','iubemljrro@yahoo.com','7730092443','EFnroaWgMPWMI','VCcHNWioHhLQ','MuGSxTaIShEhxK','2024-11-09 06:30:36','110.235.250.143','1'),(64,'pwITFwuBq','pcoutelet@yahoo.fr','5625471974','xWCQPuruc','ZZNTCqbjRk','OScFdFTIlD','2024-11-10 12:04:09','5.190.235.171','1'),(65,'pUfYydwinFBwli','itqtjajpm@yahoo.com','5958398909','YyUGTdBPJhd','mwGqRcPePzr','uTOdmRAq','2024-11-11 05:52:22','43.239.112.46','1'),(66,'sVVcCDOmdRLW','lopaksatanillo@yahoo.com','5025567136','pcKbWmmkaRENKB','OHzeNpLEwzn','MJxadPunslFKU','2024-11-12 12:44:28','110.235.246.66','1'),(67,'DhbUfrDc','blairdyg587@gmail.com','6796471291','dmwZBEbVLOfbT','rXfZEbdeLpwK','JPxYTbeJWqeRi','2024-11-12 11:36:07','103.169.21.230','1'),(68,'kRLWYeVLGkdHA','kpeters7975@gmail.com','3253768061','EWuHjzPDY','sBukbfRmF','asmAGSMxBxR','2024-11-13 09:04:13','116.68.198.234','1'),(69,'CxfEnGdYudB','bealj4704@gmail.com','2513027335','rFbJePyCtAd','bKQRYzFHVIhMb','yRDWMGaBZoH','2024-11-14 06:03:34','46.231.72.32','1'),(70,'cpTPWHlDWOifovv','stevensondjidilh9971@gmail.com','6640053757','WYiuNCFws','AETNcAoHJC','CWsjDmmPkgv','2024-11-15 03:57:25','124.248.185.15','1'),(71,'ZaKkhENif','culertonstevermer@yahoo.com','8699092825','oLubPxNCrbFlvhS','soXSlHCWauDPmWr','vrfoRlmNpijGySV','2024-11-16 12:01:59','37.130.30.36','1'),(72,'ZBRMqCnfI','bd2akcvgopdeb3dx@yahoo.com','8453283003','nUGeqdhIk','dDnGSAngWNvhRZ','gFknyCnkmTk','2024-11-17 07:14:30','202.178.120.220','1'),(73,'Rk','coderrahul999@gmail.com','6802163807','Na','','220 Pleasantview Drive, Piscataway, NJ, USA','2024-11-18 11:56:04','104.148.253.51',NULL),(74,'KCIVaaDe','anjelinagrayl791@gmail.com','5970020946','JfozcoGzUwDeZGo','jMnylpMUeHj','GUGmkTRo','2024-11-19 10:54:20','111.90.187.62','1'),(75,'Visuanaden Chengalaram','veeren_chengalaram@byu.edu','4804345342','BYU','byu.edu','909 S 825 W, Springville, UT 84663, USA','2024-11-20 09:54:06','128.187.112.29',NULL),(76,'xahfLKTsmH','mashate_said@yahoo.com','3870595015','ysRUzHEj','GJwTwFoIvfD','VJKzOEsSgR','2024-11-22 07:18:06','103.180.2.30','1'),(77,'KZvlhVpQbzfgi','hmollilv2001@gmail.com','2713681581','iwQHtLNqkWDO','MvWzunCKzGAqokF','NWbMnBYfrWrnsE','2024-11-24 12:02:11','115.78.2.136','1'),(78,'iGGAyDPRrZa','ficoconnyx@gmail.com','5680664535','mpocGdCrRuAA','bAOUlfeTzcx','QJrKbiBeIvfDtrO','2024-11-24 08:47:13','113.176.31.37','1'),(79,'NrXkycdALiXGJ','uonwolmart@yahoo.com','4260717895','SRaMdHDirRnuYEo','RGCYvXMWOtzS','LIQdGGSMktrpgg','2024-11-25 07:31:31','116.90.225.98','1'),(80,'nqVfiAAytkichP','gqc9v6ljmtih1casi@yahoo.com','6664912644','qtrsFthr','GQDbDEddNkPuC','NSmDmhOyIZUB','2024-11-27 04:31:25','202.62.52.112','1'),(81,'OXGBOmjfodVTcJN','r9hs2mvwkoy@yahoo.com','7887105841','cYPwkLfBmaTHsUB','eFYWkwKJPu','JvBLiKtoRbXpQ','2024-11-28 12:42:54','197.155.75.82','1'),(82,'ClBFfuOq','schetinmcagge@yahoo.com','9206548263','rwNRiPKlMAMjkbR','cWUedFHvIO','YSZvmqTQnSE','2024-11-29 08:38:25','195.224.195.147','1'),(83,'jyOoHEadNRMJoN','ibasdeeeiulf@yahoo.com','5850004472','KNUXRPQjFxhGL','qWEUGsYbGchFeW','PuXMRUXYa','2024-11-30 09:49:00','103.106.192.162','1'),(84,'auXMTzPYFPOx','xbmlxfskya@yahoo.com','5376575669','mcEFSqDkqGNEMr','vzQOicQe','pifprKEH','2024-12-01 03:39:09','27.54.118.63','1'),(85,'uaIBkzpXnlXa','vvlpfoqfclu@yahoo.com','3530354853','qhtqgDbsX','UNRNUUFGQuafO','LAPzPiNIhyv','2024-12-02 07:18:18','201.20.73.230','1'),(86,'VMRyXMWBPBvKy','oeuswravkhujivi@yahoo.com','6679534561','OoAHKpVvlQbqz','jipsNvNT','sIfTaxeqiXufo','2024-12-03 01:46:04','103.120.135.214','1'),(87,'UrAmkCuaJjZUV','lllbnwidgqeerdyi@yahoo.com','6320619546','ZcDlTSvulm','BKURTNryoLDjWp','dkQyeaLqHDjgtWI','2024-12-04 11:01:29','105.27.162.102','1'),(88,'Andy Patel','andy.niralidecor@gmail.com','7326092835','Niralidecor','niralidecor@gmail.com','230 Bexley Lane, Piscataway, NJ, USA','2024-12-04 07:40:07','72.21.198.67',NULL),(89,'NzlJiXcj','ndastinq@gmail.com','2105095416','fwRoVGnBYpNWMW','FFmzGnGqrhCiTf','HkKZMRQXrIZJnrz','2024-12-05 05:52:36','123.24.142.34','1'),(90,'dPtcrMmAGDLlf','kaspirekkmlet@yahoo.com','9464663726','ScYmbnjudveg','sOSmyAdphRXkH','pOWzHhiUaY','2024-12-06 09:20:52','110.44.124.239','1'),(91,'XHIPekQXJfiBiRw','theophilegarage@gmail.com','9493905143','GyREZVNCDNdEmf','ijXfXdWCiEjSmeo','sHuyRTgu','2024-12-07 02:31:35','123.16.71.58','1'),(92,'qWQxXwiqgJYh','nehmeniethammer@yahoo.com','7305349397','XZwkTDSPCcwR','qAdBQzJbB','VYUeWoqSUmo','2024-12-08 07:49:33','41.76.22.64','1'),(93,'uwiyRqchBCGILGX','mementooe7jade97@gmail.com','3165044935','DQtrlwZsNLU','lZtpJUixj','dMnbvHpEQtdB','2024-12-09 06:38:50','177.38.57.180','1'),(94,'MWHsuVPK','drsnxvepdtut4vfhm@yahoo.com','9395376209','mSXNZKIQbuY','NPxYmCQISVgED','NeGibGViECNHS','2024-12-10 03:44:23','102.69.146.245','1'),(95,'ZKmtrsOusve','mwiueqmvqiu@yahoo.com','8690761703','SrbJykCF','VxlQPiOCIiDpa','UDMAJaVHzJhLs','2024-12-11 06:43:23','217.150.67.4','1'),(96,'qXSdyZZUPvvSwW','dtvgggnohfchgcaqj@yahoo.com','6064390623','AzGNknIRnJ','BLuELtyTvbUas','cYalfTScl','2024-12-12 12:17:33','222.252.204.142','1'),(97,'renee pas','renee@zoombagroup.com','6306972726','Zoomba Group','fesmag.com','408 South Hill Street, Elmhurst, IL, USA','2024-12-12 02:26:23','76.157.226.33',NULL),(98,'chris caronchi','caroncc2@ccf.org','2169562571','The Cleveland Clinic','https://my.clevelandclinic.org/','9775 Durkee Rd, North Ridgeville, OH, USA','2024-12-12 02:26:30','136.226.49.19',NULL),(99,'Dennis Meersdom','meersdo1@msu.edu','5178846092','Spartys at Michigan State University','www.msu.edu','220 Service Rd','2024-12-12 02:55:41','35.10.164.91',NULL),(100,'gFZfXNAGZyUu','stacieboorom@gmail.com','7495538284','lLgIZRnLffgpN','LKpKXdYf','WnLaXKsMeF','2024-12-13 03:19:45','110.34.1.70','1'),(101,'UOPlEOqyRI','ihncnppaofxpxwt@yahoo.com','9274924214','zxQcBubbU','FkKYpQyXK','wcBfcLRool','2024-12-14 11:13:24','58.97.209.194','1'),(102,'siLfvUAvx','eazenithaiglyph61@gmail.com','7933235659','SitiQGqUleVOsg','hDmqnstvppdIl','FsxULUObIvP','2024-12-15 06:14:39','43.241.128.68','1'),(103,'NhFNBJfJ','pehgpc7mrwvs@yahoo.com','8440089498','ujnXTJBgcqW','HTpmkUqFRJ','uhjMXfKuCCQlFzK','2024-12-16 05:48:30','41.79.33.178','1'),(104,'wMARynpRIs','mhloexlcaapmbv@yahoo.com','7044798108','XFbwnRlGGXWVcc','kLKqkalihw','MZlLJDBWzkzwBA','2024-12-18 05:03:49','105.23.241.50','1'),(105,'JlGSYsJHCKxfrwx','walkngeaglelshkes@yahoo.com','9809316073','uTAwSFrQXR','VvEmCUtTus','rxhNIRTluswhTB','2024-12-19 05:46:49','103.245.109.157','1'),(106,'QmuuZjjhdFvnte','alvillarkotian@yahoo.com','5637408582','LTGRfTSOuzPW','EigdsaDKtzczCKg','sLFryiVuHn','2024-12-20 04:40:53','181.204.180.180','1'),(107,'bJPNjrDaLQfMDU','donewuj475@gmail.com','7408612127','tQCvwryyrJFhaH','yYWkpXZELWOLGf','mVnxOGFvsrk','2024-12-21 11:07:03','114.4.242.226','1'),(108,'fTlNRheNRJbF','aleuporis@yahoo.com','9979783468','ntLQxKHf','wUdJvfFqKxRJMH','xblRTCDBpevKuF','2024-12-22 06:02:39','110.34.1.73','1'),(109,'QPhGeGHaVFv','asuboyesume81@gmail.com','4892251733','BsDEDsgVGG','sVAbASIsAAIFRT','BBXNyEbyhQ','2024-12-23 12:11:05','103.189.237.64','1'),(110,'jyGNzLRqeZwe','cicehaxay57@gmail.com','2393994575','HsetOJUaxuadG','vmnplhJkKqhlLx','QbIWXbbPsqRLyE','2024-12-24 02:38:45','43.252.244.187','1'),(111,'WaBhMlitalqzjx','crescentoemirage39ua@gmail.com','3590429276','xTgeFGMK','hFnvSbxl','ALlnzdyOXfRjw','2024-12-25 12:00:17','203.129.206.14','1'),(112,'hUvRFoFEz','lixqgj5wwgv@yahoo.com','7876828738','ooSACDgpQatEFKK','lbiTOwLAn','zMDGJgAiaHapP','2024-12-25 07:41:36','202.63.241.96','1'),(113,'UhckevvRMAFdkV','payelizamo229@gmail.com','5236673162','VrdNPfvN','EvUgLVpjX','MZGXiJpRSWsvAjo','2024-12-26 06:35:42','213.172.156.43','1'),(114,'NpvhpFGGW','cahapukor782@gmail.com','5247478636','mIgYLial','vpYtZTMXpqJ','VopItPir','2024-12-27 05:48:57','103.165.236.226','1'),(115,'wimyodFC','szfranchfe@yahoo.com','9328943852','nUpcUyDOSxugd','CCeMrCOUdmedj','FrubwXbLha','2024-12-29 12:54:33','103.187.151.75','1'),(116,'LeKHohBrfYgmh','pericokiru@yahoo.com','7361760337','fSKbaXgXADeaKu','OwOCLiDhexPn','VsEpVOtucwkkH','2024-12-30 09:28:49','103.122.146.2','1'),(117,'LGmcrvvMVT','o3qrty7h2kaqfm@yahoo.com','7090482465','TbSKbpGbNCadLA','lvYDYjCupeQqv','dEmCGJSrdc','2024-12-31 05:23:48','36.37.139.199','1'),(118,'AxjRETPNhvhfEU','irazeriji320@gmail.com','6195289745','YrWsUPzwfJ','fnVCExITuNgVr','kWCHyWDZGZq','2024-12-31 11:27:47','62.110.192.3','1'),(119,'EOoPCaimYSF','rhtlizfvyiuusohqo@yahoo.com','8069175033','gIWiAmUzwkZJh','srfVhsbMnEIx','rjMuLlyWCLj','2025-01-01 04:28:18','202.62.52.248','1'),(120,'qmkekFCB','prakashmagarelli@yahoo.com','8778968567','MRSLhnCHJvrx','bSFfjfPifG','qBXngrrKAqaM','2025-01-02 11:12:59','201.217.129.253','1'),(121,'aWcoToCpgaqwSYF','eljceslxkddpqixi@yahoo.com','9955535642','MUcGQtfRqGGqj','UMPqzJxLTsEHsc','ColPoezF','2025-01-03 07:53:36','36.37.159.8','1'),(122,'Max Grant','dgrant06@uga.edu','4784569568','University of Georgia Retail Dining','dining.uga.edu','790 South Lumpkin Street, Athens, GA, USA','2025-01-03 01:26:25','198.137.20.184',NULL),(123,'cxfqYUVyIuV','gvcagvmfmqhjsttd@yahoo.com','6989358950','OofJVxiIvvyK','mSPUmDmwNJoj','JBewiyuv','2025-01-04 07:40:25','45.166.188.112','1'),(124,'RMMOxWZKktPCv','orwt9tmsvvatdmi4@yahoo.com','3921244297','pPQGxmMpP','SjZZwDmRIQC','dHjFVdsKIF','2025-01-05 09:12:23','160.119.154.219','1'),(125,'zGcnZjyDhKN','ebipufa525@gmail.com','6794925040','BnUwjjBNf','MTsvqAUs','hAeCWHTzKkiV','2025-01-06 05:07:15','200.53.16.158','1'),(126,'Greg Bibb','gbibb@marymount.edu','9733428343','Marymount University','Marymount.edu','2807 North Glebe Road, Arlington, VA, USA','2025-01-07 11:31:00','199.111.99.66',NULL),(127,'CAVCBbiK','f3ze8cr9orpwc@yahoo.com','3053825341','uktoKzbIzFz','ugBVMuZmgUqES','VBUtAWRdqVYcUkH','2025-01-07 06:32:08','103.149.194.31','1'),(128,'sTFYiXoqefwrv','h5dyhwzs3uc@yahoo.com','4881772997','HsHfRkSW','NFtFjFDyG','gwYLFPIlvW','2025-01-08 10:28:30','116.212.137.46','1'),(129,'HkRZZQcWz','ocngkwioiug@yahoo.com','8605428071','IfIrNbshlAro','ZIHAohJig','QkpfzppUzV','2025-01-09 10:00:10','203.176.140.202','1'),(130,'DpiIvrkX','bawucik234@gmail.com','4547109700','EhhYuRpK','vmgKKuWwPcG','vseZriIg','2025-01-10 07:56:20','200.39.150.216','1'),(131,'mYMcRVYpB','oxwc8jkordx@yahoo.com','2523919943','hCXwguwSmRT','VWEXegXWUUWv','ZXDjZaNv','2025-01-11 06:48:34','41.160.193.207','1'),(132,'qnmxicDbsi','axukizan96@gmail.com','4206312317','rDnFNGDBec','MKjaInJh','kSqESUrZ','2025-01-12 09:46:53','65.20.189.12','1'),(133,'EiFEkqQQfBlTZ','sieajqzyy@yahoo.com','2641536161','yhmoPOnq','UHvEbysbZllBvo','IMjXHjEzMmQJr','2025-01-15 11:16:00','118.91.175.242','1'),(134,'Ana Sagastume','sagastume-ana@aramark.com','9094653782','Aramark','aramark.com','5252 West University Drive, McKinney, TX, USA','2025-01-17 09:51:52','198.205.17.200',NULL),(135,'Travis Ellis','travis.ellis@pomona.edu','9096070451','Pomona College','Pomona .edu','260 East Bonita Avenue, Claremont, CA, USA','2025-01-17 10:03:50','134.173.86.171',NULL),(136,'Michael Brainard','brainard-michael1@aramark.com','5756353098','Ole Miss Dinning','','1706 North Main Street, Water Valley, MS, USA','2025-01-17 10:40:10','130.74.58.44',NULL),(137,'Clayton Madison Cappellanti','cmc0026@mail.wvu.edu','3042937738','West Virginia University','https://diningservices.wvu.edu/home','1550 University Avenue, Morgantown, WV, USA','2025-01-17 11:10:20','50.110.87.134',NULL),(138,'Sabrina Persaud','spersaud@molloy.edu','5163233044','Molloy University','Molloy University','1000 Hempstead Avenue','2025-01-17 12:29:55','69.74.141.230',NULL),(139,'Andy Patel','vpateldh@amazon.com','7326092835','amazon','','2205 Lincoln Highway, Edison, NJ, USA','2025-01-17 07:58:05','72.21.198.65',NULL),(140,'mVPrTAaZedR','slpheferett@yahoo.com','5486605087','FvlSuNugWhyGcRu','iPvmUrXTaDb','jJjqiBFdHbBVW','2025-01-19 04:38:31','187.19.217.55','1'),(141,'JYdqAKiNkgk','uymemento46irisou@gmail.com','4928420452','fLxrxeTWEbEbBb','bIVBwPdTeM','OzrBEmDpcUHAs','2025-01-20 01:16:28','201.131.240.185','1'),(142,'OFFAwCCY','onirvanaae9pinnacle99@gmail.com','3816067576','eAnvNxwRmKZO','jneDkwnXLLylCr','SHORWqgklIVTtC','2025-01-21 05:42:37','197.251.193.36','1'),(143,'Amy Cheng','lemec39@gmail.com','4804345356','Hospice of the Valley','HOV.org','909 S 825 W','2025-01-21 10:26:15','128.187.112.29',NULL),(144,'WPaWwkxH','fqeicumjixdp@yahoo.com','2119090011','IpuoMWRgWExG','osHMNcWzaT','PJtaxodrCkbDwYW','2025-01-24 10:18:43','85.120.220.240','1'),(145,'okSIJplYmuukl','Judith3Mills6017@gmail.com','3158934193','RhvJeapVK','yLaJfvSpGHQ','OvTTGSSxow','2025-01-26 01:55:00','102.39.183.235','1'),(146,'ryjgVSqAFxe','rphrprplslnfkdjh@yahoo.com','4508669655','kJktUKWFcwTpf','CiKSUFiGIFBW','IIeNwfeLOyc','2025-01-27 11:51:19','201.219.250.68','1'),(147,'EYcHyScsemctNUO','Stephen0Aldridge6488@gmail.com','5103256897','RIUFcIjXwlmO','EgbmNSjPFiXLSAO','afHecobvk','2025-01-30 05:58:03','173.242.108.5','1'),(148,'owRtkSzjMDyjJc','Scott4Dyson2522@gmail.com','7165245126','NIwjvoJaA','YuHlEjksixgeUZj','XDRrpuohdIxunJ','2025-01-31 01:50:03','47.88.107.188','1'),(149,'lgvLkWfaTC','tkxkwwreyc@yahoo.com','5422280757','dsJItLbjksSkV','BERAYAvTHFeR','RwLaeSJmd','2025-02-01 04:28:00','111.90.177.58','1'),(150,'rZuxbxaybg','ggtvwgff2jxc4u@yahoo.com','8187580162','RQkOqhHrN','vLEsUWIkjXNsi','nDxHsQDohdoKaG','2025-02-02 12:12:30','45.231.89.90','1'),(151,'uMTuiMKfzYezcN','sedisigu619@gmail.com','9144783130','cwEgRkAVHSozSb','gnHspZSnqmqjGEU','OTPGbDSi','2025-02-03 01:44:48','69.169.167.69','1'),(152,'LpIdHqNitpI','quiverai91oracleau@gmail.com','9442504983','vyNYXMLnAKuC','iksCwNsPyoa','kEWOZIRaUoxygee','2025-02-04 04:01:48','113.164.28.142','1'),(153,'Regina Hobson','Regina.hobson@cookchildrens.org','6828853924','COOK CHILDRENS MED CENTER','','801 7TH AVE ATTENTION FOODSERVICE','2025-02-05 10:48:27','155.190.8.52',NULL),(154,'WEcjvAKzr','aiobsidian46rift30@gmail.com','3733166204','VmquHvlwlGUrSyO','YCqitCxfx','RMZmSXkOsmTdU','2025-02-05 01:56:20','91.241.41.30','1'),(155,'VzIZLaLbfFbEuH','lunarua22legacyie@gmail.com','6998464722','PtzmPkqDP','QuNdfqTA','ZkJlzUNLufn','2025-02-06 02:51:50','14.241.162.35','1'),(156,'XmnaHBoXvbKTP','oestellare27verge@gmail.com','8444473265','WrEaRklXfpouHp','gjpHzdkZBnZ','lMxbsuaf','2025-02-07 09:32:50','117.221.228.100','1'),(157,'antanea goldsmith','antaneagoldsmith440@gmail.com','7163707451','absolut care gasport','','249 Van Buren Street, Lockport, NY, USA','2025-02-08 07:27:18','24.97.39.42',NULL),(158,'JPNDEohTtOLc','obavaxayuso766@gmail.com','9085493481','XQWDVQfcaJTEU','GxUQnFPVBHTJgv','xNLrBnCxWChjbmI','2025-02-09 10:52:43','200.142.127.222','1'),(159,'Yameen Hossain','yameenhossain@gmail.com','9293449342','Gunther VW Coconut Creek ','','5630 Northwest 42nd Way, Coconut Creek, FL 33073, USA','2025-02-10 06:07:33','159.100.171.61',NULL),(160,'CoBlbvOZOYYN','reverieeo45iris20@gmail.com','4523583497','WfPsfweEScf','ZItUIBxtfrOcYP','WURpZEeOOMTHvm','2025-02-11 12:25:04','202.62.37.16','1'),(161,'Nicole Roarke','nicole.roarke@kirkland.com','6313161911','FLIK / Kirkland & Ellis, NYC','https://www.kirkland.com/','601 Lexington Avenue 42nd floor, New York, NY, USA','2025-02-11 07:03:53','162.10.160.40',NULL),(162,'zEukqGAckwYzt','ulamesubi319@gmail.com','6118686698','uzlVPUBvPBo','TzJMFydSqaca','KSXpINngnZBrPSg','2025-02-13 12:41:17','91.144.16.233','1'),(163,'Kirk Rodriguez','kirk.rodriguez@ttu.edu','8067421360','Texas Tech U Hospitality Services','Www.TTUhospitality@ttu.edu','Wiggins complex3311 18th Street, Lubbock, TX, USA','2025-02-14 10:58:48','192.58.125.19',NULL),(164,'necHAZPCDDOP','pindaosiruphu@yahoo.com','2114748922','JcwFzyxDJydw','nkrOjIOOd','iTtBYcEEtoiwx','2025-02-14 02:03:54','36.67.39.41','1'),(165,'QjGbAukgIZHe','ethnkleili16@gmail.com','4751865125','DqbYSqaTeGYzK','ulMiaitkVrgdmm','aVHWPLBae','2025-02-15 07:42:27','115.79.97.228','1'),(166,'JzgQyQqjoFnaU','djessikahanna83@gmail.com','8158565449','MFoYIwalmVSI','JaGNZrUWCIyu','LCoTswQovrJZpQJ','2025-02-15 11:57:29','177.70.184.48','1'),(167,'rPcKugNEnV','gailsmarksn@gmail.com','6482733380','uMcLIZBOxuHZ','ZGoEetCs','BiAdoxmVnRrG','2025-02-16 04:22:56','103.80.82.199','1'),(168,'LWkEUwSSgB','godfrikellerb6@gmail.com','2637129624','XoQHfJho','sxirzXRiOeNXJmA','zmlqeednxwf','2025-02-17 11:59:35','151.232.29.197','1'),(169,'FdwGNqQweJtFIm','ovelabo@yahoo.com','6401238791','yPVYYdWzBkAkf','OlBiewXRYYgzRKp','NnUFfxDONMs','2025-02-19 12:31:27','185.177.2.53','1'),(170,'tRakeQnUT','crescenteomirage88@gmail.com','9978876703','hvtXuuDaAsHT','JEKSTWorytMstbD','lobFmoRExCO','2025-02-21 01:23:07','116.212.156.15','1'),(171,'Nishant goel','njgoel@andrew.cmu.edu','4129798181','Carnegie Mellon University ','https://www.cmu.edu/dining/','Residence On Fifth, 4700 Fifth Ave, Pittsburgh, PA 15213, USA','2025-02-21 08:57:22','76.125.165.134',NULL),(172,'Chris Coffey','rccoffey@eiu.edu','2175817002','Eastern Illinois University','Eiu.edu','1720 7th Street, Charleston, IL, USA','2025-02-21 09:35:55','139.67.30.80',NULL),(173,'Mohanlall Teloki','mohanlall.teloki@einsteinmed.edu','7184302101','Albert Einstein College of Medicine','https://einsteinmed.edu/education/life-einstein/for-students/student-support-offices/office-student-life','1300 Morris Park Ave, Belfer 111, Bronx, NY, USA','2025-02-21 09:42:35','47.19.177.246',NULL),(174,'Gregory Bibb','gbibb@marymount.edu','9733428343','Marymount University','www.Marymount.edu','2807 N Glebe Rd, Arlington, VA, USA','2025-02-21 10:22:52','198.100.2.67',NULL),(175,'DVRCjIRo','d2mtck1nk5vsp05@yahoo.com','8357715989','FsXGYosEV','sYOyPJOPJmiMt','DSHavpEsbMqKTK','2025-02-22 05:32:01','78.130.125.248','1'),(176,'VAECiXqejng','adoughertyri49@gmail.com','7900709097','NrgxBaimHkzWZo','NpQcXedXRh','OYOeOLHpbHfRSE','2025-02-23 09:48:57','41.57.111.33','1'),(177,'HaVlZQvmAtc','expanse44chimeua@gmail.com','6651280076','BOwNSTTMJjVffGV','XoCstFrOr','jgizTqTpVS','2025-02-24 04:03:18','186.178.124.214','1'),(178,'OdCgKZVuEupNC','aekismetalchemy@gmail.com','8843461892','AwIXbTjmwJ','GGVHuicXEWdohY','LBiNeFRxWCmk','2025-02-26 04:45:24','185.248.15.221','1'),(179,'nMuviucUHDavbaG','bbsebcajsof@yahoo.com','7353005942','AfaYqPjOKTyXy','qaJYOmsDrr','NtRnBgEVHtAihN','2025-02-27 01:55:21','105.234.150.156','1'),(180,'kqoUeyKQnRYcdDp','cantrellkristinea30@gmail.com','5454078258','SojckBxd','yBGqQOWOaMzR','ShFoZSGKpQ','2025-02-28 01:31:58','113.161.6.149','1'),(181,'christopher ansardi','ansardi-chris2@aramark.com','9855072860','aramark','','305 Catawba Drive, Logan Township, NJ, USA','2025-02-28 10:15:02','131.249.154.42',NULL),(182,'tFKBSvsmVDtCCo','neraincwb1@gmail.com','4901450426','WnIvYeriIhFtrn','jnobrlFRhWWuFz','vObBtbEfWi','2025-03-01 01:19:35','110.44.124.239','1'),(183,'wUXMGeuRNnV','venonnavaldezoq8@gmail.com','4178179253','YRWbCIIdHHLqnY','ipGUIZzMQIvdF','GIjtLtExqKvA','2025-03-02 06:57:05','152.230.59.202','1'),(184,'QVgGaums','burchtimotir@gmail.com','6321266506','SCVcDdtmQdrLbjy','VnLixgOQx','DiwdIfhEepK','2025-03-02 11:22:59','186.224.32.6','1'),(185,'TciWJSAoz','alisyanealb8@gmail.com','6902416466','CXlRzJwsZTIy','NgxJQZGZJYpAjqZ','wgUJHItDwVI','2025-03-03 11:46:14','45.114.145.93','1'),(186,'LZCqmoRWJnmObK','kassgriffma@gmail.com','3822767389','lZtFgAkdnIIJp','SpbSqPMHScvtnis','cKPeEdKGBSPwz','2025-03-05 02:11:59','14.175.211.5','1'),(187,'wcgYDqLVaaYdH','keitlinwaresp@gmail.com','7580123151','xiBhOqYhEhO','ZSEhfklxSUEO','nxOKYoqyLuvV','2025-03-06 04:44:02','200.119.141.150','1'),(188,'Rosalyn Foster','rofoster@riversidehealth.org','9149644734','St John\'s Riverside Hospital','','967 North Broadway, Yonkers, NY, USA','2025-03-07 10:51:41','107.181.30.4',NULL),(189,'Matt Thompson','mthompson004@csbsju.edu','3203633487','Saint Johns University','https://www.csbsju.edu/sju-culinary-services/','2850 Abbey Plaza','2025-03-07 11:09:40','152.65.162.105',NULL),(190,'CLeVrUzM','browningleksiyaos4@gmail.com','3500541309','UAPcHXPwDDDguQt','xAnezHbveDg','YWuMjoBGcA','2025-03-08 06:42:48','202.62.55.89','1'),(191,'FFQtitQQlsl','dunnmakiq@gmail.com','8703271685','wRClUrENUt','dEmTDijuaUI','BBaNBtwBanA','2025-03-09 05:00:46','207.248.108.122','1'),(192,'fOCWuDXzzeTiF','karamianfredrikson@yahoo.com','5639716437','TKBAVcrcS','UvGlQchwTa','JBvufwzhPjol','2025-03-10 09:10:34','102.177.102.57','1'),(193,'vfhPgtiah','kmiyaon55@gmail.com','3562403814','iVRTTocNc','pWAGPUQmoAI','HFVDOHgIGH','2025-03-13 12:23:03','109.167.40.142','1'),(194,'qejuJZckI','hollandskilar@gmail.com','6572616626','QhuHjAuYbD','OAjAQiuDdEWZhao','cjDJReTt','2025-03-14 12:54:40','110.235.252.104','1'),(195,'yZqzXonbBCVuBU','hollandskilar@gmail.com','8371763747','DommgIAucz','tNZJGbXXQjv','GDNjCMDw','2025-03-14 08:53:36','188.137.74.9','1'),(196,'xvOjrqQndsLDMe','avilasilviyaha2003@gmail.com','8702541377','kTTuPyrgiLgmi','LSuYjSUOaZyG','JrddPpgdhoMY','2025-03-15 02:40:40','41.193.190.225','1'),(197,'QiDavPogWF','kenhines270089@yahoo.com','5286419661','KlPTUxLFHXpNF','arcIKLwYXUh','woAwWjrDyYSUG','2025-03-16 08:53:50','177.124.64.129','1'),(198,'uLUrBPdu','vasquchelsef1991@gmail.com','4521381882','dckvgEUBkDOhnO','uXvFMpJNSljH','cFJtYbRBNCXroyl','2025-03-17 04:15:15','113.165.166.132','1'),(199,'Craig Mombert','crmombert@davidson.edu','7045644420','Davidson College','Davidson College','209 Ridge Rd, Davidson, NC, USA 28036','2025-03-17 09:24:23','152.42.110.37',NULL),(200,'Chris Vozzo','cvozzo@wlu.edu','5408175500','Washington and Lee University','wlu.edu','204 West Washington Street, Lexington, VA, USA','2025-03-17 10:00:41','137.113.35.4',NULL),(201,'Jami Dare','jami.dare@wartburg.edu','3193528507','Wartburg College','www.wartburg.edu','100 Wartburg Boulevard, Waverly, IA, USA','2025-03-17 12:43:10','170.76.211.252',NULL),(202,'btDzywjM','oldoshann2@gmail.com','5864915637','gwXEUdfLuUmrk','wGvLOCpVEMaBT','qaRepkVosQhzex','2025-03-18 01:50:10','186.159.12.43','1'),(203,'VDnXNMIkjAszTF','lesterdavidmm24@gmail.com','2005210728','SKSExPwkVhvrdbe','unBUDshEWF','JZKbayvIrSdDk','2025-03-19 10:10:15','91.92.124.6','1'),(204,'sRboKqxsoa','birhanienovak271100@yahoo.com','7269229714','dnIHvOQZCVdKmSF','LHHMOVRfxABkHc','ZTbvArPuLNHNf','2025-03-21 03:43:08','36.95.135.241','1'),(205,'Chris Vozzo','cvozzo@wlu.edu','5408175500','Washington and Lee University ','Washington and Lee University ','204 W Washington St, Lexington, VA, USA','2025-03-21 10:20:38','137.113.35.4',NULL),(206,'TOM ELLIOTT','THOMASELLIOTT@TQL.COM','5134619466','TQL','','71 Jewett Drive, Wyoming, OH, USA','2025-03-21 10:20:45','134.238.205.68',NULL),(207,'Jason Hampton','hamptonj@etown.edu','7173611157','Elizabethtown College','','1 Alpha Drive, Elizabethtown, PA, USA','2025-03-21 10:23:35','173.240.237.64',NULL),(208,'WdRBtHtrPh','gibtizpu1995@gmail.com','3368669434','QkRcbEFVPu','UMnwrDkEBMls','btzeBnOr','2025-03-21 08:00:29','109.108.102.110','1'),(209,'Trey McCartt','trey.mccartt@principia.edu','6183745057','Principia College Dining Services','PrincipiaCollege.com','Front Gate Road, Elsah, IL, 62028 USA','2025-03-22 08:09:58','155.106.132.255',NULL),(210,'QQcagxYfjHQQR','kerrhubbards@gmail.com','3697090563','OHrVhvIEvmoeFm','LAYwzEVjbpTcu','YvnkfPHakWls','2025-03-22 11:12:22','116.212.152.131','1'),(211,'pkHAhNkNBCFkvt','gossameruypinnacle91@gmail.com','6505374447','XTDZrdNT','DvLyhTEGJu','jkudDyJVlgRcuO','2025-03-24 11:23:00','139.5.132.159','1'),(212,'YBxfGdbEmWfGb','bduncang41@gmail.com','8506340542','LxraCCSXum','owWfbjJR','ieuxFLUjnp','2025-03-25 11:52:17','160.226.241.184','1'),(213,'uxoCuUICdOrwcz','aleisterbac1986@gmail.com','3495338771','nElNrFgmR','veHogTUpbkeTDqC','OoxCCgvLiGh','2025-03-26 11:47:12','110.44.113.144','1'),(214,'Daniel Roberts','droberts@ha.ucla.edu','4066985881','UCLA','droberts@ha.ucla.edu','425 Westwood Plaza, Los Angeles, CA 90095, USA','2025-03-28 09:00:01','149.142.66.37',NULL),(215,'Matthew A Conley','maconley@salisbury.edu','4104308878','Salisbury University','https://www.salisbury.edu/','122 Broad Creek Rd','2025-03-28 01:02:17','131.118.43.62',NULL),(216,'MNawiOJKpRAx','turner_megan919479@yahoo.com','8635266399','VNJPAddu','SjAzhpHGKgqGEQ','UVUvmMMkjFVGuTE','2025-03-28 09:46:38','202.62.37.181','1'),(217,'dFTATxynC','ibarrashavonnk@gmail.com','2838012603','AxyFhgsG','ELrIPSQjF','XVxGYHFYGAiBQo','2025-03-29 06:55:29','186.101.148.189','1'),(218,'WZtRwGBxgcKQB','plesantsantiagoux46@gmail.com','2329378589','ErtuXdJK','uxVWLhDntWB','EOIAFNMY','2025-04-01 08:51:17','195.36.21.215','1'),(219,'fmKNZodupVrWXR','bradleybeverliti25@gmail.com','7749797414','bCxXNGpZT','hrxMthBNKg','yGOigxVJuGwNej','2025-04-01 09:55:58','124.41.225.123','1'),(220,'Thomas Gilbert','Thomas.gilbert@compass-usa.com','6313876454','Chartwells','Chartwells','319 West 57th Street, Hinsdale, IL, USA','2025-04-03 11:16:31','165.225.57.3',NULL),(221,'Thomas Gilbert','Thomas.gilbert@compass-usa.com','6313876454','Chartwells','Chartwells','319 West 57th Street, Hinsdale, IL, USA','2025-04-03 11:16:33','165.225.57.3',NULL),(222,'KtUDsfeY','kiddmoss6@gmail.com','7827062406','vjITCBFIPmE','ItMxpvnftFah','rYIndKltULeLtkh','2025-04-04 01:57:20','123.200.11.178','1'),(223,'Brad Gillispie','bradley.gillispie@villanova.edu','9084473111','Villanova University Catering at the Connelly Center','','800 Lancaster Avenue, Villanova, PA, USA','2025-04-04 10:05:24','153.104.138.157',NULL),(224,'Visuanaden Chengalaram','veerenchengalaram@gmail.com','4804345324','BYU','byu.edu','909 S 825 W, Springville, UT 84663, USA','2025-04-04 10:06:21','128.187.112.29',NULL),(225,'amcOtjISQWMmaLg','rreksjn31@gmail.com','3381309984','vBLiBXwA','JnvcgrRtLDXwxVV','dbmvttPveAF','2025-04-04 05:52:01','41.72.216.238','1'),(226,'nzzqgzDbFNHFb','schwartz.james217707@yahoo.com','3289289330','coqsfZWqLm','FceVecepk','WrTUkbJwQMZHGu','2025-04-04 09:14:08','105.22.38.38','1'),(227,'DXNXLwxAbMWYeCt','lonnifergusonlk@gmail.com','7368834271','ckBhwFPqr','prgcGEqrwKC','wLWUYhMKrqcfmtF','2025-04-04 11:41:37','103.216.233.74','1'),(228,'EkSzqTzMlKXWeN','hajami_michael116154@yahoo.com','7445799129','yXACOtGeEzxKIJN','gMjjZoJf','BjiOkRKX','2025-04-05 03:28:35','223.25.101.10','1'),(229,'EHaqNiRdp','mercadokasperz52@gmail.com','8943245562','mouaoAtjfZAEoT','yvIpPfCakOgC','kRPHGkXdYq','2025-04-08 02:23:17','195.135.230.210','1'),(230,'donXeuqrnUIMYUY','lyketbartlettqs4@gmail.com','4490723672','sPXOLnuZ','acEUPVYQ','gSVrmfFfhnqOKAY','2025-04-10 04:57:09','168.253.0.118','1'),(231,'Clayton Madison Cappellanti','cmc0026@mail.wvu.edu','3042937738','West Virginia University','https://diningservices.wvu.edu/home','1550 University Avenue, Morgantown, WV, USA','2025-04-11 09:47:28','157.182.129.126',NULL),(232,'FVncuMcZ','matildaroya33@gmail.com','5992254271','ondOQAeLCIb','ywsKvRNM','OYrlyZcy','2025-04-11 10:15:59','109.108.120.50','1'),(233,'RhGuCrAsIteM','tony_orleanz565445@yahoo.com','8572768444','EugYXkMCKdkS','bEigbnricyAWh','qEzGfZxmi','2025-04-12 01:10:29','60.248.253.215','1'),(234,'odvfTvPw','deliyaknoxe55@gmail.com','3742275775','nZMmfDqa','ogmfyePPkyNIB','PczifXGV','2025-04-12 02:54:52','120.89.111.25','1'),(235,'paFJynJaFan','dodihuynh@gmail.com','4226707563','qAkOKWRUCVIr','DGOFusAl','NlxtaezPe','2025-04-15 02:24:32','110.235.250.45','1'),(236,'Meghan Reed','mreed3@northwell.edu','2124343116','Northwell Health','Northwell Health','100 East 77th Street, New York, NY, USA, kitchen','2025-04-15 10:53:58','69.27.229.138',NULL),(237,'Angie Windhorst','awindhorst@bettercarenutrition.com','8473371118','BetterCare Nutrition Network','www.bettercarenutrition.com','1210 West Haven Drive, Arlington Heights, IL, USA','2025-04-15 11:01:43','50.171.33.38',NULL),(238,'Sarah Luzinski','sarah.luzinski@childrenscolorado.org','9709806323','Children\'s Hospital Colorado','','5305 El Camino Drive, Colorado Springs, CO, USA','2025-04-15 11:09:19','66.128.217.190',NULL),(239,'Heather Ann Leonard','hleonard@nationalrenalcare.com','8189936700','Northridge dialysis center ','','9325 Reseda Boulevard, Northridge, CA, USA 91324','2025-04-15 11:57:29','172.56.186.85',NULL),(240,'Malia Chamness','maliasayhey@gmail.com','7039732167','Vanderbilt','','1113 Riverwood Drive, Nashville, TN, USA','2025-04-15 01:05:45','160.129.250.181',NULL),(241,'michelle moylan','mmoylan@holyredeemer.com','2159383395','holy redeemer hospital','','1648 HUNTINGDON PIKE Meadowbrook Pa 19046','2025-04-15 01:27:02','8.225.193.20',NULL),(242,'Holly H. Garner','hgarner@tanner.org','7708128304','Tanner Health','www.tanner.org','165 Clinic Avenue, Carrollton, GA, USA','2025-04-15 01:44:25','192.82.144.227',NULL),(243,'Rachelle pass','rpass@brightonhospice.com','6123903498','Brighton','','1207 Washington Street Northeast, Minneapolis, MN, USA','2025-04-15 05:04:44','97.116.32.114',NULL),(244,'CuHQCmhD','aleacnatba1970@yahoo.com','6008560742','aKeJwKAduTFHJU','BWXvOvqvXAQHuc','dKEtHJpKdBR','2025-04-15 05:52:30','45.170.129.218','1'),(245,'AAcNohmCuJCn','borconckejo1974@yahoo.com','6886415791','SdprCMBnZzV','HAjNaVhsVdsPUwR','VgiekqfgUSej','2025-04-16 04:38:31','123.16.32.127','1'),(246,'GtiiAQloXR','simsmolkomv51@gmail.com','3506888511','DNHUzqIBVJCxSXD','AhVYUObUneESIb','zMDchxnYHSrcg','2025-04-16 04:50:41','123.16.32.127','1'),(247,'AtygFWWrfkxkA','bblakevo1992@gmail.com','9399821621','SFYspPHlV','bTvYfWWCUUzKJd','uzPifKNKcQLB','2025-04-17 01:04:27','181.205.82.154','1'),(248,'JblFZZPHcPHTPWd','countbustrapas1985@yahoo.com','5381738370','GUYjcFoPPloL','ohncyOjAJF','veVSOqJf','2025-04-17 05:51:46','185.26.35.156','1'),(249,'kalina gardiner','kalinga.gar@gmail.com','8052351439','bishop care center','https://bishopcarecenter.com/','197 Edwards St, Bishop, CA, USA','2025-04-17 11:01:50','209.33.44.249',NULL),(250,'kalina gardiner','kalinga.gar@gmail.com','8052351439','bishop care center','https://bishopcarecenter.com/','197 Edwards St, Bishop, CA, USA','2025-04-17 11:01:56','209.33.44.249',NULL),(251,'Megan Rose Bowyer','meganbowyer24@gmail.com','3039577494','No','https://www.healthonecares.com/locations/presbyterian-st-lukes/specialties/transplant-services/kidney-transplant','1719 E 19th Ave, Denver, 80218, CO','2025-04-17 11:54:15','165.214.37.102',NULL),(252,'Megan Rose Bowyer','meganbowyer24@gmail.com','3039577494','No','https://www.healthonecares.com/locations/presbyterian-st-lukes/specialties/transplant-services/kidney-transplant','1719 E 19th Ave, Denver, 80218, CO','2025-04-17 11:54:16','165.214.37.102',NULL),(253,'gleVrtqRrOCQmo','klovermitchellhn2@gmail.com','4466018191','uTOOEwVxJvfJJN','VOtRazqCrSZMH','YIngsTsjEL','2025-04-17 12:28:46','113.161.19.10','1'),(254,'Stephanie K Kitzerow','Skitzerow@ignitemedicalresorts.com','8156683223','Ignite medical Resorts','Ignitemedicalresorts.com','550 Ridgeview Dr, McHenry, IL 60050 ','2025-04-17 02:26:30','50.171.165.250',NULL),(255,'YsMCNXGwmKpLM','charlayrale97@gmail.com','9953531104','pVBRxxfjE','cAULrSVkC','dohvwnorMT','2025-04-18 10:29:55','111.253.128.182',NULL),(256,'John Green','johngreenksu@ksu.edu','7856917699','Kansas State University','https://housing.k-state.edu/','1531 Mid Campus Drive North, Manhattan, KS, USA','2025-04-18 11:01:23','129.130.18.236',NULL),(257,'Olga Jameson','olga.jameson@integrishealth.org','4059518466','NZTI Integris Health','https://integrishealth.org/locations/transplant/nazih-zuhdi-transplant-institute','NZTI 3300 Northwest Expy, Oklahoma City, OK 73112','2025-04-18 11:18:46','72.3.239.128',NULL),(258,'Joe','joseph.johnson344@yahoo.com','9202072401','Lakeland University','Lakeland University','W3718 South Dr','2025-04-18 12:07:53','71.90.54.199',NULL),(259,'Anne Snyder','anne.snyder@sfhs.org','5066507992','Three Links Care Center','Three Links Care Center','815 Forest Ave','2025-04-18 12:26:48','206.53.193.138',NULL),(260,'James Scanlan','james.scanlan@nm.org','8473452497','Morrison Healthcare ','MorrisonHealthcare.com','300 South Randall Road, Geneva, IL, USA','2025-04-18 02:00:12','73.22.141.209',NULL),(261,'Austina Smith','asmith@grandliving.com','3199303000','Grand Living @ Bridgewater','www.grandliving.com','3 Russell Slade Boulevard, Coralville, IA, USA','2025-04-18 06:10:57','63.146.207.211',NULL),(262,'GdERNbSopzfdP','owenadollf44@gmail.com','8940213371','rtQfDvnKygh','zaDKYxRrF','uJEiWNHPvBKcEUD','2025-04-19 05:32:16','89.111.200.71','1'),(263,'oHxFvDjmyQ','colonrielz@gmail.com','2473356117','eGcwEUqNZABeNS','zIJwUaUUn','UPStabnfbSuzUGG','2025-04-20 02:49:12','43.251.85.85','1'),(264,'Juanita Barr','jbarr@tanner.com','4703153301','Tanner Medical Center','','2115 Maple Street, Carrollton, GA, USA','2025-04-20 02:36:51','192.82.144.227',NULL),(265,'dLCBYBOqgrdVe','septemberwalshuw@gmail.com','4636837901','bngYMTRaFbFDX','YCNuuhKEOfUfqC','grZJktCsOxmS','2025-04-20 04:22:03','103.111.227.40','1'),(266,'jeff woolley','jeff.woolley@usu.edu','4357971794','Utah State University catering','dining.usu.edu','Old Main Hill 0190, 650 north 800 east Logan Utah 84321','2025-04-21 11:30:31','129.123.88.29',NULL),(267,'BmmrrULQ','hkillianf53@gmail.com','4234665496','aaBRAokLY','QOocnqzxBtF','YsInQkdiabXXHP','2025-04-21 07:33:24','181.199.253.38','1'),(268,'Terry Wells','twells@jchc.org','6414511217','Jefferson County Health Center','JCHC.org','2000 South Main Street, Fairfield, IA, USA','2025-04-23 07:09:38','205.221.121.131',NULL),(269,'INTEGRIS Health','benjamin.robinett@integrishealth.org','4058160417','INTEGRIS Health','INTEGRIS Health','3435 NW 56th Street','2025-04-23 10:40:14','204.107.242.20',NULL),(270,'Aleyna Besmer','aleyna.besmer@inspirehealth.org','5593040418','605288197','https://www.inspirehealth.org/medical-practice-locations/inspire-health-medical-group-endocrinology/','7085 North Chestnut Avenue suite 101, Fresno, CA, USA','2025-04-23 12:37:14','206.169.86.190',NULL),(271,'Jordan Reinken','jordan.reinken@utsouthwestern.edu','2143541268','UT Southwestern','','3921 Dome Drive, Addison, TX, USA','2025-04-23 02:48:06','104.28.50.132',NULL),(272,'lOSTXmrhKJtbiw','kassboothio1994@gmail.com','8901992488','eMuhtswoiZEwBux','MomPlhfWeqA','xbafjOGX','2025-04-23 06:01:21','177.200.66.97','1'),(273,'Suzette May','sulmay@iu.edu','7653495116','Indiana University- BRADFORD WOODS','Bradfordwoods@iu.edu','5040 S Rd 67, Martinsville, IN, USA','2025-04-24 09:23:39','149.166.9.56',NULL),(274,'RnsctdoeNxyR','pettyflorenciya2000@gmail.com','7193579653','GJTygJibzoWGCwR','KjnSnSjbY','HDyYAGXcbqfsz','2025-04-26 09:03:51','102.164.17.53','1'),(275,'uNHrdbLdCHnfEFW','rollandsq2002@gmail.com','3249891916','tZyEjqbI','IiTqXnnBiZ','AFzIPGALkSg','2025-04-27 03:23:33','170.247.41.186','1'),(276,'Michelle Butler','michelledinges22@gmail.com','7202191511','Children\'s Hospital','','7605 Bordeaux Drive, Colorado Springs, CO, USA','2025-04-28 11:49:42','66.128.217.195',NULL),(277,'faZbbqhR','shevonbsv18@gmail.com','4577282115','pzJRdlAd','FgIozPGPS','gmfCZHtq','2025-04-29 04:40:15','114.134.88.110','1'),(278,'Kara Sommerfeld','kara.sommerfeld@childrensmn.org','6514971428','Children\'s MN','','4374 Fisher Lane, White Bear Lake, MN, USA','2025-04-29 10:23:55','162.208.76.14',NULL),(279,'Olga','Olga.Jameson@integrishealth.org','4059518466','NZTI Integris Health ','','Olga Jameson NZTI','2025-04-29 10:48:08','72.3.239.128',NULL),(280,'Nilofer Couture','nilofer.couture@cherokeehospital.org','8284979163','Cherokee Hospital','https://cherokeehospital.org/','PO Box 1718, Cullowhee, NC 28723','2025-04-29 10:51:21','208.68.127.98',NULL),(281,'iJNrDEwgQwkFf','elisiyak4@gmail.com','6799512073','oFeOuSPDOTAISUx','JAPtXWYtM','gudwNwAbaqXSqi','2025-04-29 09:01:37','94.74.132.168','1'),(282,'tTEyFYteZDAXwA','revaasancvy@gmail.com','4636951400','XclBKMQo','HYGVJIAScPqkUuY','EHWbwQrMYDybom','2025-04-30 09:16:52','87.120.119.231','1'),(283,'fmtfwwJxyjarNz','dennboydlb9@gmail.com','3320060922','RwnnppzcnYjnF','VcfemfBTXzchUTo','qFOgXGKcD','2025-05-01 12:54:42','103.87.169.40','1'),(284,'Svetlana Gavrilova','sgavrilova@hotmail.com','31899537052','Ochsner Health ','https://www.ochsnerlsuhs.org/locations/monroe-medical-center','4864 Jackson Street, Monroe, LA, USA','2025-05-01 03:16:26','147.206.2.23',NULL),(285,'andy patel','vpateldh@amazon.com','4256429397','amazon','','2205 Route 27, Edison, NJ, USA','2025-05-02 11:49:15','72.21.196.65',NULL),(286,'EcxcXYXpxbQFAX','koltenmccannr39@gmail.com','6154601792','UHyugVwP','BaFVzGhdPzLnAY','pAPLQnMOoD','2025-05-03 06:46:16','38.130.38.72','1'),(287,'xMFTcMxtdBfUL','nevaehrosariot@gmail.com','6297849398','KHaVqNkYYKmZJB','ljdLHlrtb','LnDKLydahK','2025-05-03 11:02:51','102.222.133.190','1'),(288,'aGkXhZcxUeSVYh','raymonarli15@gmail.com','8636235682','iJVAkNJJqW','CVnclYvyQH','IMWzJMFXEOxCe','2025-05-05 12:16:58','187.60.67.138','1'),(289,'UIqwwdNjIIyHWV','kyrtleach16@gmail.com','5362516985','epoiKiufwuwp','zBsEMGBmlOAXTK','UnetzZFeSBMpxr','2025-05-05 02:31:37','149.54.34.98','1'),(290,'crVLPMEqK','exuamcorkapt1985@yahoo.com','6861228426','VlTJICni','iIfWjCjcBpwFts','CQOFvXZo','2025-05-05 07:00:47','186.179.100.204','1'),(291,'MPDlWHnOmY','rdeleonq10@gmail.com','4919213536','pkRWROHXEp','SUMSsTnFvef','hvJkfyiayDhZ','2025-05-05 08:18:54','186.179.100.99','1'),(292,'eRXaCriREUC','redmanddenniszt1989@gmail.com','4556039209','CFlqWWbqojsSmzq','gpMTCGiKMYHLSpK','BmzhGwEtuOlel','2025-05-06 01:39:41','77.242.25.25','1'),(293,'Tiffany Gamble','serena.beltramo@wsu.edu','7753047574','Washington state university','','44 Harbor Pines Court, Las Vegas, NV, USA','2025-05-06 10:42:29','69.166.44.19','1'),(294,'CnWqBlDsHlLV','hedleiglassik@gmail.com','2698577575','AGCtizMKKPnDq','JFEZqHpYN','VTlMETksVGIkb','2025-05-06 03:11:30','203.95.198.88','1'),(295,'Wendy Bardell','wendykbardell@gmail.com','9702317561','Healthmapsolutions','healthmapsolutions.com','3005 Warson Drive, Fort Collins, CO 80521, USA','2025-05-08 08:18:09','54.176.183.164','1'),(296,'ZjXFJGxWL','rodgerbrendk45@gmail.com','4990072415','lcsULYybCSeOWMn','HBCjSpFkW','GGzhXXrtqFs','2025-05-08 11:35:47','213.108.152.211','1'),(297,'fJJBfQrzF','storeytodd346376@yahoo.com','7551062444','lBIRajhtme','PbiGdEzJZwKK','UEbpwSnzZM','2025-05-09 08:50:27','138.219.106.38','1'),(298,'yapFpUArb','pompeirowlu@gmail.com','7577639823','VbhLkaZyFImNQwR','XyTXDWXE','tMpQCyYmAl','2025-05-09 03:08:11','177.38.184.79','1'),(299,'DKiwpoUomZd','staffordaldinacv33@gmail.com','7635746701','rVUpqVPUyjbsZM','WSUcYjlpK','reoAIsBvx','2025-05-10 12:15:04','5.190.227.11','1'),(300,'OKAwGBvIoLHy','andersonashlee1980@yahoo.com','7663985642','hLLRZRZTBQoY','DdBQFVuwI','LleqTGvGWhOuI','2025-05-11 12:37:47','185.136.193.36','1'),(301,'MHICRZDLq','rstafforde20@gmail.com','8496889289','nACbAWGHTN','rSKYngofFyEl','zgLfdyQei','2025-05-11 03:03:23','110.74.197.174','1'),(302,'YCCpCtjacm','martibonniad7@gmail.com','4025491445','NgYLbLgVUNs','xuiTyhvh','NiyRjuUIWlyO','2025-05-11 05:34:20','202.21.100.94','1'),(303,'KJYxBrElMk','richardsgydzony19@gmail.com','2233596596','QUBSzqMtfiaR','GoFLRtNtDFNnwgl','lfWjjIjpmvMTZ','2025-05-11 11:58:36','103.94.250.18','1'),(304,'REuOFagEKOAy','coxhreo@gmail.com','5479835233','pMUaZhLC','YKhiywyIhKZYd','yxjiJVCa','2025-05-12 02:55:31','105.27.202.234','1'),(305,'hsaOBJNDStNlkV','woodmelissa69311@yahoo.com','5317578685','AunuzMHeGjqEqH','jtKEZsAtqyIB','DiXTcbBiUO','2025-05-12 10:13:44','110.235.255.18','1'),(306,'Puneet Singh Chauhan','niitpuneetkumar@gmail.com','8318405807','quicklly INC','https://justbyquicklly.com','Kanpur, Uttar Pradesh, India','2025-05-13 09:52:14','103.139.56.102',NULL),(307,'vCWcmywSky','chellrd27@gmail.com','9527052741','HsUfwLYiEBIB','dGbUAMTesZ','NFtCvUPrMPdwIF','2025-05-14 05:13:17','94.20.183.239','1'),(308,'Puneet','niitpuneetkumar@gmail.com','8318405807','quicklly internal testing','https://quicklly.com','West Chicago Avenue, Chicago, IL 60610, USA','2025-05-14 08:01:36','103.139.56.102',NULL),(309,'Puneet Singh','niitpuneetkumar@gmail.com','8318405807','quicklly ','','West Chicago Avenue, Chicago, IL 60610, USA','2025-05-14 01:03:04','103.139.56.102',NULL),(310,'Tester Muzamil','muzamilmuzi1996@gmail.com','12793434343','testing organization','https://test.com','1140 Utica Avenue, Brooklyn, NY, USA','2025-05-15 01:42:13','103.156.152.141',NULL),(311,'Cory Taylor ','taylor15@yahoo.com','9172236734','Taylor\'s kids ','','15 Riviera Parkway, Lindenhurst, NY, USA','2025-05-15 04:26:27','72.69.153.115',NULL),(312,'Keval Raj','keval@quicklly.com','7737083342','quickllycom','https://www.quicklly.com/','1400 North Lake Shore Drive, Chicago, IL, USA','2025-05-21 02:04:07','12.216.156.92',NULL),(313,'Puneet Singh','puneet@quicklly.com','8318405807','quicklly INC','quicklly.com','West Chicago Avenue, Chicago, IL 60610, USA','2025-05-22 02:25:50','49.43.113.165',NULL),(314,'tEQZffLelaiS','kennethguerron479111@yahoo.com','8967301227','IHivTsXLLK','fVPhkPczZN','DuIjwcdhht','2025-05-22 04:22:44','78.142.38.108','1'),(315,'kJCPsDGLBYMwsW','mirandamorrisons1986@gmail.com','4696008990','izWvzTtHlm','Zgkrkqpt','ULBcqkjrO','2025-05-22 11:14:14','178.173.173.82','1'),(316,'qUVDWtTk','dsparksm1997@gmail.com','4166661199','WpmwXkhwu','sZMrUXSbYFcRqe','PmVFpEMqTHzH','2025-05-23 03:16:34','103.44.1.198','1'),(317,'rcdBbWaQAayut','josephnimbysp1999@gmail.com','9402748977','GpWTdfwnbMlgQY','NudcCmiYL','QcVdQZybFs','2025-05-24 12:46:58','190.60.60.10','1'),(318,'xyWYraYg','santosbrandon749754@yahoo.com','4184298546','sCDLCmYAA','mUrmqjPsoP','SwFJPnwLv','2025-05-24 05:51:31','102.0.0.56','1'),(319,'oWzLsaRMX','fritzchefn81@gmail.com','3717642231','EISSRZowlWY','NgxpPMyl','viuMqZLqG','2025-05-24 10:12:04','119.15.82.70','1'),(320,'CAkCVLIQliTBK','robersonmoris7@gmail.com','8597470446','JyAFUjSO','WQACWskzFy','DbyazARSjPcXLN','2025-05-24 10:11:05','212.244.120.121','1'),(321,'nTNrNGTZThX','velmabnd1986@gmail.com','9482635802','iFDSfoSfXegoH','dWiLgVRAKqBWPFS','PXgHEsYZUww','2025-05-25 05:50:59','177.10.197.40','1'),(322,'jKRdVDKZ','lessiguzmanfr@gmail.com','6138912038','ZBxpdanaLDrqW','pxAwnRuG','xtcWiSPpvJjjLXm','2025-05-26 07:04:06','188.137.73.87','1'),(323,'Rachelle pass','rpass@brightonhospice.com','6123903498','Brighton','','1207 Washington Street Northeast, Minneapolis, MN, USA','2025-05-26 09:52:25','97.116.32.114','1'),(324,'TANRCpVDpYGqNK','scotttracy329769@yahoo.com','4767855125','aadddbAynn','zyRtEIrpBxoW','geSfbBdNabbVbHd','2025-05-27 08:53:51','113.160.184.207','1'),(325,'KYreVcVlGBYNnuY','lbradleyyh97@gmail.com','2953083050','QMiGVsyHMHft','vOhgYMNll','gvSsZQhvcWjh','2025-05-28 05:56:20','178.72.192.75','1'),(326,'ocwjraBihOiRzcw','sandovalkristiqw26@gmail.com','6661205197','KvKYbEMkyENlmu','PbbxejpQhkrBRS','EgcRbxiuPtVMyIV','2025-05-28 07:45:26','138.219.108.111','1'),(327,'VuDYVxUm','mullenadellke7@gmail.com','6210658464','WoVJrKvpeGd','ZswgEIekQv','xCrhvYyqLPF','2025-05-28 10:38:06','84.22.63.129','1'),(328,'rnouvauIAUOjzj','sloanedvenar3@gmail.com','4365102690','PcJxrRWhNtKzj','OHQdtYua','PkSHhqHptvHzXKZ','2025-05-29 12:47:10','114.7.243.26','1'),(329,'MEHAyEJIV','farrelbasin@gmail.com','9687382653','KNJMMcXPjRqOTY','rvkzgJSkhBXFPe','zrDYfDVHjpH','2025-05-29 04:23:03','45.236.12.146','1'),(330,'xxjiFMOTbF','hklodet6@gmail.com','3208360155','xZOfzHCAXGhU','jzuIUpBX','ZcGSkGDALuli','2025-05-29 06:22:54','177.101.218.46','1'),(331,'GRkSudjm','michaelfrye1999@yahoo.com','4597309579','UkWXniQsuUebLBo','gwzvaXIyDWdc','gahGwzdpfTsI','2025-05-30 07:20:31','177.207.235.222','1'),(332,'zUAdMtDzuHYar','tmeyerpq1988@gmail.com','3043921457','zjbWhUXk','RSHrwJpyk','IdXuNosR','2025-05-30 07:44:08','45.235.167.225','1'),(333,'ZeWvRCqLfcX','vabott35@gmail.com','9471964617','ODrnACJxbCTP','IfMWyMIpT','rExCmksj','2025-05-31 05:48:56','159.255.163.76','1'),(334,'pDHUicNq','rmadkenhy1@gmail.com','3676576326','LPfueqmLhAp','qfZECBRxQswVWpn','iWDOHSsNkzhujh','2025-05-31 09:09:30','189.89.186.58','1'),(335,'Puneet Singh','puneet@quicklly.com','8318405807','quicklly inc','www.quicklly.com','West Chicago Avenue, Chicago, IL 60610, USA','2025-06-02 06:49:48','103.139.56.42',NULL),(336,'hzsGaUlqw','hovivianmd54@gmail.com','8305706064','gVGPyOHnpwmJmUR','YblGQFCMmROi','JdmhonTdm','2025-06-03 10:10:18','110.34.1.165','1'),(337,'ObJBTUxNGO','johnsonkathy145520@yahoo.com','6567856633','RpDwKxBdtWB','vlOtscrGzLfNrd','rFQHIdtL','2025-06-04 09:28:52','187.95.13.167','1'),(338,'OAryKzXVQWFrvB','hoynordaltong96@gmail.com','5189531814','fKBBXJCPCx','ayPdUmHpLsdzt','dJScRKxwlOmirLs','2025-06-05 09:19:11','189.45.198.42','1'),(339,'Courtney Fuller','courtney.fuller@cmc-sc.com','8433478241','Conway Medical Center','','1272 Brighton Avenue, Myrtle Beach, SC, USA','2025-06-06 10:33:54','66.153.253.2',NULL),(340,'Debra Gross','dgross@sjgh.org','2096793117','San Joaquin Hospital Dialysis Unit','San Joaquin Hospital','7783 S Freedom Road, French Camp, CA, USA','2025-06-06 11:22:10','64.172.142.33',NULL),(341,'JsATDTzStfTewkj','paynedjefferig9@gmail.com','3503615340','snsOETgROLWLR','VowOaKVHdTFfFTa','HYkfgufYlPncl','2025-06-06 02:02:06','197.254.51.126','1'),(342,'Terri Mann-Lamb','tmannlam@niu.edu','8157531000','Northern Illinois University ','NIU.edu','Neptune Central Hall, Lucinda Avenue, DeKalb, IL, USA','2025-06-06 02:30:19','104.28.103.102','1'),(343,'QDbKhMAOHfPM','teityatsb@gmail.com','7439729752','oOjIFOUhdN','HhorNzHe','xdLuNsOtdskAV','2025-06-07 03:13:39','110.235.249.65','1'),(344,'YQAfXdbPjoYet','dsummersl2000@gmail.com','7624360372','yNrbjQEmV','OetKzckNJSPX','WSXTAeuGKvOb','2025-06-08 05:17:16','178.134.109.190','1'),(345,'ZikvtpuUAtjZQP','bertonnixonhw1992@gmail.com','6370195912','BmaGOEsJalwGvGb','VFErvfTJuXGCMr','zqqpGGiSXZsKEvu','2025-06-08 06:25:52','45.6.111.13','1'),(346,'OvmEbgGC','shannchonshe@gmail.com','7075440415','BtgzSXidNNrN','HCSFcUcG','oxqIzCRJRg','2025-06-08 06:35:38','216.59.81.211','1'),(347,'LWnvYLddjYqjo','rshannonbq1989@gmail.com','3654642854','bgAHeXkPQxwVKAd','XNmQCVdelhJ','CltgxOwdNhAhiBs','2025-06-09 12:34:39','151.232.57.9','1'),(348,'xTaeGnUrDYL','barrettabbeiqh1997@gmail.com','2794683192','fjbulPUp','HOXBcHoiLCrEIOl','drVNHlNZ','2025-06-09 01:44:03','178.134.222.250','1'),(349,'MULyqJPsmrbfR','sdaltonhd@gmail.com','2432337070','GaXVcUJyHxhGxN','jwtaLHWWBYmgZSi','BfklfCsC','2025-06-09 06:33:09','102.164.30.68','1'),(350,'erJAsIkrmHduwlI','brandonazlan338664@yahoo.com','9608030411','UJITTESzI','ADYnWPqjWU','EyDPlMtCbimuhdX','2025-06-09 11:26:40','182.93.83.68','1'),(351,'ntOVcgWGIEH','obrookscq4@gmail.com','7946421918','JMhkYSCynYUXA','PfiIwEDcYHBYL','MLJHRhRqCApUp','2025-06-11 06:34:38','194.116.118.96','1'),(352,'LBIDkUri','kiliangreen2005@gmail.com','2724744720','iYCuyKXzzX','wviryNnrF','chECyVmABzL','2025-06-11 07:53:06','196.3.99.163','1'),(353,'HzshpWNMAbiY','kandisrs2000@gmail.com','6573565861','wGTBRGyHyqqMZOX','sHpDpKMIlJIUVB','bisbzzjfsNHgB','2025-06-12 08:07:01','188.255.252.244','1'),(354,'SqVwrLeJT','coppedgeella438638@yahoo.com','9685964754','UVvTPUHCtzOQI','RuypwLsIIyec','dhwCaXfJpfWalxz','2025-06-12 12:51:50','89.187.220.30','1'),(355,'bYwUSRjGH','yarvydw@gmail.com','7334742209','ALQnCVjbc','DIwSMksQoBlmUqV','GLsjYsWou','2025-06-12 11:45:10','78.39.83.86','1'),(356,'ufDuGIjKWr','wellsksaj2004@gmail.com','6385605814','koPrVfGresUbQ','uVYZIXPYqfkDYAU','auxSWLzTiSNvG','2025-06-13 04:04:29','77.220.5.10','1'),(357,'USFWXqJTWnQBvl','zavafreb41@gmail.com','9481395191','IKgmwDWvDAQm','ZPgURHnOCNxO','fmdUoQFS','2025-06-13 11:38:34','117.244.248.186','1'),(358,'oqfqJMRWAXZ','rhoregann5@gmail.com','7869896163','vHAIiiOetW','WIlRirrzVg','VJlkKtPKlCeOISx','2025-06-14 12:50:22','64.139.79.35','1'),(359,'vmCHmaap','kerensfrare2@gmail.com','4125177302','eVanwMdmovrVU','UPswNDFhNo','FZaXFVuRpkvCeZS','2025-06-14 09:35:04','176.108.47.175','1'),(360,'QyoZzuMsL','lgayc1988@gmail.com','3982453861','YEduFUjx','SVwQHmfSQmKRbk','MwUsRxCNQ','2025-06-16 08:28:41','102.221.237.86','1'),(361,'vWaqgKHKQys','macdondjervur4@gmail.com','5646695911','ZKAdOvHcHVgpbg','UTtoftTosG','bYMaxHlcyuJkh','2025-06-16 08:39:35','122.102.27.104','1'),(362,'AVsdKlrcMg','fordkingj80@gmail.com','5689655307','hBXjfsXwja','ZwbyeRCMzOkFeD','LsoZRYxIZaZNXS','2025-06-16 12:47:26','175.211.60.41','1'),(363,'ozywlEYacRFOw','mramirezqs32@gmail.com','3449330631','IcRWbStwowU','BfdeZQiJ','qfYFgknp','2025-06-16 10:56:20','103.120.135.132','1'),(364,'PLWVVOaGK','whitneysmith60458@yahoo.com','4864839510','quBxwJZifHCMRad','aglHnpIsJdxH','hxgXnhVLmuisup','2025-06-18 09:58:31','124.122.140.13','1'),(365,'Aleyna Besmer','aleyna.besmer@inspirehealth.org','5593040418','Inspire Health Endocrinology Clinic','https://www.inspirehealth.org/medical-practice-locations/inspire-health-medical-group-endocrinology/','7085 North Chestnut Avenue suite 101, Fresno, CA, USA','2025-06-18 12:44:02','206.169.86.190',NULL),(366,'jUQKusPqfpkCtXt','evelasquezyc89@gmail.com','4264243141','BSleYvGhYoxrI','ztaOqOkIlcsoUoE','rbVUUJrjA','2025-06-18 05:56:03','102.164.23.122','1'),(367,'WLvxegUEM','vinnstanb3@gmail.com','6323901661','CkrtQXEugMRHIMX','nxiivpXN','isllnlBFei','2025-06-19 04:06:02','41.84.141.210','1'),(368,'bYXCXuKCsaerJL','huangkenit33@gmail.com','6270624640','NmXmVfzFLVXMQj','NUlmXRNbxpqiP','jZcEjFGzFRKedOs','2025-06-19 07:54:08','177.44.233.88','1'),(369,'MRkyjcHUIqFybeI','kllaspencern32@gmail.com','4673383334','jcKEoBfOlnRDtkO','UGzkMFayFaRn','NzOTiSicsseMhU','2025-06-21 07:14:36','168.205.229.62','1'),(370,'Sateesh yal','sateeshy@gmail.com','2602676643','Sonicsoft Inc ','Sonicsoftusa.com','3453 Harold Cir, Hoffman Estates, IL 60192, USA','2025-06-22 09:20:14','73.168.17.213',NULL),(371,'amQgcJrJ','vikiisk29@gmail.com','5831974539','vQJfxRNeId','GgPYzkBzdGNDn','xvjQomZByF','2025-06-23 02:27:26','110.34.1.71','1'),(372,'fshrUrTKHqgzY','draiksharpao@gmail.com','3830717017','YMtdkojAuMHh','tAzNaxXH','MQVYNSwcUJ','2025-06-23 05:57:57','103.106.76.138','1'),(373,'QhddqWHoODPD','hildjepb55@gmail.com','3409637036','XaZbAcZAXVmM','VvOOXTzN','UjyPBHSwEkAaH','2025-06-23 08:26:23','203.176.133.166','1'),(374,'MMueTGbPJhvSNIP','oedansx20@gmail.com','6905410418','FeGwfxSyeaZnUXi','UPGWWJNBkAWWc','rfbYLIyCgkPxK','2025-06-23 06:05:54','203.144.77.174','1'),(375,'RLxuTCfyYtSlv','zgordonzt@gmail.com','4345710241','PSzJCkvJmwqvtMv','dkhvmwjjjTyEJjw','tfuLqgQXV','2025-06-23 06:41:22','170.245.30.240','1'),(376,'axebAvEwJMpx','pitdjor37@gmail.com','6622186398','VbIfIxzDdWm','dlUbRdNGGl','lTsUAKnVhztyoO','2025-06-24 06:32:39','41.207.250.102','1'),(377,'AVZpZGxiYMQIaMr','flowenevilt5@gmail.com','2117311708','QCJaFbPbbXR','aGoueAhXWg','CsjSmRzKVpqCMrd','2025-06-25 04:15:43','118.91.171.186','1'),(378,'njVGoBimaBjA','wozemusaq435@gmail.com','9487396567','XLGQfpzvFpjvLb','hDIMVdWFPS','WQaKEAVgTnvCa','2025-06-26 02:03:59','41.76.22.64','1'),(379,'DJwFSZUROTKPM','roseaelrikim@gmail.com','5092388616','gTSzxkecbesE','LQUmraxglqXAEpR','McYmfAvAruzF','2025-06-27 06:10:43','59.92.70.187','1'),(380,'LYRsmLtIQwyHGK','djaspagen2000@gmail.com','7250622688','vcOdihEpE','cgCtWSAHAC','SfncKXafbg','2025-06-27 07:13:59','195.36.23.202','1'),(381,'rRnaDCpj','sogewegitej631@gmail.com','6909301266','BxKjexvHn','gQOBRAxexCh','bqmQAxAwVCqdL','2025-06-27 10:06:11','202.84.76.58','1'),(382,'nyfxPWgSsj','aacevedox2003@gmail.com','6658402678','NljTuRYtJ','VXCzuRGAgyKv','UsZTBZVWNB','2025-06-28 12:57:20','154.113.84.205','1'),(383,'rjjNkiglKqElbL','itidohetud657@gmail.com','4305313016','WYmBmMFMNraFU','qeuvOiwkZoyFg','jhpvwpYZAlRlTU','2025-06-28 08:10:36','117.247.52.230','1'),(384,'VfbhevpYGXHnh','apuyanixapi670@gmail.com','9073439870','CqqqOxsTEX','aeYgYqCdPTeCEtS','QKkOPOTbePysgAg','2025-06-28 11:11:52','103.216.51.135','1'),(385,'zFgepZIMx','mervinjy10@gmail.com','2093265251','LAvCpAjX','oIHFouPApgOqYY','AcbOUadlMwkmx','2025-06-29 04:43:59','103.220.206.99','1'),(386,'zccrLxTQmGZE','griffinkletis@gmail.com','5196395020','dIGVnZyDSh','WRTFxzEbLNlv','dgRwIywLhsjDZMF','2025-06-29 05:46:26','175.184.254.98','1'),(387,'mbHSIaVBu','hintonheivyd@gmail.com','9788862380','UokWSQoKx','LCiwpugA','EvSOEgKluQKWPp','2025-06-30 01:46:32','103.61.101.77','1'),(388,'PhuMbSYTTy','hemfritk@gmail.com','4925535351','EdwIimwKxJU','llIPpahT','rcuyUQMxUB','2025-06-30 08:41:45','181.112.153.246','1'),(389,'oYwYUgDUvO','pmilisent6@gmail.com','6301886372','iCYsMIPZIju','UrzMqzcqGUSP','OtJtjPgZHawiJV','2025-06-30 09:35:45','1.161.192.187','1'),(390,'yjhnwXncHJUk','djoshoacj34@gmail.com','2789592343','GOaccSWQRvuUPiH','IpVXvhXCbG','ShXVSefID','2025-07-02 09:39:56','202.63.241.141','1'),(391,'uilxbZUoogC','apgoodchristine896899@yahoo.com','8094880127','BQlgAebYvIcyzVv','zrTfRDSfMIiVgTA','UmdQmIKNoSS','2025-07-02 03:32:50','185.14.249.230','1'),(392,'glbfeDnpHZNShbQ','elliedavis910486@yahoo.com','5575197207','YCXYvzBYAyJZWNi','qQMnCDPVgnMTNQ','kbhkKawugMuBWN','2025-07-02 07:51:56','2.180.30.232','1'),(393,'Veeren chengalaram','veeren62@yahoo.com','8014220141','BYU','','909 South 825 West, Springville, UT, USA','2025-07-03 11:21:41','128.187.112.29',NULL),(394,'Janis Viertel','Janis_viertel@byu.edu','8014224653','BYU Catering','https://dining.byu.edu/catering-home','5562 WSC, East Campus Drive, Provo, UT, USA','2025-07-03 12:48:01','128.187.112.5',NULL),(395,'gFxzqDPwEwFlqg','ezapoheyeh19@gmail.com','7397992763','dvsKMAXAiPD','WstfUbBoe','sUMmnADkYbqSyI','2025-07-04 04:20:31','105.235.201.54','1'),(396,'Jenn Grdina','jenn@naturesoasismarket.com','8599076966','Natures Oasis','na','300 South Camino Del Rio, Durango, CO, USA','2025-07-04 09:57:28','135.129.102.17',NULL),(397,'AWgOyidnx','atertracey71925@yahoo.com','3073133794','fDDVRvCVEXPnpFw','WtliBMuP','fJwEdDrvPFyEu','2025-07-04 10:31:23','203.189.151.57','1'),(398,'ZDkUZvLLUJn','hilafili99@gmail.com','4551227838','OHPnGjqb','ZuVSepYKGqRG','HMujpzgJYNvV','2025-07-04 09:59:25','114.4.244.122','1'),(399,'BgFcBPKCEF','elzagrimesht@gmail.com','2709758612','knMTcDgAIy','qwYdiNUu','fnVZEboYZIDDBK','2025-07-06 07:38:10','113.161.243.87','1'),(400,'baIuILkrd','errollshortno@gmail.com','6849332641','EOsdiDEO','rBVKcxQbG','UhmUxKJJU','2025-07-07 06:47:34','116.212.130.43',NULL),(401,'VVjAFHSkcNZti','bkonnell1983@gmail.com','2858450790','CbDkyUAmleFZr','HmdZOzhsDNZD','YyQGQGTR','2025-07-07 08:40:41','109.164.120.97',NULL),(402,'xgxBkZbhb','heinemann_ashley1995@yahoo.com','4440044723','ZnjhJTXTJVfIQ','LyrnDWMdlnrTL','cpzUNnTXHGFinN','2025-07-08 05:50:20','95.156.55.121',NULL),(403,'IuUGBfJDIWRk','bauertinw@gmail.com','6616797844','loVLujEvacaeWD','GLFPdxnbON','kQgpBYtPfFwEer','2025-07-08 07:31:05','185.22.58.191',NULL),(404,'GPNBWTlMChQVM','ezuqaho071@gmail.com','5391769774','nOZJdBWtvKUMn','lrontkfbELdn','JleqZLPnml','2025-07-08 09:33:03','197.255.52.122',NULL),(405,'dWeCqDoEncGTNUU','bhuangr2004@gmail.com','6347714308','AFCBKVmryspASr','clmREcDwo','UfbrTuxtT','2025-07-09 11:07:51','163.53.81.179',NULL),(406,'RBeGbuIDRMjXT','rubchungy13@gmail.com','8565855855','FzNhcWENvn','AOdkkEhfXLv','PYeVzIDBQ','2025-07-09 05:29:59','176.236.29.225',NULL),(407,'iTmqnvWiqb','hupoqavava870@gmail.com','5319954764','CbdRUUGjWel','hYaTPwLEZLpqI','GXgIteZJalE','2025-07-09 10:55:27','65.20.237.19',NULL),(408,'GFZPqXRFoHG','bhuangr2004@gmail.com','8428533086','GkPPeEavJibpH','PTJcHzAPIiASEqy','uQPkrPJSzWc','2025-07-10 12:02:21','202.62.58.224',NULL),(409,'wLPUSbnFD','vagitufuh404@gmail.com','9884327653','fGLNfOFrG','VqWMFULboP','lgQfzvrEyhbAOtt','2025-07-10 04:15:23','37.130.26.187',NULL),(410,'eArWqEGhEj','jocihite65@gmail.com','8384078672','CyCVlqlfHCinBvS','ydYRASWxPGbGrox','DJJqxqOY','2025-07-10 04:24:49','196.216.10.81',NULL),(411,'vTJtJUUvzQkMjkW','angie_isaacson8641@yahoo.com','6316934075','fKoUziEsjXiZi','xJWBJLFJWfZ','LeBwRufzcFSpxql','2025-07-11 03:12:18','197.232.247.183',NULL),(412,'QjbwECgTtS','zgraheimeh@gmail.com','8117528380','YLdeAYkuAFhRwla','lKHJhhMUUjOVQu','RpwHUdjAUD','2025-07-11 08:26:09','37.130.37.91',NULL),(413,'Tom Wood','twood@churchills.market','4198726900','Walt Churchill\'s Market','www.waltchurchillsmarket.com','26625 N Dixie Hwy, Perrysburg, OH, 43551','2025-07-11 09:34:29','199.191.116.66',NULL),(414,'ACPUFtKJkX','omicego464@gmail.com','3377650515','fBUQbFqiN','RoVoApwy','dUKkeShfVT','2025-07-11 07:58:33','197.251.195.217',NULL),(415,'sRYCzOUTzXkJNy','stephenskarleils7@gmail.com','6805467917','jTQRsjRaFXnl','wPaaRxiD','ItUJVAbd','2025-07-12 08:42:07','182.93.95.200',NULL),(416,'jsBsAkTR','hayellmzk@gmail.com','6197268782','UNaDMZkImdUkdl','baaaderJW','azGqwabQSxMgoE','2025-07-12 01:10:12','116.212.139.111',NULL),(417,'KOqFaPkAtdd','darsicohenuq92@gmail.com','8536961556','uBPUjiAwtcsfz','hTNqXtatVLVMqL','qQeWOhakkfz','2025-07-12 09:32:20','177.36.206.156',NULL),(418,'Amir Shaheer','amirshaheer2@gmail.com','4709613923','Piedmont Encompass Health Rehabilitation Hospital','Www.encompasshealth.com','101 Cherry Lane, Jackson, GA, USA','2025-07-13 12:56:50','155.186.172.236',NULL),(419,'NWoDbUYJvk','gatelei30@gmail.com','8552354212','fwrjoDNpiHw','HtvYFEBuPh','UEkTssmxUuAzOxj','2025-07-13 05:57:39','175.106.14.4',NULL),(420,'PVGOYGmEjkmdBw','milbermayhu@gmail.com','4216705334','lYPsLNnKhtddZo','sNCCVJiBRyH','bBDyIevurLY','2025-07-13 05:38:55','110.235.249.241',NULL),(421,'fllgIQVVyolrCU','djylijordanr@gmail.com','3560327583','vAHjjdzmNMv','JbvhoAbkyCQS','VDeoNLRGJyx','2025-07-15 03:50:31','36.91.89.227',NULL),(422,'caVowoziOw','loguleyegi72@gmail.com','3851198520','WIGqvjAmOBcbSOE','fnCzFcUfPEdDRST','MPVvhtSGPKpY','2025-07-15 07:54:55','103.134.133.160',NULL),(423,'MSACPtveBg','gregberry397581@yahoo.com','5435488848','cLdDCPgPhbaKf','dUUEkyGs','knkKrDbAq','2025-07-15 11:21:22','160.120.95.138',NULL),(424,'vEkzvuxK','ehahucukogo83@gmail.com','6041728548','JSRZwpKGtigbOLU','NhxvCODfvu','uXDGWMqeQtlF','2025-07-15 08:48:13','139.255.209.46',NULL),(425,'MfJoVgsau','indianamerrittfd22@gmail.com','2033360871','loCDsoCK','qkMJeEDWvxyKBb','QExiafBNHDWqf','2025-07-16 06:02:26','103.137.179.154',NULL),(426,'NahDsLZqoImw','grosskarleilyg@gmail.com','6845317836','GOHvuWEKYkqH','ioBQWkaEbnJ','XLxTDFnykz','2025-07-18 01:47:58','177.47.194.67',NULL),(427,'ZDvornLdjDhFFLN','bwarrenwa66@gmail.com','3287976887','XwoxSZFCLpQH','NiwVEdGEgTOIzp','hsqyRENNVf','2025-07-19 01:51:06','37.191.78.5',NULL),(428,'UzYjFiJteEkp','tuteyewav42@gmail.com','4927654225','OVHyIYMMiCOgzaA','TKkoJlXhEz','MhmsRMgwHq','2025-07-19 12:17:19','186.235.248.202',NULL),(429,'sWxgDiIVNfGl','tedwitzigreuter16143@yahoo.com','3306957794','dqqrWQoh','yEcvHZsJIfhe','QxMHlmSEsAVgQjJ','2025-07-20 07:58:19','124.41.214.196',NULL),(430,'IwqINqEvLgr','meimramirezwp1981@gmail.com','6524638880','VUaJRTlwlXHqG','EBExkVqZ','ZjlBFkUFPPPNsjw','2025-07-21 01:01:39','45.67.184.215',NULL),(431,'FwfstbWz','hardingsiliyau@gmail.com','2565538251','pRzdovJjkNlKXw','JgkpmMmvv','BObxapRNdWZ','2025-07-21 09:33:05','191.250.203.154',NULL),(432,'icxEjFOdPNYLNOD','hardigy67@gmail.com','3871993557','osBEUfuqBoRvem','XNBnnwUvIz','jJNHJaYPrjoJPU','2025-07-23 08:01:21','203.189.154.175',NULL),(433,'VOivTNfXzGcUU','kliffordcastrob27@gmail.com','7324840715','MEkuWNqtftJrGm','IjEOyuVPzmqd','uTBjrMFrp','2025-07-23 08:44:54','103.126.172.239',NULL),(434,'iDOqMiEvSnJWV','hardigy67@gmail.com','8617272805','tsWEDkaD','YGEsswmmUVGfNp','UTsBNihoEWmM','2025-07-24 01:59:36','109.108.122.87',NULL),(435,'VZmNMTAuHAPzZvN','joshkruger141745@yahoo.com','6452048748','XKbGQMeBo','GkuCOlTzxhR','IznJRAoDjxHcAnm','2025-07-24 01:45:28','41.218.119.50',NULL),(436,'MPSoyVJDdTOYWN','cutinepizef95@gmail.com','8649614741','iNMPDVSbjSltR','QHYTqFbdt','OeAltfloZW','2025-07-25 07:47:59','177.234.217.111',NULL),(437,'GKWNNNFVIs','ropahimu578@gmail.com','8967134872','ivDmeoOTmtqF','OQsQCPiBNzf','bBohHPtpWGBfx','2025-07-25 08:11:50','200.50.212.164',NULL),(438,'lCLiGrvolHRNp','eyuyegatak182@gmail.com','6359314093','RtBnZTwFuLOxr','rgLvwdoKW','LDVPnITZepaeC','2025-07-27 12:35:08','27.123.4.50',NULL),(439,'ifLpYvxjsJw','brianpayne851995@yahoo.com','4511299162','znTrWkWXszbTTbp','OuxwfOwYeSiT','AnpppVmgfF','2025-07-27 01:09:55','103.146.196.202',NULL),(440,'RkHLzfVwcwUfTn','ekamarar20@gmail.com','8163469516','ULhzUPKKUflPq','ehTxhKfubvWVzCC','ugdoGrCVgRKBHNf','2025-07-27 10:03:39','103.159.104.6',NULL),(441,'vnMnIrwcbN','yuhevoyi16@gmail.com','2688859148','hRXvqyYbhzPuq','duCLrYrzbJa','PnQILDhvgHZhZA','2025-07-27 06:09:06','186.224.108.14',NULL),(442,'InealdZeIEFLT','kotirwx20@gmail.com','2168725184','eFTUSuwEGHBj','GJxwICbiDsalCJH','fFmBVILt','2025-07-28 07:44:13','45.186.135.161',NULL),(443,'wuAkjGocad','nelsonmelanie1995@yahoo.com','4861688394','FcIInZDhw','XaSMOcGkkycQTrs','OkasVcVJwLa','2025-07-28 10:46:07','177.131.138.78',NULL),(444,'mAYLxoSNzUYyGJ','bretanramseyfw2005@gmail.com','4565077751','MUIiWBUrOPS','rfuhmPxE','YTYKIqJOVtUKzV','2025-07-30 08:13:49','185.166.27.82',NULL),(445,'gvVJtMFaBBfjqTj','erichawkins268038@yahoo.com','6428630747','YkGJjqekPjW','jDGKTskW','hAjTKSMnaLXkYa','2025-07-30 09:02:03','185.62.20.243',NULL),(446,'AErIzTgQTf','mepizahew512@gmail.com','3352995572','APUajKiRA','MIYEhCevAHMbH','EqcFtMTgSsk','2025-07-31 08:32:21','103.14.250.252',NULL),(447,'xObCAfBc','cafikoz882@gmail.com','8350166866','HqQBombOJJQ','CxjsVBrUq','ZrCVxdOpYinNQq','2025-07-31 10:18:20','168.90.145.8',NULL),(448,'utFuXvlfW','efepohiqaba479@gmail.com','2439019005','xnVXdLmipUR','QJGeJMWEL','ZkmVzLtxgYFZ','2025-08-01 09:36:33','187.95.170.33',NULL),(449,'vXiNUGqFrASUQET','victoriabrown644804@yahoo.com','3446876381','kMfHoXKSGdnux','lSzIorDtGWE','iOQEsOfu','2025-08-01 10:09:11','190.53.40.181',NULL),(450,'pPaNXSIDFr','wefiyahamas24@gmail.com','3620954359','EOqBBEKcfgGqq','dwYLMMlDIMfmWf','emFklUsVs','2025-08-01 02:38:19','103.196.234.81',NULL),(451,'izDnnxJFARlwIY','pauloferrer831041@yahoo.com','7389847702','uSXVAsOuwvzfDUH','fhUFJiFAWI','yrQudTmAwdyyW','2025-08-01 06:33:42','202.142.157.75',NULL),(452,'hfRvQLZKhY','gonehiv069@gmail.com','4959234158','jTeOXFwEHHIOd','dBkNiDRQGHyKRtz','cXWNkTiH','2025-08-02 12:27:57','115.79.195.172',NULL),(453,'ZvrmndPIFcscS','bertikellyuc8@gmail.com','4363408537','NalctTMK','fWjnwwdEUdW','ncTOjorIc','2025-08-03 02:09:50','123.200.15.14',NULL),(454,'CYMdTwjA','dgarzadr38@gmail.com','6777686718','VEMkgMspdttNAA','HzLqSAxhKu','cCHuQhpwueW','2025-08-05 06:47:59','191.242.223.198',NULL),(455,'grwSDAZaayHQCoR','villanuevarodney1982@yahoo.com','9533437783','WNVxxQIE','jCMyWvBZdUNdcEh','GtbrlLECwh','2025-08-06 05:13:23','195.36.24.123',NULL),(456,'vMcHggrcZDnqKI','emeyabolim61@gmail.com','3887191072','EIdecVryR','soyjXzqgRJlox','kNwkqUDtHqM','2025-08-07 12:31:38','103.6.11.86',NULL),(457,'tFBVhnRuNvXuB','osuxegeheka84@gmail.com','4367636727','mnNfULcxu','FcuqMllQSl','hTINErga','2025-08-08 01:55:51','14.241.131.192',NULL),(458,'wROtmWJn','vobezaqeja348@gmail.com','8364645084','HOiouDrJx','iVlscEjFMFedd','BLKJKlWqIvdT','2025-08-08 07:03:38','103.248.211.180',NULL),(459,'SyWLSVcD','fahozojem438@gmail.com','3026887654','XvbgepJoR','ldiYaQPfFBaKd','GjxfBCzTFuartB','2025-08-09 10:05:08','179.191.109.88',NULL),(460,'eUsWwFwwdOEy','awumogodi986@gmail.com','9757030752','ehnqlzIEdb','KkVQKhlvMFETOko','iPgWUTbaMLxAz','2025-08-10 12:39:47','116.90.214.73',NULL),(461,'lweFSrxtp','ledbetterwilliam526643@yahoo.com','5490545832','idpqgWRHnz','kYZObnObx','bMFddWJE','2025-08-10 10:04:52','59.92.70.187',NULL),(462,'LuUiXZNxUcNacD','jakaguvo90@gmail.com','2489853422','PwPRWXcWi','tQEYhRTJ','YZYQCnGCWVK','2025-08-10 11:34:11','176.56.143.53',NULL),(463,'uiVCXgMvJduTV','quxubefetiz99@gmail.com','2798476399','UbvImOBwaE','MsSntpsdrFCta','hfZDwNkpzKhhkF','2025-08-10 04:38:31','105.23.243.114',NULL),(464,'oJXcceTdgx','guzamatid41@gmail.com','6339275265','YpSvNSbH','bPCiogliH','vyBnXCPKgE','2025-08-11 03:26:56','187.16.224.199',NULL),(465,'Traci Melton','traci.melton@oregonstate.edu','5417373696','Oregon State University- UHDS','https://uhds.oregonstate.edu/dining','681 SW 26TH ST','2025-08-12 12:06:20','128.193.8.220',NULL),(466,'jODhfJPUPkqL','mardjeric19@gmail.com','8746675295','zbwUagcOG','TmTELjCcyN','hqUzktOFje','2025-08-12 03:21:13','117.3.194.127',NULL),(467,'UQtZVROihYzesO','virginiacastaneda248426@yahoo.com','9191089506','kUaQFlBASu','JkZHzqwdMod','zbezluvLtcd','2025-08-12 10:55:54','113.22.24.247',NULL),(468,'jGYZGklNh','zasedujafoc43@gmail.com','8138875112','uFaORhwDX','LxdeEbVgwWidKQ','ZNFYiuSLHnO','2025-08-13 12:00:07','200.183.83.84',NULL),(469,'tFtDAzsTpKVjA','ititexadoha456@gmail.com','9317561197','DcmqgjFsHDpaeFq','aAnCBvEabWWzzDb','YxZyLpnL','2025-08-14 03:15:11','113.176.46.8',NULL),(470,'VXWyYsdh','kusujelow404@gmail.com','4321438301','wHBFVsqooAhw','VbGNjwMwhyOP','UYbJiuziwr','2025-08-14 03:31:34','113.165.96.142',NULL),(471,'WOZleJUdXrTFZMD','ukocazozosa79@gmail.com','5797507566','StMVgUblnXQocuB','XpUbkskjubZ','KgwXjVHJoA','2025-08-14 09:47:50','94.101.133.140',NULL),(472,'sRUlQFMsP','tiwahekur65@gmail.com','7712688507','gUdpWlhDE','pVCpnqnXKz','LRpCIwtlBOAzoF','2025-08-15 03:30:41','103.46.233.244',NULL),(473,'JENtgoqyg','tiwahekur65@gmail.com','6842456091','njCBACESFj','EJxbymlBCu','KChScxDGQ','2025-08-15 09:12:15','103.24.89.83',NULL),(474,'qZWRzqdMESWC','herschcarmen885611@yahoo.com','4080234371','WkkkHjyXs','RJAfrGgIJtp','LdKFhhggUFIXpx','2025-08-15 05:40:33','170.245.31.157',NULL),(475,'MPGSjsxZLXOmu','beqehame914@gmail.com','7330441737','qSSfVSrfoASA','HPsOOefIBxl','ZbnYJaTzHT','2025-08-16 03:43:13','181.129.108.60',NULL),(476,'HKqMWNFUTsBMvQ','ihigakuhe54@gmail.com','7314239580','CvhJHJGG','llVnvZRhdtFJD','nEAljEAQz','2025-08-17 05:41:48','103.239.52.125',NULL),(477,'pepUuvEeo','ahefesoneg398@gmail.com','5462300108','gUemjYAdROPJ','MgwdBTDOkaeEWGH','LmPlsLwvD','2025-08-17 05:54:01','94.154.17.82',NULL),(478,'YxegFvMBtUJ','iquyidida94@gmail.com','4446031870','zeCZBsRgwiU','AeuaJtxjHXVoPPc','JWgFTuIg','2025-08-19 09:54:05','14.183.236.160',NULL),(479,'Matthew A. Conley Sr','maconley@salisbury.edu','4104308878','Salisbury University','Salisbury.edu','mailing address, 1101 Camden Avenue, Salisbury, MD, USA','2025-08-19 10:01:30','131.118.43.33',NULL),(480,'ulckChKSeNNoWuf','ayojogab151@gmail.com','7456834796','FCDpKKifuvs','pdUewiUd','zIvUisCg','2025-08-19 08:04:33','103.133.77.222',NULL),(481,'vLWpzjbRHFQ','heranot581@gmail.com','9105651301','TseRgHRyEFhnAt','akRmjpfyaWkoYf','pVorxgWocuuKOi','2025-08-21 01:58:12','38.252.151.100',NULL),(482,'Ella Chengalaram','veeren62@yahoo.coom','4804345324','Ellas Cuisine','','909 South 825 West, Springville, UT, USA','2025-08-21 10:27:03','128.187.112.29',NULL),(483,'FknrHwCjIYqR','beqehame914@gmail.com','4262216063','nYmMluBQo','xJGVTQaGCoIOh','kcIHlUwLgw','2025-08-21 04:30:18','102.69.145.203',NULL),(484,'HynSKiEhefWv','cuzofop300@gmail.com','6668682756','FaTGSEWrHOaQIN','vEjblbBGyeO','JxOfSZYnCUx','2025-08-22 10:53:22','95.38.50.65',NULL),(485,'Jean Butler ','butler-jean@cooperhealth.edu','8563422623','Cooper University Hospital','','1233 Cardinal Lake Dr, Cherry Hill Township, NJ, USA','2025-08-22 02:59:21','162.252.228.12',NULL),(486,'OIdpzlEgkgGvRJ','kozemeyiq752@gmail.com','8223033458','fIWwINldKHjk','JaTsRnwaAIIfQtH','kWpokaOGq','2025-08-22 11:39:47','102.129.43.12',NULL),(487,'ehmgHAuLbChe','nopohufuxej416@gmail.com','8306679457','iNKLowoHrVBqJ','uqKsnoIiB','DImCfmPxBTpGG','2025-08-23 08:51:59','116.90.229.98',NULL),(488,'kFYpTsCTJv','afomufivik35@gmail.com','7799673339','XuaDEcEUJTi','HjwjXvoSF','bFfouCVljIeOVkm','2025-08-24 01:33:08','102.69.146.37',NULL),(489,'bonLXfBbGuycr','qayijewade703@gmail.com','2923286278','eIaLpmlXUxwkfjZ','DHGpjBVDdTBTm','JnzvgAZZU','2025-08-24 01:16:43','109.236.46.232',NULL),(490,'gTJJcFci','ihigakuhe54@gmail.com','3177831891','dqXJQURNPYKhJJ','bClBnNERXD','aCSSqTmpQCyOo','2025-08-26 11:20:30','178.134.161.62',NULL),(491,'yzZquRoGVsa','rolotixuya275@gmail.com','9002483355','JFmxnCwJ','atfEarsr','cbXayfokEgL','2025-08-27 07:03:47','103.137.179.167',NULL),(492,'xitCPDaVIcGfNOL','ayojogab151@gmail.com','8884386624','WmlHRsDFBe','WwUJCXEKNgnOZe','JUXznLMxn','2025-08-28 03:10:53','94.183.26.158',NULL),(493,'TNuNqYQZJGtA','o6tgm1f9rktjsvoyj@yahoo.com','9606543686','EThXYNGsCSNhkjh','iGZrvmodRoOlNp','oGhsmYJO','2025-08-31 04:43:57','190.110.248.213',NULL),(494,'RTVZkZxTaYO','ayayotuyah79@gmail.com','5178634151','byrYOcWQqnE','IkkMmHtEtf','eFnqWXjVbPiyKE','2025-08-31 12:45:16','175.184.254.98',NULL),(495,'cvWIVUWQawh','vijoraju020@gmail.com','5347355299','RNyVppNZrVlTxc','BfeXWbpMYXRy','oywvuPccrqgNpX','2025-09-01 09:38:34','187.109.250.251',NULL),(496,'xEmXDkXl','afomufivik35@gmail.com','2742611392','XNMQHZYalaZXL','wOLBDJScyrPc','nrwpHStATFPsWe','2025-09-01 02:57:29','202.178.113.64',NULL),(497,'pVbgpVjLvMXUS','ohakaxobi498@gmail.com','9062587412','uFjSFpEDsR','ZWVHcWbTJcW','CXewdSkAtr','2025-09-02 09:26:08','177.92.117.178',NULL),(498,'owpQDqLl','iwaqarolobo12@gmail.com','4376770540','sExdnddPBzB','QwIWijCtbIlf','pXBPDQzEcMIdpOl','2025-09-04 11:49:54','103.53.110.10',NULL),(499,'jztvMHyujK','ihumuzucar85@gmail.com','9354847591','WGmBdaLslvpCDDA','EiiVzyzHjEhZ','ekMAULeLOAl','2025-09-04 04:26:24','103.239.52.31',NULL),(500,'VpbdpftG','urutifeyaq74@gmail.com','7607583445','JMKhbmYjCAZ','AFYccYnFU','tNNNbXkGnYQy','2025-09-04 09:04:41','36.93.12.235',NULL),(501,'TFKNaaRX','christodouleash@yahoo.com','4049083425','qzgSrnLxETCe','PGdeeJTR','FPfgIIHmjElqCcG','2025-09-05 06:07:50','196.216.64.110',NULL),(502,'mjWyweQA','ugubuqovodi205@gmail.com','4108266099','dGDckxQS','TfkMUZlYQAUzV','ZbIMocVY','2025-09-05 07:21:41','192.147.231.173',NULL),(503,'nKQoRQwmRe','anujecet95@gmail.com','8583014942','DBudpkvQlFiu','pSotXJqqWLVO','QoldkIFVdijwa','2025-09-05 11:49:36','200.39.146.0',NULL),(504,'wyRFTNBmcRRKJcD','vedavimequd744@gmail.com','7249407042','tyHjTtjKsF','wZFhjHGDRKQi','DdnnSvYUcr','2025-09-06 12:07:10','185.212.138.118',NULL),(505,'PIvbYfwPDewCSW','vedavimequd744@gmail.com','7784677305','HRhsvCgPncQvYPN','QjtbQzGg','xzKciAoitVX','2025-09-07 01:55:53','36.76.235.13',NULL),(506,'BexWWVyHXaKht','bamaqoxucu505@gmail.com','2616574926','tVkOxkKFOT','oHoERDqujy','kunrfUYM','2025-09-07 04:13:40','196.41.15.62',NULL),(507,'GEuGDGsePBv','afomufivik35@gmail.com','7066375191','WmtMAOHlWpfYH','jVGNilxVmYCCoRP','WGwgSmMcOv','2025-09-08 01:14:52','102.39.58.163',NULL),(508,'YXotwOuhJTvb','ohakaxobi498@gmail.com','7663697612','oeCHufLD','oKcNtrlfHHrYEQ','VsJVcgycsVHeG','2025-09-08 10:27:29','124.121.139.234',NULL),(509,'MNVcJnVmWLgSaAk','lodebumawoli35@gmail.com','5546733573','ejEaUDSIlP','AqHyvgKDaxjw','KGLanivGNgrp','2025-09-08 11:06:10','185.67.174.181',NULL),(510,'CkKPIfZZedMs','ohakaxobi498@gmail.com','7409928692','UJKcpJHDzfEL','iGQzPDvTYEdg','JBnNqCcxetpHs','2025-09-09 10:16:07','186.46.6.102',NULL),(511,'pdzNOskdRfJagC','galetabameda66@gmail.com','4825863586','qJxutYDLdorB','NTHlVKkckcOjV','RXdGmKeeQeUDNEw','2025-09-09 06:20:50','113.161.185.88',NULL),(512,'pKRUbrYYGwK','bevicimigib336@gmail.com','2637046688','MOghVSAI','HfEqJHjyZIJA','LtcaEMJBACObJ','2025-09-10 12:26:12','188.164.222.47',NULL),(513,'eUAbXgVo','foqipisecaz17@gmail.com','9438072333','jHdMFqFQvGv','BtvPHFdfeIyCi','yEAgbKYNA','2025-09-11 01:16:48','5.202.60.42',NULL),(514,'kLINVrrLgP','fujepeheqo765@gmail.com','6212526761','cwOOlYGXIG','rgiVSspGgtXUdr','bYgZvRYpSEP','2025-09-12 12:12:28','95.107.173.166',NULL),(515,'UXtSykGjqUiOKAf','ijixubiha166@gmail.com','8682578398','hoNkNuOfmtJ','SEEiCOlHQdJi','CbIuxjlxDhD','2025-09-12 09:41:40','36.37.243.125',NULL),(516,'tnhMPauUyXwUd','fujepeheqo765@gmail.com','2261506973','tYLpOPrIVjmxFI','oBJYFYKDMBVAlnr','QDZfPUAYeKHWOj','2025-09-12 04:45:26','113.187.198.96',NULL),(517,'gUoTvaIoUvEngv','iwubehexu351@gmail.com','5460575081','IULOQAWFXdYsdq','BQXwRRxyeHmfvPH','NQtDNVxKbPWc','2025-09-12 05:29:10','181.205.94.34',NULL),(518,'ZaJSFtyY','azefisasowo953@gmail.com','6785419496','EBphkxGffBq','KiKaweECehXQmaL','hwWNJaKnpWz','2025-09-13 05:06:39','185.102.238.132',NULL),(519,'OFtFWLCntIGachp','iwubehexu351@gmail.com','5155003206','mAmNvCnIBjBEq','edTOJqYcDhPqvL','xAnfjguZjZ','2025-09-14 04:41:45','196.216.70.82',NULL),(520,'OnvebLWG','pigabiserez82@gmail.com','6319439693','vjuIMKCfH','FqQPUGceUanUPu','iOlnNXPKhuoP','2025-09-17 04:30:17','102.164.248.242',NULL),(521,'BvfyJhJrL','amegsxqwmnd@yahoo.com','5072007955','cghWbPxbBdJ','ZnetTzxugXCFFC','DTlyyuWBV','2025-09-17 05:55:09','149.54.41.98',NULL),(522,'FnLDRtEjnr','jebelianqkaetfantz@yahoo.com','4754245252','qINtJPPnuhPI','GpHzwOBIEX','RaORSYiWqTs','2025-09-17 03:31:32','38.50.64.82',NULL),(523,'DHTJcbNTxlBCRt','ufiqofuq115@gmail.com','9561297557','xQcsVvmXeRzozw','VDxAWDaHimRbZ','ITsKbwgm','2025-09-17 10:18:06','182.160.100.76',NULL),(524,'XjOYEPZkDFTXC','woxezip081@gmail.com','8189562003','XtyVimRs','IfwqnxpoDfGt','OwwaKMqJlfkK','2025-09-18 01:38:53','103.145.47.74',NULL),(525,'FJLlacjFJzerTn','ahodedex71@gmail.com','5519624960','PuknKByORiIFENA','dmrSuNeDQomzTv','JvbJODcNaWQuQn','2025-09-20 03:27:12','113.160.226.39',NULL),(526,'lWgOxCGyILl','zamirema75@gmail.com','6590925310','nxmIOtUp','IDnzeTEbJbo','QlOGTOIQYGBGk','2025-09-20 06:39:56','58.65.142.98',NULL),(527,'FKcPqLPFd','umuhulam51@gmail.com','4417100131','zPxCDNEEwR','uvquLfvbOrwM','ApMYSaxj','2025-09-23 02:38:47','202.7.54.227',NULL),(528,'xeAKAOmAyIr','kebowus881@gmail.com','3288845620','ZOYvMeFhca','OMHlwmZdRoyav','EqQQQRLLRksMDg','2025-09-23 12:13:56','103.137.179.167',NULL),(529,'BRhBjIBqKVGb','bblairm5@gmail.com','4428457810','TEsjvMDemoXcGX','DxBRDOBZEeItsG','lTVxZDxsueZuey','2025-09-29 12:04:51','116.212.158.90',NULL),(530,'SUQToejWxtC','hgtbhtxujev@yahoo.com','3805150555','BbAzYyqdOQ','VpKKuAxdy','BdTUwauhVCQXkw','2025-09-29 07:07:55','195.224.195.147',NULL),(531,'cwGJLqKK','ozeqaliza27@gmail.com','8340700319','hJrZqFbu','swnxYUcCj','cydpCxEgE','2025-09-30 05:55:46','178.168.45.52',NULL),(532,'sRWvdgSjyLwvG','pahecogud57@gmail.com','4144424338','wqmiEUELVeoU','hKAZqRPLixD','GUPEYeUnG','2025-09-30 07:23:59','102.164.23.171',NULL),(533,'HrBduKWBVG','etexarabey313@gmail.com','7566942951','gUgquOEBwGaXouR','fXGqzNXGkCsyagl','gQoWYZZvmIeJr','2025-10-03 07:35:45','185.245.104.75',NULL),(534,'YOiqWGhmNqe','yebipahaba459@gmail.com','9298588432','YxoPythO','ylVtTojdJvYkm','FSlaKuPK','2025-10-05 05:43:15','88.218.62.29',NULL),(535,'KqOgfnqTZfnpg','hukoyumoje898@gmail.com','9727743741','OJAYjKWTVCsqK','olieWhqPFV','iMkTnMHidTqTUF','2025-10-05 07:12:09','212.34.155.126',NULL),(536,'FEcyIaSlTqhSm','saloyocare602@gmail.com','5463183926','HqHmzUrpOOUbmMgm','fWedLrDMd','KnCVQdEOENXrZ','2025-10-08 12:47:08','88.218.62.29',NULL),(537,'EYuvfvmWjpTldxI','ujupubabeq49@gmail.com','6011062019','vvPLvcaytmLBSjoo','KQdLPyBS','hunwfwLmialz','2025-10-09 07:54:16','212.34.135.52',NULL),(538,'bEugmFJzh','qatevefi829@gmail.com','7770294072','faAYvxru','nEvckoVXZFoBL','nsrNgMepqJtQR','2025-10-11 09:11:40','185.21.13.119',NULL),(539,'BNuCsgkTN','evacemove01@gmail.com','7928948999','xSGepOuKgs','IDQmScSvNGxM','esliFqGxy','2025-10-14 05:47:53','195.2.81.171',NULL),(540,'cenAeQWhAReKnw','opigohihil753@gmail.com','5366770054','RCVljOJU','SzqcRVtKo','SFECFNbcBns','2025-10-15 04:29:18','91.84.104.205',NULL),(541,'WwrHdxHfKiu','betopeyaqa49@gmail.com','2377396826','pjWWmAbK','jXPEjKWEKj','EwdWQMYQ','2025-10-16 12:57:06','195.26.225.209',NULL),(542,'LwTqjGHPCRzkW','ahipazuxof79@gmail.com','4280251060','xydhimIcEHuvPoc','CNcKJYSZhatwP','omzSlVBcvatOdUp','2025-10-18 08:07:47','80.85.245.37',NULL),(543,'sEwkoMWdPvmEK','zofipukuwoya48@gmail.com','5115156416','IXXItzTNtmjA','zCVmojYqmfgqxik','BrPAIsQAWUGjoNB','2025-10-18 06:18:38','195.2.70.209',NULL),(544,'eqFenaAtC','jagakutiyemi16@gmail.com','7573918712','gyLMCxPVNfoDoIOr','hwpQoatRiz','mDudhYUVgmZNAZAI','2025-10-19 04:37:27','80.85.246.140',NULL),(545,'KIvkMwHKOCmegiEh','urukehehoyi964@gmail.com','9935204799','RYxwentIvy','HxYWjyacJLeRQjX','ZWkdCiXubF','2025-10-19 09:24:50','195.26.224.235',NULL),(546,'ppInihVUleZAJ','letutiloke80@gmail.com','8830290753','kkXFuZLZhWXSYh','TPAcusoyfOtBUDA','adtgQVLwiVUclNAv','2025-10-20 02:02:06','88.218.62.29',NULL),(547,'dvTLpKnvamravDWJ','nafoqowole43@gmail.com','6854919288','arwYsVRBohpPnLVC','iZkXENfTLQtDfMpKy','NmqvxPfqIqdLgekUWVEpuR','2025-11-11 01:40:20','195.2.78.89',NULL),(548,'ItjdFIubIkBYyzRmodtFYZKC','efuwezay494@gmail.com','4077343445','auLJLUaqlMUQCmfohXSRraMY','SwUYxeXenSQvPGaxVEbow','oSFpNgQyRlNAMxmus','2025-11-15 10:32:55','195.2.70.209',NULL),(549,'vUiuUzOkkplwzlAUnKo','ufoyasegu62@gmail.com','4609532954','yFcArlxQKvHyDmPN','fFyjEKPjNuBkPsFlYSoMnK','MJtANxSAEwNKofnopgnODR','2025-11-22 01:39:28','185.245.104.75',NULL),(550,'Samantha McClive','smcclive@verizon.net','7162088447','Hair by Samantha ','','4380 Arondale Drive, Buffalo, NY, USA','2026-01-06 08:26:30','146.75.223.50',NULL),(551,'VycYCuMvDNLrWRKY','p.ofo.su.ra.f.u.cu.07@gmail.com','6650532602','TULIdvYwjPxQUShKtXZVZ','JlHejMtYIoLgmicvdNtNJSZi','jQfCXLNpxQsNbWWrOs','2026-01-07 05:09:03','45.84.107.172',NULL),(552,'lMTsOKtFQwBJHDMRM','r.ei.m.on.dhe.b.e.r.t.36@gmail.com','8844529816','BHImWcXraUySKecxnMQFBg','ksRoihcohQFwBIuzqMIOJC','inZoccDppwvtwQuoFTByR','2026-01-18 03:46:32','45.84.107.47',NULL),(553,'LarzWLpeeGgQvxTePbTITAy','oyoc.izu.si.na.b.2.5@gmail.com','2268957080','bdpKEDPYCBGGDgid','gQafbsxTQvrRNwXFxy','sAHFkTFqqFLKyqnFp','2026-01-21 05:25:31','23.129.64.208',NULL); /*!40000 ALTER TABLE `tbl_sample_request` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_search_history` -- DROP TABLE IF EXISTS `tbl_search_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_search_history` ( `id` int NOT NULL AUTO_INCREMENT, `uid` int NOT NULL, `search_terms` varchar(200) NOT NULL, `product_view` int DEFAULT NULL, `product_addtocart` int DEFAULT NULL, `product_purchase` int DEFAULT NULL, `status` tinyint NOT NULL, `search_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1516177 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_search_history` -- LOCK TABLES `tbl_search_history` WRITE; /*!40000 ALTER TABLE `tbl_search_history` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_search_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_section` -- DROP TABLE IF EXISTS `tbl_section`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_section` ( `id` int NOT NULL AUTO_INCREMENT, `section_name` varchar(500) NOT NULL, `section_photo` varchar(500) NOT NULL, `sec_photo` varchar(200) NOT NULL, `section_slug` varchar(500) NOT NULL, `section_url` varchar(250) NOT NULL, `showinmenu` int NOT NULL, `showinmenu_app` bit(1) DEFAULT NULL, `creation_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `display_order` int NOT NULL, `display_order_app` int NOT NULL, `display_order_web` int NOT NULL DEFAULT '0', `is_nationwide` tinyint NOT NULL, `status` int NOT NULL, `subTitle` varchar(200) DEFAULT NULL, `deliveryInfo` varchar(200) DEFAULT NULL, PRIMARY KEY (`id`), KEY `section_name` (`section_name`), KEY `section_slug` (`section_slug`), KEY `status` (`status`), KEY `id` (`id`,`section_photo`,`section_url`,`display_order`), KEY `showinmenu` (`showinmenu`), KEY `showinmenu_app` (`showinmenu_app`) ) ENGINE=InnoDB AUTO_INCREMENT=40 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_section` -- LOCK TABLES `tbl_section` WRITE; /*!40000 ALTER TABLE `tbl_section` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_section` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_servicearea_request` -- DROP TABLE IF EXISTS `tbl_servicearea_request`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_servicearea_request` ( `id` int NOT NULL AUTO_INCREMENT, `email` varchar(500) NOT NULL, `req_zipcode` varchar(10) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `ip` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=645 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_servicearea_request` -- LOCK TABLES `tbl_servicearea_request` WRITE; /*!40000 ALTER TABLE `tbl_servicearea_request` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_servicearea_request` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_setting` -- DROP TABLE IF EXISTS `tbl_setting`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_setting` ( `id` int NOT NULL AUTO_INCREMENT, `landline` varchar(255) NOT NULL, `mobile` varchar(255) NOT NULL, `shippingamount` double NOT NULL, `expressdeliveryamount` double NOT NULL, `pkgcharge` varchar(50) NOT NULL, `minorderamount` double NOT NULL, `upsminorderamount` double NOT NULL, `rewardamount` double NOT NULL, `show_slot` int NOT NULL, `address` text NOT NULL, `food_popup_discount` double DEFAULT NULL, `food_popup_title` varchar(100) DEFAULT NULL, `food_popup_short_desp` varchar(200) DEFAULT NULL, `student_ambassador_grocery` varchar(200) NOT NULL, `student_ambassador_mealkit` varchar(200) NOT NULL, `service_fee_type` varchar(100) NOT NULL, `service_fee` double NOT NULL, `conveniencefeetype` varchar(500) DEFAULT NULL, `conveniencefee` double DEFAULT NULL, `status` tinyint NOT NULL, `title_you_may_like` varchar(100) DEFAULT NULL, `title_zip_prods` varchar(100) DEFAULT NULL, `title_deals` varchar(100) DEFAULT NULL, `title_limited_prods` varchar(100) DEFAULT NULL, `title_food_prods` varchar(100) DEFAULT NULL, `platform_service_fees_pickup` double NOT NULL DEFAULT '0', `platform_service_fees_delivery` double NOT NULL DEFAULT '0', `platform_service_text` varchar(1000) NOT NULL DEFAULT ' ', `zee5_service_fees` double NOT NULL DEFAULT '0', `food_page_custom_heading` varchar(500) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_setting` -- LOCK TABLES `tbl_setting` WRITE; /*!40000 ALTER TABLE `tbl_setting` DISABLE KEYS */; INSERT INTO `tbl_setting` VALUES (1,'','8527399365',4.99,9.99,'0',30,50,1,0,'<p>Quicklly.com</p>\r\n\r\n<p>Chicago IL 60610</p>\r\n',0,'HERE\'S EXTRA 10% OFF!','When you combine with Food, Tiffin or Catering. Offer valid till today only! Hurry up!','Student Essentials','Ready to Eat Meal','fixed',2,'percent',3.5,1,'You may also like','Popular in your area','Deals','Raksha Bandhan Specials','Suggested Food',7.5,7.5,'This fee supports the Quicklly platform and covers various operating costs—including packaging, insurance, background checks, and customer support. Quicklly Pass members enjoy a reduced fee.',7.5,'Food custom list'); /*!40000 ALTER TABLE `tbl_setting` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_shipping_method` -- DROP TABLE IF EXISTS `tbl_shipping_method`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_shipping_method` ( `id` int NOT NULL AUTO_INCREMENT, `shipping_method` varchar(255) NOT NULL, `ship_price` double NOT NULL, `ship_days` int NOT NULL, `default_val` int NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_shipping_method` -- LOCK TABLES `tbl_shipping_method` WRITE; /*!40000 ALTER TABLE `tbl_shipping_method` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_shipping_method` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_sitemap` -- DROP TABLE IF EXISTS `tbl_sitemap`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_sitemap` ( `id` int NOT NULL AUTO_INCREMENT, `url` varchar(1000) NOT NULL, `url_category` varchar(100) NOT NULL, `priority` float NOT NULL, `added_on` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_on` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP, `user_id` int NOT NULL DEFAULT '0', `custom_url` int DEFAULT NULL, `urlcheck` int DEFAULT NULL, `status` int NOT NULL DEFAULT '1', PRIMARY KEY (`id`) USING BTREE, KEY `urlcheck` (`urlcheck`), KEY `url_category` (`url_category`), KEY `status` (`status`), KEY `url` (`url`(768)), KEY `custom_url` (`custom_url`) ) ENGINE=InnoDB AUTO_INCREMENT=923383 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_sitemap` -- LOCK TABLES `tbl_sitemap` WRITE; /*!40000 ALTER TABLE `tbl_sitemap` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_sitemap` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_size_photo` -- DROP TABLE IF EXISTS `tbl_size_photo`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_size_photo` ( `id` int NOT NULL AUTO_INCREMENT, `sizeid` int NOT NULL, `product_id` int NOT NULL, `photo` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `display_order` int NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=90 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_size_photo` -- LOCK TABLES `tbl_size_photo` WRITE; /*!40000 ALTER TABLE `tbl_size_photo` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_size_photo` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_social` -- DROP TABLE IF EXISTS `tbl_social`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_social` ( `id` int NOT NULL AUTO_INCREMENT, `title` varchar(255) NOT NULL, `social_url` text NOT NULL, `show_front` tinyint NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_social` -- LOCK TABLES `tbl_social` WRITE; /*!40000 ALTER TABLE `tbl_social` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_social` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_social_count` -- DROP TABLE IF EXISTS `tbl_social_count`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_social_count` ( `id` int NOT NULL AUTO_INCREMENT, `recipe_id` int NOT NULL, `facebook_count` int NOT NULL, `twitter_count` int NOT NULL, `mail_count` int NOT NULL, `linkdin_count` int NOT NULL, `whatsapp_count` int NOT NULL, `total_view` int NOT NULL, `total_count` int NOT NULL, `total_share` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=97 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_social_count` -- LOCK TABLES `tbl_social_count` WRITE; /*!40000 ALTER TABLE `tbl_social_count` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_social_count` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_specialcategory` -- DROP TABLE IF EXISTS `tbl_specialcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_specialcategory` ( `id` int NOT NULL AUTO_INCREMENT, `specialcategory` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `cat_image` varchar(255) NOT NULL, `cat_icon` varchar(255) NOT NULL, `show_home` tinyint NOT NULL, `home_limit` int NOT NULL, `status` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8015 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_specialcategory` -- LOCK TABLES `tbl_specialcategory` WRITE; /*!40000 ALTER TABLE `tbl_specialcategory` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_specialcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_specialcatproduct` -- DROP TABLE IF EXISTS `tbl_specialcatproduct`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_specialcatproduct` ( `id` int NOT NULL AUTO_INCREMENT, `spcat_id` int NOT NULL, `prod_id` int NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=271 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_specialcatproduct` -- LOCK TABLES `tbl_specialcatproduct` WRITE; /*!40000 ALTER TABLE `tbl_specialcatproduct` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_specialcatproduct` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_cat_banner` -- DROP TABLE IF EXISTS `tbl_store_cat_banner`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_cat_banner` ( `id` int NOT NULL AUTO_INCREMENT, `sectionid` int NOT NULL, `storeid` int NOT NULL, `storeslug` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `parent_catid` int NOT NULL, `category_slug` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `subcatid` int NOT NULL, `subcategory_slug` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `post_title` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `post_img` varchar(1000) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `store_banner` varchar(1000) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `store_banner_mob` varchar(1000) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `link_type` enum('No Link','External','Store Page','Section Page','Category','Subcategory') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `post_url` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_cat_banner` -- LOCK TABLES `tbl_store_cat_banner` WRITE; /*!40000 ALTER TABLE `tbl_store_cat_banner` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_cat_banner` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_reels` -- DROP TABLE IF EXISTS `tbl_store_reels`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_reels` ( `id` int NOT NULL AUTO_INCREMENT, `storeid` int NOT NULL, `title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `video_url` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `order_no` int NOT NULL, `created_on` datetime NOT NULL, `poster_img` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `status` tinyint NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `storeid` (`storeid`), CONSTRAINT `tbl_store_reels_ibfk_1` FOREIGN KEY (`storeid`) REFERENCES `stores` (`storeid`) ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_reels` -- LOCK TABLES `tbl_store_reels` WRITE; /*!40000 ALTER TABLE `tbl_store_reels` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_reels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_tag` -- DROP TABLE IF EXISTS `tbl_store_tag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_tag` ( `id` int NOT NULL AUTO_INCREMENT, `store_id` int NOT NULL, `taglist_ids` varchar(10) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL, `type` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=236 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_tag` -- LOCK TABLES `tbl_store_tag` WRITE; /*!40000 ALTER TABLE `tbl_store_tag` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_tag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_tag_taglist` -- DROP TABLE IF EXISTS `tbl_store_tag_taglist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_tag_taglist` ( `id` int NOT NULL AUTO_INCREMENT, `store_tag_id` int NOT NULL, `taglist_id` int NOT NULL, PRIMARY KEY (`id`), KEY `store_tag_id` (`store_tag_id`), CONSTRAINT `tbl_store_tag_taglist_ibfk_1` FOREIGN KEY (`store_tag_id`) REFERENCES `tbl_store_tag` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_tag_taglist` -- LOCK TABLES `tbl_store_tag_taglist` WRITE; /*!40000 ALTER TABLE `tbl_store_tag_taglist` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_tag_taglist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip` -- DROP TABLE IF EXISTS `tbl_store_zip`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` varchar(20) DEFAULT NULL, `mm_latitude` varchar(50) DEFAULT NULL, `mm_longitude` varchar(50) DEFAULT NULL, `totalSale` int DEFAULT NULL, `last_update_date` datetime DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`), KEY `totalSale` (`totalSale`) ) ENGINE=InnoDB AUTO_INCREMENT=327737 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip` -- LOCK TABLES `tbl_store_zip` WRITE; /*!40000 ALTER TABLE `tbl_store_zip` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip_180424` -- DROP TABLE IF EXISTS `tbl_store_zip_180424`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip_180424` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` bigint NOT NULL, `mm_latitude` varchar(100) DEFAULT NULL, `mm_longitude` varchar(100) DEFAULT NULL, `totalSale` int DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `storeid_zip_unique` (`storeid`,`zipold`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`) ) ENGINE=InnoDB AUTO_INCREMENT=1902 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip_180424` -- LOCK TABLES `tbl_store_zip_180424` WRITE; /*!40000 ALTER TABLE `tbl_store_zip_180424` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip_180424` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip_8624kvag` -- DROP TABLE IF EXISTS `tbl_store_zip_8624kvag`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip_8624kvag` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` varchar(20) DEFAULT NULL, `mm_latitude` varchar(50) DEFAULT NULL, `mm_longitude` varchar(50) DEFAULT NULL, `totalSale` int DEFAULT NULL, `last_update_date` datetime DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`), KEY `totalSale` (`totalSale`) ) ENGINE=InnoDB AUTO_INCREMENT=327737 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip_8624kvag` -- LOCK TABLES `tbl_store_zip_8624kvag` WRITE; /*!40000 ALTER TABLE `tbl_store_zip_8624kvag` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip_8624kvag` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip_bf_op_bkp1g` -- DROP TABLE IF EXISTS `tbl_store_zip_bf_op_bkp1g`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip_bf_op_bkp1g` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` varchar(20) DEFAULT NULL, `mm_latitude` varchar(50) DEFAULT NULL, `mm_longitude` varchar(50) DEFAULT NULL, `totalSale` int DEFAULT NULL, `last_update_date` datetime DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`), KEY `totalSale` (`totalSale`) ) ENGINE=InnoDB AUTO_INCREMENT=327737 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip_bf_op_bkp1g` -- LOCK TABLES `tbl_store_zip_bf_op_bkp1g` WRITE; /*!40000 ALTER TABLE `tbl_store_zip_bf_op_bkp1g` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip_bf_op_bkp1g` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip_bkp_29jlvp` -- DROP TABLE IF EXISTS `tbl_store_zip_bkp_29jlvp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip_bkp_29jlvp` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` bigint NOT NULL, `mm_latitude` varchar(50) DEFAULT NULL, `mm_longitude` varchar(50) DEFAULT NULL, `totalSale` int DEFAULT NULL, `last_update_date` datetime DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`), KEY `totalSale` (`totalSale`) ) ENGINE=InnoDB AUTO_INCREMENT=287318 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip_bkp_29jlvp` -- LOCK TABLES `tbl_store_zip_bkp_29jlvp` WRITE; /*!40000 ALTER TABLE `tbl_store_zip_bkp_29jlvp` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip_bkp_29jlvp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip_bkp_29jlvp_tst` -- DROP TABLE IF EXISTS `tbl_store_zip_bkp_29jlvp_tst`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip_bkp_29jlvp_tst` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` bigint NOT NULL, `mm_latitude` varchar(50) DEFAULT NULL, `mm_longitude` varchar(50) DEFAULT NULL, `totalSale` int DEFAULT NULL, `last_update_date` datetime DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`), KEY `totalSale` (`totalSale`) ) ENGINE=InnoDB AUTO_INCREMENT=287318 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip_bkp_29jlvp_tst` -- LOCK TABLES `tbl_store_zip_bkp_29jlvp_tst` WRITE; /*!40000 ALTER TABLE `tbl_store_zip_bkp_29jlvp_tst` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip_bkp_29jlvp_tst` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip_bkplvd_mm1agust` -- DROP TABLE IF EXISTS `tbl_store_zip_bkplvd_mm1agust`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip_bkplvd_mm1agust` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` varchar(20) DEFAULT NULL, `mm_latitude` varchar(50) DEFAULT NULL, `mm_longitude` varchar(50) DEFAULT NULL, `totalSale` int DEFAULT NULL, `last_update_date` datetime DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`), KEY `totalSale` (`totalSale`) ) ENGINE=InnoDB AUTO_INCREMENT=327737 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip_bkplvd_mm1agust` -- LOCK TABLES `tbl_store_zip_bkplvd_mm1agust` WRITE; /*!40000 ALTER TABLE `tbl_store_zip_bkplvd_mm1agust` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip_bkplvd_mm1agust` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip_kk7ast` -- DROP TABLE IF EXISTS `tbl_store_zip_kk7ast`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip_kk7ast` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` varchar(20) DEFAULT NULL, `mm_latitude` varchar(50) DEFAULT NULL, `mm_longitude` varchar(50) DEFAULT NULL, `totalSale` int DEFAULT NULL, `last_update_date` datetime DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`), KEY `totalSale` (`totalSale`) ) ENGINE=InnoDB AUTO_INCREMENT=327737 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip_kk7ast` -- LOCK TABLES `tbl_store_zip_kk7ast` WRITE; /*!40000 ALTER TABLE `tbl_store_zip_kk7ast` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip_kk7ast` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip_live_temp` -- DROP TABLE IF EXISTS `tbl_store_zip_live_temp`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip_live_temp` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` bigint NOT NULL, `mm_latitude` varchar(100) DEFAULT NULL, `mm_longitude` varchar(100) DEFAULT NULL, `totalSale` int DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `storeid_zip_unique` (`storeid`,`zipold`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`) ) ENGINE=InnoDB AUTO_INCREMENT=160 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip_live_temp` -- LOCK TABLES `tbl_store_zip_live_temp` WRITE; /*!40000 ALTER TABLE `tbl_store_zip_live_temp` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip_live_temp` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip_map_2plst` -- DROP TABLE IF EXISTS `tbl_store_zip_map_2plst`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip_map_2plst` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` bigint NOT NULL, `mm_latitude` varchar(50) DEFAULT NULL, `mm_longitude` varchar(50) DEFAULT NULL, `totalSale` int DEFAULT NULL, `last_update_date` datetime DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`), KEY `totalSale` (`totalSale`) ) ENGINE=InnoDB AUTO_INCREMENT=287318 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip_map_2plst` -- LOCK TABLES `tbl_store_zip_map_2plst` WRITE; /*!40000 ALTER TABLE `tbl_store_zip_map_2plst` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip_map_2plst` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip_mm_livedatabkp_28jl` -- DROP TABLE IF EXISTS `tbl_store_zip_mm_livedatabkp_28jl`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip_mm_livedatabkp_28jl` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` bigint NOT NULL, `mm_latitude` varchar(50) DEFAULT NULL, `mm_longitude` varchar(50) DEFAULT NULL, `totalSale` int DEFAULT NULL, `last_update_date` datetime DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`), KEY `totalSale` (`totalSale`) ) ENGINE=InnoDB AUTO_INCREMENT=287318 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip_mm_livedatabkp_28jl` -- LOCK TABLES `tbl_store_zip_mm_livedatabkp_28jl` WRITE; /*!40000 ALTER TABLE `tbl_store_zip_mm_livedatabkp_28jl` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip_mm_livedatabkp_28jl` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip_pp6agst` -- DROP TABLE IF EXISTS `tbl_store_zip_pp6agst`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip_pp6agst` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` varchar(20) DEFAULT NULL, `mm_latitude` varchar(50) DEFAULT NULL, `mm_longitude` varchar(50) DEFAULT NULL, `totalSale` int DEFAULT NULL, `last_update_date` datetime DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`), KEY `totalSale` (`totalSale`) ) ENGINE=InnoDB AUTO_INCREMENT=327737 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip_pp6agst` -- LOCK TABLES `tbl_store_zip_pp6agst` WRITE; /*!40000 ALTER TABLE `tbl_store_zip_pp6agst` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip_pp6agst` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_store_zip_zipmappedbk_29` -- DROP TABLE IF EXISTS `tbl_store_zip_zipmappedbk_29`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_store_zip_zipmappedbk_29` ( `id` int NOT NULL AUTO_INCREMENT, `zipold` varchar(20) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL, `storeid` int NOT NULL, `zone` int NOT NULL, `city` varchar(500) NOT NULL, `state` varchar(500) NOT NULL, `url` varchar(1000) NOT NULL, `zone_status` int NOT NULL, `store_status` int NOT NULL, `zip_area` varchar(50) NOT NULL, `hike` varchar(15) NOT NULL, `pickup` int NOT NULL, `delivery` int NOT NULL, `minimum` int NOT NULL, `delivery_fee` varchar(10) NOT NULL, `commission` varchar(10) NOT NULL, `minimum_fee` varchar(10) NOT NULL, `ups` int NOT NULL, `sectionid` varchar(1000) NOT NULL, `short_description` varchar(300) NOT NULL, `mini_description` varchar(300) NOT NULL, `estd_delivery` varchar(300) NOT NULL, `open_time` varchar(12) NOT NULL, `close_time` varchar(12) NOT NULL, `wholesale_delevery_partner` varchar(500) NOT NULL, `grocery_delivery_partner` varchar(500) NOT NULL, `food_delivery_partner` varchar(500) NOT NULL, `alocohol_delivery_partner` varchar(500) NOT NULL, `status` int NOT NULL, `food_delivery_slots` varchar(100) DEFAULT NULL, `priority_delivery` varchar(20) DEFAULT NULL, `zip` bigint NOT NULL, `mm_latitude` varchar(50) DEFAULT NULL, `mm_longitude` varchar(50) DEFAULT NULL, `totalSale` int DEFAULT NULL, `last_update_date` datetime DEFAULT NULL, `delivery_fees_type` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), KEY `zip` (`zipold`), KEY `storeid` (`storeid`), KEY `zone` (`zone`), KEY `zone_status` (`zone_status`), KEY `store_status` (`store_status`), KEY `hike` (`hike`), KEY `pickup` (`pickup`), KEY `delivery` (`delivery`), KEY `sectionid` (`sectionid`(767)), KEY `status` (`status`), KEY `city` (`city`,`state`,`url`(767)), KEY `zip_2` (`zipold`,`storeid`,`zone_status`,`store_status`,`zip_area`,`pickup`,`delivery`), KEY `sectionid_2` (`sectionid`(767)), KEY `open_time` (`open_time`,`close_time`,`grocery_delivery_partner`), KEY `zone_status_2` (`zone_status`,`store_status`,`delivery`,`minimum`,`minimum_fee`,`status`,`storeid`,`city`,`state`,`zip_area`), KEY `storeid_2` (`storeid`,`city`,`state`,`hike`,`minimum`,`minimum_fee`), KEY `zip_3` (`zip`), KEY `totalSale` (`totalSale`) ) ENGINE=InnoDB AUTO_INCREMENT=289662 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_store_zip_zipmappedbk_29` -- LOCK TABLES `tbl_store_zip_zipmappedbk_29` WRITE; /*!40000 ALTER TABLE `tbl_store_zip_zipmappedbk_29` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_store_zip_zipmappedbk_29` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_student_ambassador` -- DROP TABLE IF EXISTS `tbl_student_ambassador`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_student_ambassador` ( `id` int NOT NULL AUTO_INCREMENT, `storeid` int NOT NULL, `productid` int NOT NULL, `status` tinyint NOT NULL DEFAULT '1', `display_order` int NOT NULL, `type` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_student_ambassador` -- LOCK TABLES `tbl_student_ambassador` WRITE; /*!40000 ALTER TABLE `tbl_student_ambassador` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_student_ambassador` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_subcategory` -- DROP TABLE IF EXISTS `tbl_subcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_subcategory` ( `id` int NOT NULL AUTO_INCREMENT, `cat_id` int NOT NULL, `subcategory` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `subgroup_id` int NOT NULL, `display_order` int NOT NULL DEFAULT '20', `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_subcategory` -- LOCK TABLES `tbl_subcategory` WRITE; /*!40000 ALTER TABLE `tbl_subcategory` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_subcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_subscriber` -- DROP TABLE IF EXISTS `tbl_subscriber`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_subscriber` ( `id` int NOT NULL AUTO_INCREMENT, `fname` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `subscribd_date` datetime NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_subscriber` -- LOCK TABLES `tbl_subscriber` WRITE; /*!40000 ALTER TABLE `tbl_subscriber` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_subscriber` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_tag_list` -- DROP TABLE IF EXISTS `tbl_tag_list`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_tag_list` ( `tag_id` int NOT NULL AUTO_INCREMENT, `tag_name` varchar(1000) NOT NULL, `status` int NOT NULL, `addondate` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `type` tinyint NOT NULL DEFAULT '0', PRIMARY KEY (`tag_id`), KEY `status` (`status`) ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_tag_list` -- LOCK TABLES `tbl_tag_list` WRITE; /*!40000 ALTER TABLE `tbl_tag_list` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_tag_list` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_temp_checkout` -- DROP TABLE IF EXISTS `tbl_temp_checkout`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_temp_checkout` ( `temp_id` int NOT NULL AUTO_INCREMENT, `order_id` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `user_id` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `plan_id` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `sub_total` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `total_saving` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `ediscount_via` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `ediscount` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `coupon_code` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `memberDiscount` varchar(200) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, PRIMARY KEY (`temp_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_temp_checkout` -- LOCK TABLES `tbl_temp_checkout` WRITE; /*!40000 ALTER TABLE `tbl_temp_checkout` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_temp_checkout` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_testimonial` -- DROP TABLE IF EXISTS `tbl_testimonial`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_testimonial` ( `id` int NOT NULL AUTO_INCREMENT, `testimonial` text NOT NULL, `rating` float NOT NULL, `posted_by` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `posted_date` datetime NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_testimonial` -- LOCK TABLES `tbl_testimonial` WRITE; /*!40000 ALTER TABLE `tbl_testimonial` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_testimonial` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_trackcampaign` -- DROP TABLE IF EXISTS `tbl_trackcampaign`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_trackcampaign` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` varchar(10) NOT NULL, `product_name` varchar(200) NOT NULL, `storeid` varchar(10) NOT NULL, `price` varchar(5) NOT NULL, `user_id` varchar(10) NOT NULL, `added_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `status` int NOT NULL, PRIMARY KEY (`id`), KEY `product_name` (`product_name`), KEY `product_id` (`product_id`), KEY `storeid` (`storeid`,`price`,`user_id`,`added_date`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=403 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_trackcampaign` -- LOCK TABLES `tbl_trackcampaign` WRITE; /*!40000 ALTER TABLE `tbl_trackcampaign` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_trackcampaign` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_transacttion` -- DROP TABLE IF EXISTS `tbl_transacttion`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_transacttion` ( `id` int NOT NULL AUTO_INCREMENT, `storeid` varchar(10) NOT NULL, `orderid` varchar(10) NOT NULL, `transaction_id` varchar(200) NOT NULL, `transaction_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `transaction_status` int NOT NULL, `customer_id` int NOT NULL, `transaction_type` varchar(100) DEFAULT NULL, `transaction_processor` varchar(50) DEFAULT NULL, `transaction_by` varchar(100) DEFAULT NULL, `process_status` tinyint NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=133970 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_transacttion` -- LOCK TABLES `tbl_transacttion` WRITE; /*!40000 ALTER TABLE `tbl_transacttion` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_transacttion` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_universities` -- DROP TABLE IF EXISTS `tbl_universities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_universities` ( `id` int NOT NULL AUTO_INCREMENT, `uni_name` varchar(1000) NOT NULL, `uni_domain` varchar(1000) NOT NULL, `status` tinyint NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1068 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_universities` -- LOCK TABLES `tbl_universities` WRITE; /*!40000 ALTER TABLE `tbl_universities` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_universities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_us_zipcodes` -- DROP TABLE IF EXISTS `tbl_us_zipcodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_us_zipcodes` ( `id` int NOT NULL, `zipCode` varchar(5) NOT NULL, `zipType` varchar(8) DEFAULT NULL, `postOfficeCity` varchar(20) DEFAULT NULL, `state` varchar(20) DEFAULT NULL, `stateCode` varchar(2) DEFAULT NULL, `county` varchar(39) DEFAULT NULL, `areaCode` int DEFAULT NULL, `longitude` decimal(8,4) DEFAULT NULL, `latitude` decimal(7,4) DEFAULT NULL, `population` int DEFAULT NULL, `populationDensity` int DEFAULT NULL, `housingUnits` int DEFAULT NULL, `medianHomeValue` int DEFAULT NULL, `occupiedHousingUnits` int DEFAULT NULL, `medianHouseholdIncome` int DEFAULT NULL, `waterArea` decimal(6,2) DEFAULT NULL, `landArea` decimal(7,2) DEFAULT NULL, `timezone` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`), KEY `zipCode` (`zipCode`,`postOfficeCity`,`state`,`stateCode`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_us_zipcodes` -- LOCK TABLES `tbl_us_zipcodes` WRITE; /*!40000 ALTER TABLE `tbl_us_zipcodes` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_us_zipcodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_user` -- DROP TABLE IF EXISTS `tbl_user`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_user` ( `uid` int NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `user_type` int NOT NULL, `name_title` varchar(255) NOT NULL, `fname` varchar(255) NOT NULL, `lname` varchar(255) NOT NULL, `photo` text NOT NULL, `dob` date NOT NULL, `gender` text NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `tax_certificate` int NOT NULL, `company_name` varchar(255) DEFAULT NULL, `first_address` varchar(500) NOT NULL, `house_no` varchar(255) NOT NULL, `street` varchar(255) NOT NULL, `complex` varchar(255) NOT NULL, `landmark` varchar(255) NOT NULL, `city_id` varchar(150) NOT NULL, `pincode` varchar(255) NOT NULL, `area` varchar(255) NOT NULL, `state` varchar(100) NOT NULL, `mobile` varchar(255) NOT NULL, `phone` varchar(255) NOT NULL, `second_address` varchar(500) NOT NULL, `full_address` varchar(255) DEFAULT NULL, `latitude` decimal(10,8) DEFAULT NULL, `longitude` decimal(11,8) DEFAULT NULL, `fname1` varchar(100) NOT NULL, `lname1` varchar(100) NOT NULL, `house_no1` varchar(1000) NOT NULL, `street1` varchar(1000) NOT NULL, `complex1` varchar(1000) NOT NULL, `city_id1` varchar(10) NOT NULL, `state1` varchar(200) NOT NULL, `pincode1` varchar(12) NOT NULL, `mobile1` varchar(15) NOT NULL, `email1` varchar(500) NOT NULL, `wallet_balance` double NOT NULL, `reward_points` double NOT NULL, `chef_wallet_flag` enum('1','0') NOT NULL DEFAULT '0', `chef_cash_flag` enum('1','0') NOT NULL DEFAULT '0', `chefmerchantId` varchar(255) NOT NULL, `chef_flag` enum('1','0') NOT NULL DEFAULT '0', `how_did_know` varchar(255) NOT NULL, `receivemail` tinyint NOT NULL, `register_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `save_cc` tinyint NOT NULL DEFAULT '0', `reset_date` varchar(20) NOT NULL, `ip` varchar(255) NOT NULL, `status` tinyint NOT NULL, `deleted_on` datetime DEFAULT NULL, `tab_user` tinyint DEFAULT '0', `mark_seller` tinyint DEFAULT NULL, `puja_seller` varchar(100) DEFAULT NULL, `seller_id` int DEFAULT NULL, `old_ids` varchar(1000) DEFAULT NULL, `callFrom` varchar(20) DEFAULT NULL, `appVersion` varchar(200) DEFAULT NULL, `autologout_web` tinyint(1) DEFAULT NULL, `autologout_ios` tinyint(1) DEFAULT NULL, `autologout_android` tinyint(1) DEFAULT NULL, `country_code` varchar(250) NOT NULL, `country_name` varchar(250) NOT NULL, `address_sync` int NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `id` (`id`,`user_type`,`fname`,`lname`,`email`), KEY `house_no` (`house_no`,`street`,`city_id`,`chef_flag`) ) ENGINE=InnoDB AUTO_INCREMENT=106083 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_user` -- LOCK TABLES `tbl_user` WRITE; /*!40000 ALTER TABLE `tbl_user` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_user` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_userAddress` -- DROP TABLE IF EXISTS `tbl_userAddress`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_userAddress` ( `Address_ID` int NOT NULL AUTO_INCREMENT, `user_ID` int NOT NULL, `house_no` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `street` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `complex` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `city_id` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `state` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `pincode` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `full_address` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `latitude` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `longitude` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `status` int NOT NULL, `setAsprimary` int NOT NULL, `deleted_status` int NOT NULL DEFAULT '0', `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`Address_ID`), UNIQUE KEY `full_address` (`full_address`), KEY `user_ID` (`user_ID`) ) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_userAddress` -- LOCK TABLES `tbl_userAddress` WRITE; /*!40000 ALTER TABLE `tbl_userAddress` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_userAddress` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_user_breach` -- DROP TABLE IF EXISTS `tbl_user_breach`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_user_breach` ( `uid` int NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `user_type` int NOT NULL, `name_title` varchar(255) NOT NULL, `fname` varchar(255) NOT NULL, `lname` varchar(255) NOT NULL, `photo` text NOT NULL, `dob` date NOT NULL, `gender` text NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `tax_certificate` int NOT NULL, `company_name` varchar(255) NOT NULL, `first_address` varchar(500) NOT NULL, `house_no` varchar(255) NOT NULL, `street` varchar(255) NOT NULL, `complex` varchar(255) NOT NULL, `landmark` varchar(255) NOT NULL, `city_id` varchar(150) NOT NULL, `pincode` varchar(255) NOT NULL, `area` varchar(255) NOT NULL, `state` varchar(100) NOT NULL, `mobile` varchar(255) NOT NULL, `phone` varchar(255) NOT NULL, `second_address` varchar(500) NOT NULL, `full_address` varchar(255) DEFAULT NULL, `latitude` decimal(10,8) DEFAULT NULL, `longitude` decimal(11,8) DEFAULT NULL, `fname1` varchar(100) NOT NULL, `lname1` varchar(100) NOT NULL, `house_no1` varchar(1000) NOT NULL, `street1` varchar(1000) NOT NULL, `complex1` varchar(1000) NOT NULL, `city_id1` varchar(10) NOT NULL, `state1` varchar(200) NOT NULL, `pincode1` varchar(12) NOT NULL, `mobile1` varchar(15) NOT NULL, `email1` varchar(500) NOT NULL, `wallet_balance` double NOT NULL, `reward_points` double NOT NULL, `chef_wallet_flag` enum('1','0') NOT NULL DEFAULT '0', `chef_cash_flag` enum('1','0') NOT NULL DEFAULT '0', `chefmerchantId` varchar(255) NOT NULL, `chef_flag` enum('1','0') NOT NULL DEFAULT '0', `how_did_know` varchar(255) NOT NULL, `receivemail` tinyint NOT NULL, `register_date` datetime NOT NULL, `save_cc` tinyint NOT NULL DEFAULT '0', `reset_date` varchar(20) NOT NULL, `ip` varchar(255) NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`), KEY `id` (`id`,`user_type`,`fname`,`lname`,`email`) ) ENGINE=MyISAM AUTO_INCREMENT=40430 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_user_breach` -- LOCK TABLES `tbl_user_breach` WRITE; /*!40000 ALTER TABLE `tbl_user_breach` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_user_breach` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_user_fng` -- DROP TABLE IF EXISTS `tbl_user_fng`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_user_fng` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int DEFAULT NULL, `fng_transf_id` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `user_lastfouraccno` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `created` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `status` int NOT NULL DEFAULT '1', `order_id` varchar(50) NOT NULL, `transaction_id` varchar(200) DEFAULT NULL, `transaction_type` varchar(100) DEFAULT NULL, `fng_rquest_id` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `bnk_token` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `bnk_accno_lastfour` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `bnk_name` varchar(200) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_user_fng` -- LOCK TABLES `tbl_user_fng` WRITE; /*!40000 ALTER TABLE `tbl_user_fng` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_user_fng` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_user_notifications` -- DROP TABLE IF EXISTS `tbl_user_notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_user_notifications` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `notification_id` bigint NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `status` tinyint DEFAULT '1', `usr_device_token` tinytext, `coupon_code` varchar(255) DEFAULT NULL, `msg_title` varchar(255) DEFAULT NULL, `msg_content` tinytext, `images` varchar(255) DEFAULT NULL, `expire_date` date DEFAULT NULL, `store_id` longtext, `section` varchar(500) DEFAULT NULL, `device_id` bigint DEFAULT NULL, `sub_title` varchar(500) DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=202919 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_user_notifications` -- LOCK TABLES `tbl_user_notifications` WRITE; /*!40000 ALTER TABLE `tbl_user_notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_user_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_user_np` -- DROP TABLE IF EXISTS `tbl_user_np`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_user_np` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int DEFAULT NULL, `npid` varchar(50) DEFAULT NULL, `user_cd` varchar(20) DEFAULT NULL, `created` timestamp NULL DEFAULT CURRENT_TIMESTAMP, `status` int NOT NULL DEFAULT '1', `order_id` varchar(50) NOT NULL, `transaction_id` varchar(200) DEFAULT NULL, `transaction_id1` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `rq_req_url` varchar(255) DEFAULT NULL, `re_app_tknn` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=235 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_user_np` -- LOCK TABLES `tbl_user_np` WRITE; /*!40000 ALTER TABLE `tbl_user_np` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_user_np` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_user_old` -- DROP TABLE IF EXISTS `tbl_user_old`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_user_old` ( `uid` int NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `user_type` int NOT NULL, `name_title` varchar(255) NOT NULL, `fname` varchar(255) NOT NULL, `lname` varchar(255) NOT NULL, `photo` text NOT NULL, `dob` date NOT NULL, `gender` text NOT NULL, `email` varchar(255) NOT NULL, `password` varchar(255) NOT NULL, `tax_certificate` int NOT NULL, `company_name` varchar(255) NOT NULL, `first_address` varchar(500) NOT NULL, `house_no` varchar(255) NOT NULL, `street` varchar(255) NOT NULL, `complex` varchar(255) NOT NULL, `landmark` varchar(255) NOT NULL, `city_id` varchar(150) NOT NULL, `pincode` varchar(255) NOT NULL, `area` varchar(255) NOT NULL, `state` varchar(100) NOT NULL, `mobile` varchar(255) NOT NULL, `phone` varchar(255) NOT NULL, `second_address` varchar(500) NOT NULL, `full_address` varchar(255) DEFAULT NULL, `latitude` decimal(10,8) DEFAULT NULL, `longitude` decimal(11,8) DEFAULT NULL, `fname1` varchar(100) NOT NULL, `lname1` varchar(100) NOT NULL, `house_no1` varchar(1000) NOT NULL, `street1` varchar(1000) NOT NULL, `complex1` varchar(1000) NOT NULL, `city_id1` varchar(10) NOT NULL, `state1` varchar(200) NOT NULL, `pincode1` varchar(12) NOT NULL, `mobile1` varchar(15) NOT NULL, `email1` varchar(500) NOT NULL, `wallet_balance` double NOT NULL, `reward_points` double NOT NULL, `chef_wallet_flag` enum('1','0') NOT NULL DEFAULT '0', `chef_cash_flag` enum('1','0') NOT NULL DEFAULT '0', `chefmerchantId` varchar(255) NOT NULL, `chef_flag` enum('1','0') NOT NULL DEFAULT '0', `how_did_know` varchar(255) NOT NULL, `receivemail` tinyint NOT NULL, `register_date` datetime NOT NULL, `save_cc` tinyint NOT NULL DEFAULT '0', `reset_date` varchar(20) NOT NULL, `ip` varchar(255) NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=33766 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_user_old` -- LOCK TABLES `tbl_user_old` WRITE; /*!40000 ALTER TABLE `tbl_user_old` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_user_old` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_wallet` -- DROP TABLE IF EXISTS `tbl_wallet`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_wallet` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `order_id` int NOT NULL, `storeid` varchar(50) NOT NULL, `wallet_balance` varchar(110) NOT NULL, `type` enum('Dr','Cr') NOT NULL, `added_date` datetime NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=116 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_wallet` -- LOCK TABLES `tbl_wallet` WRITE; /*!40000 ALTER TABLE `tbl_wallet` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_wallet` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_wishlist` -- DROP TABLE IF EXISTS `tbl_wishlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_wishlist` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `product_id` int NOT NULL, `added_date` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4347 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_wishlist` -- LOCK TABLES `tbl_wishlist` WRITE; /*!40000 ALTER TABLE `tbl_wishlist` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_wishlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_zee5_coupons` -- DROP TABLE IF EXISTS `tbl_zee5_coupons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_zee5_coupons` ( `id` int NOT NULL AUTO_INCREMENT, `coupon` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `amount` int NOT NULL, `valid_time` int NOT NULL DEFAULT '1', `user_id` int DEFAULT NULL, `assign_datetime` datetime DEFAULT NULL, `is_active` tinyint(1) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `coupon` (`coupon`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=25055 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_zee5_coupons` -- LOCK TABLES `tbl_zee5_coupons` WRITE; /*!40000 ALTER TABLE `tbl_zee5_coupons` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_zee5_coupons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tbl_zipe_to_zone` -- DROP TABLE IF EXISTS `tbl_zipe_to_zone`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tbl_zipe_to_zone` ( `store_id` int NOT NULL, `zipe_code` varchar(20) NOT NULL, `zone` int NOT NULL, `status` enum('Active','InActive') DEFAULT 'Active' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tbl_zipe_to_zone` -- LOCK TABLES `tbl_zipe_to_zone` WRITE; /*!40000 ALTER TABLE `tbl_zipe_to_zone` DISABLE KEYS */; /*!40000 ALTER TABLE `tbl_zipe_to_zone` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tlog_process_log` -- DROP TABLE IF EXISTS `tlog_process_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tlog_process_log` ( `id` bigint NOT NULL AUTO_INCREMENT, `tlog_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `file_name` varchar(1000) DEFAULT NULL, `no_of_records` int DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=591 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tlog_process_log` -- LOCK TABLES `tlog_process_log` WRITE; /*!40000 ALTER TABLE `tlog_process_log` DISABLE KEYS */; /*!40000 ALTER TABLE `tlog_process_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tlog_process_log_24` -- DROP TABLE IF EXISTS `tlog_process_log_24`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tlog_process_log_24` ( `id` bigint NOT NULL AUTO_INCREMENT, `tlog_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `file_name` varchar(1000) DEFAULT NULL, `no_of_records` int DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=478 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tlog_process_log_24` -- LOCK TABLES `tlog_process_log_24` WRITE; /*!40000 ALTER TABLE `tlog_process_log_24` DISABLE KEYS */; /*!40000 ALTER TABLE `tlog_process_log_24` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tlog_process_log_bkp_v25` -- DROP TABLE IF EXISTS `tlog_process_log_bkp_v25`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tlog_process_log_bkp_v25` ( `id` bigint NOT NULL AUTO_INCREMENT, `tlog_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `file_name` varchar(1000) DEFAULT NULL, `no_of_records` int DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=82 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tlog_process_log_bkp_v25` -- LOCK TABLES `tlog_process_log_bkp_v25` WRITE; /*!40000 ALTER TABLE `tlog_process_log_bkp_v25` DISABLE KEYS */; /*!40000 ALTER TABLE `tlog_process_log_bkp_v25` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tmp_dataupdate_zifiti` -- DROP TABLE IF EXISTS `tmp_dataupdate_zifiti`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tmp_dataupdate_zifiti` ( `upc` varchar(500) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `price` double DEFAULT NULL, `quantity` int DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tmp_dataupdate_zifiti` -- LOCK TABLES `tmp_dataupdate_zifiti` WRITE; /*!40000 ALTER TABLE `tmp_dataupdate_zifiti` DISABLE KEYS */; /*!40000 ALTER TABLE `tmp_dataupdate_zifiti` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tmp_pinecone_sync` -- DROP TABLE IF EXISTS `tmp_pinecone_sync`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tmp_pinecone_sync` ( `id` bigint NOT NULL AUTO_INCREMENT, `pid` int NOT NULL, PRIMARY KEY (`id`), KEY `pid` (`pid`) ) ENGINE=InnoDB AUTO_INCREMENT=196606 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tmp_pinecone_sync` -- LOCK TABLES `tmp_pinecone_sync` WRITE; /*!40000 ALTER TABLE `tmp_pinecone_sync` DISABLE KEYS */; /*!40000 ALTER TABLE `tmp_pinecone_sync` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tmp_tbl_recipe` -- DROP TABLE IF EXISTS `tmp_tbl_recipe`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tmp_tbl_recipe` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `recipe_name` varchar(255) DEFAULT NULL, `category` int NOT NULL, `description` varchar(500) DEFAULT NULL, `tags` varchar(255) DEFAULT NULL, `veg_non_veg` int NOT NULL, `variation` text, `photo` text NOT NULL, `recipe_slug` varchar(500) NOT NULL, `serve_qty` varchar(255) DEFAULT NULL, `prepretion_time` varchar(255) DEFAULT NULL, `cooking_time` varchar(255) DEFAULT NULL, `recipe_type` varchar(255) DEFAULT NULL, `pre_method` varchar(255) DEFAULT NULL, `holiday_special` varchar(255) DEFAULT NULL, `additional_note` varchar(255) DEFAULT NULL, `status` enum('1','0') NOT NULL DEFAULT '0', `entry` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `video` text, `health_benifits` text, `recipe_notes` text, `pre_cooking_tips` text, `nutrition` text, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=147 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tmp_tbl_recipe` -- LOCK TABLES `tmp_tbl_recipe` WRITE; /*!40000 ALTER TABLE `tmp_tbl_recipe` DISABLE KEYS */; /*!40000 ALTER TABLE `tmp_tbl_recipe` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `uber_inventory` -- DROP TABLE IF EXISTS `uber_inventory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `uber_inventory` ( `id` int NOT NULL AUTO_INCREMENT, `lookup_code` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `store_identifier` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` double DEFAULT NULL, `brand_name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `item_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost_unit` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `size` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `size_uom` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `balance_on_hand` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `available` tinyint NOT NULL DEFAULT '0', `par_weight` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `department` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `aisle` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `item_details` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `remote_image_URL` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `additional_images_url` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `store_id` int DEFAULT NULL, `create_at` timestamp NULL DEFAULT NULL, `updtaed_at` timestamp NULL DEFAULT NULL, `status` tinyint DEFAULT '1', `ubr_store_id` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `lookup_code` (`lookup_code`), KEY `store_identifier` (`store_identifier`) ) ENGINE=InnoDB AUTO_INCREMENT=201142 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `uber_inventory` -- LOCK TABLES `uber_inventory` WRITE; /*!40000 ALTER TABLE `uber_inventory` DISABLE KEYS */; /*!40000 ALTER TABLE `uber_inventory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `uber_stores` -- DROP TABLE IF EXISTS `uber_stores`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `uber_stores` ( `uid` varchar(10) DEFAULT NULL, `storeid` int NOT NULL AUTO_INCREMENT, `store_ref_id` int DEFAULT NULL, `catid` varchar(10000) DEFAULT NULL, `sectionid` varchar(500) DEFAULT NULL, `storename` varchar(250) DEFAULT NULL, `BT_storename` varchar(500) DEFAULT NULL, `bt_merchant_type` varchar(50) DEFAULT NULL, `slug` varchar(500) DEFAULT NULL, `photo` varchar(500) DEFAULT NULL, `storeaddress` varchar(2500) DEFAULT NULL, `state` char(50) DEFAULT NULL, `city` varchar(100) DEFAULT NULL, `zip` varchar(8) DEFAULT NULL, `email` varchar(100) DEFAULT NULL, `phone` varchar(15) DEFAULT NULL, `post_date` datetime DEFAULT NULL, `status` int DEFAULT NULL, `open_time` time DEFAULT NULL, `close_time` time DEFAULT NULL, `by_pass_zipcode` bit(1) NOT NULL DEFAULT b'0', PRIMARY KEY (`storeid`), UNIQUE KEY `storeid` (`storeid`), KEY `storeid_2` (`storeid`), KEY `sectionid` (`sectionid`), KEY `status` (`status`), KEY `storename` (`storename`,`BT_storename`), KEY `photo` (`photo`), KEY `catid` (`catid`(767)), KEY `slug` (`slug`) ) ENGINE=InnoDB AUTO_INCREMENT=152 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `uber_stores` -- LOCK TABLES `uber_stores` WRITE; /*!40000 ALTER TABLE `uber_stores` DISABLE KEYS */; /*!40000 ALTER TABLE `uber_stores` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_change_subscription_order_item` -- DROP TABLE IF EXISTS `user_change_subscription_order_item`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_change_subscription_order_item` ( `id` int NOT NULL AUTO_INCREMENT, `subs_id` int NOT NULL, `product_change_date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `product_id` int NOT NULL, `product_addonid` varchar(255) NOT NULL, `addon_qty` varchar(100) NOT NULL, `product_addon_sizeids` varchar(500) DEFAULT NULL, `addon_names` varchar(2000) NOT NULL, `product_order_date` date NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_change_subscription_order_item` -- LOCK TABLES `user_change_subscription_order_item` WRITE; /*!40000 ALTER TABLE `user_change_subscription_order_item` DISABLE KEYS */; /*!40000 ALTER TABLE `user_change_subscription_order_item` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_prods_history` -- DROP TABLE IF EXISTS `user_prods_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_prods_history` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `section_id` int NOT NULL, `store_id` int NOT NULL, `cat_id` int NOT NULL, `prod_id` int NOT NULL, `weight` int NOT NULL, `last_updated_on` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=90558 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_prods_history` -- LOCK TABLES `user_prods_history` WRITE; /*!40000 ALTER TABLE `user_prods_history` DISABLE KEYS */; /*!40000 ALTER TABLE `user_prods_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_section_history` -- DROP TABLE IF EXISTS `user_section_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_section_history` ( `id` int NOT NULL AUTO_INCREMENT, `user_id` int NOT NULL, `section_id` int NOT NULL, `weight` int NOT NULL, `last_updated_on` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=20165 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_section_history` -- LOCK TABLES `user_section_history` WRITE; /*!40000 ALTER TABLE `user_section_history` DISABLE KEYS */; /*!40000 ALTER TABLE `user_section_history` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_subscription` -- DROP TABLE IF EXISTS `user_subscription`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_subscription` ( `sub_id` int NOT NULL AUTO_INCREMENT, `order_id` int NOT NULL, `userid` int NOT NULL, `subscription_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `subscription_status` int NOT NULL, `subscription_cancel_date` datetime NOT NULL, `reason_for_cancel` varchar(1000) NOT NULL, `next_order_date` date NOT NULL, PRIMARY KEY (`sub_id`), KEY `sub_id` (`sub_id`,`order_id`,`userid`,`subscription_status`) ) ENGINE=InnoDB AUTO_INCREMENT=1197 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_subscription` -- LOCK TABLES `user_subscription` WRITE; /*!40000 ALTER TABLE `user_subscription` DISABLE KEYS */; /*!40000 ALTER TABLE `user_subscription` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_subscription_order_details` -- DROP TABLE IF EXISTS `user_subscription_order_details`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_subscription_order_details` ( `id` int NOT NULL AUTO_INCREMENT, `subs_id` int NOT NULL, `order_id` int NOT NULL, `store_id` int NOT NULL, `subscription_type` varchar(200) NOT NULL, `section` varchar(200) NOT NULL, `product_id` int NOT NULL, `qty` int NOT NULL, `product_name` varchar(255) NOT NULL, `add_on_ids` varchar(500) NOT NULL, `add_on_qtys` varchar(500) NOT NULL, `add_on_sizeids` varchar(500) DEFAULT NULL, `add_on_names` varchar(2000) NOT NULL, `mrp_price` varchar(500) NOT NULL, `selling_price` double NOT NULL, `discount` int NOT NULL, `tax_method` varchar(50) NOT NULL, `tax_value` double NOT NULL, `delivery_type` varchar(250) DEFAULT NULL, PRIMARY KEY (`id`), KEY `subs_id` (`subs_id`,`order_id`,`store_id`,`subscription_type`,`section`,`product_id`), KEY `subscription_type` (`subscription_type`,`product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1178 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_subscription_order_details` -- LOCK TABLES `user_subscription_order_details` WRITE; /*!40000 ALTER TABLE `user_subscription_order_details` DISABLE KEYS */; /*!40000 ALTER TABLE `user_subscription_order_details` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_subscription_skip_table` -- DROP TABLE IF EXISTS `user_subscription_skip_table`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_subscription_skip_table` ( `id` int NOT NULL AUTO_INCREMENT, `subs_id` int NOT NULL, `product_id` int NOT NULL, `skip_sataus` int NOT NULL, `skip_order_date` date NOT NULL, `skip_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=946 DEFAULT CHARSET=utf8mb3; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `user_subscription_skip_table` -- LOCK TABLES `user_subscription_skip_table` WRITE; /*!40000 ALTER TABLE `user_subscription_skip_table` DISABLE KEYS */; /*!40000 ALTER TABLE `user_subscription_skip_table` 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(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `email` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `remember_token` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `device` varchar(50) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_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 */; /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wholesale_categoryimage` -- DROP TABLE IF EXISTS `wholesale_categoryimage`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wholesale_categoryimage` ( `id` int NOT NULL AUTO_INCREMENT, `cat_id` int NOT NULL, `photo` varchar(255) NOT NULL, `icon` varchar(255) NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=22 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wholesale_categoryimage` -- LOCK TABLES `wholesale_categoryimage` WRITE; /*!40000 ALTER TABLE `wholesale_categoryimage` DISABLE KEYS */; /*!40000 ALTER TABLE `wholesale_categoryimage` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wholesale_maincategory` -- DROP TABLE IF EXISTS `wholesale_maincategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wholesale_maincategory` ( `uid` varchar(500) NOT NULL, `storeid` longtext NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `parent_id` int NOT NULL, `maincategory` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `group_id` int NOT NULL DEFAULT '0', `mainid` int NOT NULL, `h1` varchar(10000) NOT NULL, `meta_title` varchar(500) NOT NULL, `meta_keywords` varchar(500) NOT NULL, `meta_description` text NOT NULL, `content` mediumtext NOT NULL, `showforusps` int NOT NULL, `status` tinyint NOT NULL, `sort_order` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4444 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wholesale_maincategory` -- LOCK TABLES `wholesale_maincategory` WRITE; /*!40000 ALTER TABLE `wholesale_maincategory` DISABLE KEYS */; /*!40000 ALTER TABLE `wholesale_maincategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wholesale_product` -- DROP TABLE IF EXISTS `wholesale_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wholesale_product` ( `uid` int NOT NULL DEFAULT '10', `storeid` varchar(255) NOT NULL, `id` int NOT NULL AUTO_INCREMENT, `categories` varchar(255) NOT NULL, `cat_id` int NOT NULL, `subcat_id` int NOT NULL, `childsubcat_id` int NOT NULL, `gchildsubcat_id` int NOT NULL, `brand_id` int NOT NULL, `addon` varchar(100) NOT NULL, `product_ref_id` varchar(100) NOT NULL, `product_name` varchar(255) NOT NULL, `product_code` varchar(255) NOT NULL, `photo` varchar(255) NOT NULL, `description` text NOT NULL, `ingredients` text NOT NULL, `how_to_use` text NOT NULL, `nutritional_facts` text NOT NULL, `meta_title` text NOT NULL, `meta_keywords` text NOT NULL, `meta_description` text NOT NULL, `latest` int NOT NULL, `display_order` int NOT NULL DEFAULT '20', `posted_by` int NOT NULL, `posted_date` datetime NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=8723 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wholesale_product` -- LOCK TABLES `wholesale_product` WRITE; /*!40000 ALTER TABLE `wholesale_product` DISABLE KEYS */; /*!40000 ALTER TABLE `wholesale_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wholesale_productprice` -- DROP TABLE IF EXISTS `wholesale_productprice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wholesale_productprice` ( `id` int NOT NULL AUTO_INCREMENT, `product_id` int NOT NULL, `purchase_price` varchar(10) NOT NULL, `sizes` varchar(255) NOT NULL, `size` varchar(255) NOT NULL, `size_type` varchar(1000) NOT NULL, `weight` varchar(10) NOT NULL, `wholesale_min` int NOT NULL, `wholesale_discount` varchar(100) NOT NULL, `wholesale_discount1` varchar(100) NOT NULL, `wholesale_discount2` varchar(100) NOT NULL, `wholesale_discount3` varchar(100) NOT NULL, `wholesale_unit` varchar(100) NOT NULL, `actual_price` double NOT NULL, `mrp_price` double NOT NULL, `tax_exempt` int NOT NULL, `tax` varchar(10) NOT NULL, `tax_method` varchar(50) NOT NULL, `tax_value` varchar(10) NOT NULL DEFAULT '0', `discount` double NOT NULL, `sell_price` double NOT NULL, `in_stock` tinyint NOT NULL, `pphoto` varchar(255) NOT NULL, `barcode` varchar(255) NOT NULL, `barcode_number` varchar(500) NOT NULL, `video` text NOT NULL, `display_order` int NOT NULL DEFAULT '5', `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=8637 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wholesale_productprice` -- LOCK TABLES `wholesale_productprice` WRITE; /*!40000 ALTER TABLE `wholesale_productprice` DISABLE KEYS */; /*!40000 ALTER TABLE `wholesale_productprice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wholesale_setting` -- DROP TABLE IF EXISTS `wholesale_setting`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wholesale_setting` ( `id` int NOT NULL AUTO_INCREMENT, `landline` varchar(255) NOT NULL, `mobile` varchar(255) NOT NULL, `shippingamount` double NOT NULL, `expressdeliveryamount` double NOT NULL, `minorderamount` double NOT NULL, `rewardamount` double NOT NULL, `show_slot` int NOT NULL, `address` text NOT NULL, `status` tinyint NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wholesale_setting` -- LOCK TABLES `wholesale_setting` WRITE; /*!40000 ALTER TABLE `wholesale_setting` DISABLE KEYS */; /*!40000 ALTER TABLE `wholesale_setting` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wholesale_stores` -- DROP TABLE IF EXISTS `wholesale_stores`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `wholesale_stores` ( `uid` varchar(5655) NOT NULL, `storeid` int NOT NULL AUTO_INCREMENT, `catid` longtext NOT NULL, `storetype` varchar(500) NOT NULL, `storename` varchar(250) NOT NULL, `BT_storename` varchar(500) NOT NULL, `chargeable` varchar(100) NOT NULL, `photo` varchar(500) NOT NULL, `storeaddress` varchar(2500) NOT NULL, `state` char(50) NOT NULL, `city` varchar(100) NOT NULL, `zip` longtext NOT NULL, `zone2` mediumtext NOT NULL, `zone3` mediumtext NOT NULL, `zone4` varchar(500) NOT NULL, `zone5` varchar(10000) NOT NULL, `email` varchar(100) NOT NULL, `phone` int NOT NULL, `in_stock` int NOT NULL, `fee` double NOT NULL, `commission` double DEFAULT NULL, `special_commission` varchar(10) NOT NULL, `minimum` int NOT NULL, `fee_special` varchar(10) NOT NULL, `minimum_special` varchar(10) NOT NULL, `hour` int NOT NULL, `minute` int NOT NULL, `area` longtext NOT NULL, `description` varchar(5000) NOT NULL, `meta_title` varchar(300) NOT NULL, `meta_keyword` mediumtext NOT NULL, `meta_description` varchar(1000) NOT NULL, `content` mediumtext NOT NULL, `post_date` datetime NOT NULL, `status` int DEFAULT NULL, PRIMARY KEY (`storeid`), UNIQUE KEY `storeid` (`storeid`) ) ENGINE=InnoDB AUTO_INCREMENT=113 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wholesale_stores` -- LOCK TABLES `wholesale_stores` WRITE; /*!40000 ALTER TABLE `wholesale_stores` DISABLE KEYS */; /*!40000 ALTER TABLE `wholesale_stores` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zifiti_update` -- DROP TABLE IF EXISTS `zifiti_update`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `zifiti_update` ( `id` int NOT NULL AUTO_INCREMENT, `upc` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `price` varchar(100) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `quantity` int DEFAULT NULL, `title` varchar(255) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci DEFAULT NULL, `updateDateTime` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zifiti_update` -- LOCK TABLES `zifiti_update` WRITE; /*!40000 ALTER TABLE `zifiti_update` DISABLE KEYS */; /*!40000 ALTER TABLE `zifiti_update` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `zipcode_prods_history` -- DROP TABLE IF EXISTS `zipcode_prods_history`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `zipcode_prods_history` ( `id` int NOT NULL AUTO_INCREMENT, `zipcode` varchar(20) NOT NULL, `section_id` int NOT NULL, `store_id` int NOT NULL, `cat_id` int NOT NULL, `prod_id` int NOT NULL, `weight` int NOT NULL, `last_updated_on` datetime NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=1036 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `zipcode_prods_history` -- LOCK TABLES `zipcode_prods_history` WRITE; /*!40000 ALTER TABLE `zipcode_prods_history` DISABLE KEYS */; /*!40000 ALTER TABLE `zipcode_prods_history` 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 2026-01-28 10:10:22 Save