????PK!Bmmbackup/database_v9.0.sqlnu[-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Apr 23, 2022 at 01:05 PM -- Server version: 5.7.34 -- PHP Version: 8.0.8 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_db` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` int(10) UNSIGNED DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1}]', '2020-10-11 07:53:02', '2021-06-10 21:16:25'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2022-04-23 13:05:05'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2022-04-23 13:05:05'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\"}', '2020-10-11 13:53:02', '2021-05-25 21:43:11'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2022-04-23 13:05:05'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2022-04-23 13:05:05'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0', `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `seller_id` bigint(20) NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (16, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (38, 'Fuchsia', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (93, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_amount` double NOT NULL DEFAULT '0', `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(8,2) NOT NULL DEFAULT '0.00', `tax` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `images` longtext COLLATE utf8mb4_unicode_ci, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0); -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `transaction_note` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `delivery_men_phone_unique` (`phone`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=74; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=166; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!|backup/old-database.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: May 16, 2024 at 03:54 AM -- Server version: 5.7.39 -- PHP Version: 8.2.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_install` -- -- -------------------------------------------------------- -- -- Table structure for table `addon_settings` -- CREATE TABLE `addon_settings` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `key_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `live_values` longtext COLLATE utf8mb4_unicode_ci, `test_values` longtext COLLATE utf8mb4_unicode_ci, `settings_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'live', `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `addon_settings` -- INSERT INTO `addon_settings` (`id`, `key_name`, `live_values`, `test_values`, `settings_type`, `mode`, `is_active`, `created_at`, `updated_at`, `additional_data`) VALUES ('070c6bbd-d777-11ed-96f4-0c7a158e4469', 'twilio', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:29', NULL), ('070c766c-d777-11ed-96f4-0c7a158e4469', '2factor', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:36', NULL), ('0d8a9308-d6a5-11ed-962c-0c7a158e4469', 'mercadopago', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-27 11:57:11', '{\"gateway_title\":\"Mercadopago\",\"gateway_image\":null}'), ('0d8a9e49-d6a5-11ed-962c-0c7a158e4469', 'liqpay', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:31', '{\"gateway_title\":\"Liqpay\",\"gateway_image\":null}'), ('101befdf-d44b-11ed-8564-0c7a158e4469', 'paypal', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:41:32', '{\"gateway_title\":\"Paypal\",\"gateway_image\":null}'), ('133d9647-cabb-11ed-8fec-0c7a158e4469', 'hyper_pay', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:42', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('1821029f-d776-11ed-96f4-0c7a158e4469', 'msg91', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:48', NULL), ('18210f2b-d776-11ed-96f4-0c7a158e4469', 'nexmo', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('18fbb21f-d6ad-11ed-962c-0c7a158e4469', 'foloosi', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:33', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('2767d142-d6a1-11ed-962c-0c7a158e4469', 'paytm', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-22 06:30:55', '{\"gateway_title\":\"Paytm\",\"gateway_image\":null}'), ('3201d2e6-c937-11ed-a424-0c7a158e4469', 'amazon_pay', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:07', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('4593b25c-d6a1-11ed-962c-0c7a158e4469', 'paytabs', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:51', '{\"gateway_title\":\"Paytabs\",\"gateway_image\":null}'), ('4e9b8dfb-e7d1-11ed-a559-0c7a158e4469', 'bkash', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:39:42', '{\"gateway_title\":\"Bkash\",\"gateway_image\":null}'), ('544a24a4-c872-11ed-ac7a-0c7a158e4469', 'fatoorah', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:24', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('58c1bc8a-d6ac-11ed-962c-0c7a158e4469', 'ccavenue', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:42:38', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-643783f01d386.png\"}'), ('5e2d2ef9-d6ab-11ed-962c-0c7a158e4469', 'thawani', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:40', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-64378f9856f29.png\"}'), ('60cc83cc-d5b9-11ed-b56f-0c7a158e4469', 'sixcash', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:16:17', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-12-6436774e77ff9.png\"}'), ('68579846-d8e8-11ed-8249-0c7a158e4469', 'alphanet_sms', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('6857a2e8-d8e8-11ed-8249-0c7a158e4469', 'sms_to', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('74c30c00-d6a6-11ed-962c-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:37:43', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('74e46b0a-d6aa-11ed-962c-0c7a158e4469', 'tap', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:09', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('761ca96c-d1eb-11ed-87ca-0c7a158e4469', 'swish', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('7b1c3c5f-d2bd-11ed-b485-0c7a158e4469', 'payfast', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:13', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('8592417b-d1d1-11ed-a984-0c7a158e4469', 'esewa', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:38', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('9162a1dc-cdf1-11ed-affe-0c7a158e4469', 'viva_wallet', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', 'payment_config', 'test', 0, NULL, NULL, NULL), ('998ccc62-d6a0-11ed-962c-0c7a158e4469', 'stripe', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:55', '{\"gateway_title\":\"Stripe\",\"gateway_image\":null}'), ('a3313755-c95d-11ed-b1db-0c7a158e4469', 'iyzi_pay', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a76c8993-d299-11ed-b485-0c7a158e4469', 'momo', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', 'payment_config', 'live', 0, NULL, '2023-08-30 04:19:28', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a8608119-cc76-11ed-9bca-0c7a158e4469', 'moncash', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:34', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('ad5af1c1-d6a2-11ed-962c-0c7a158e4469', 'razor_pay', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:00', '{\"gateway_title\":\"Razor pay\",\"gateway_image\":null}'), ('ad5b02a0-d6a2-11ed-962c-0c7a158e4469', 'senang_pay', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', 'payment_config', 'test', 0, NULL, '2023-08-27 09:58:57', '{\"gateway_title\":\"Senang pay\",\"gateway_image\":null}'), ('b6c333f6-d8e9-11ed-8249-0c7a158e4469', 'akandit_sms', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b6c33c87-d8e9-11ed-8249-0c7a158e4469', 'global_sms', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b8992bd4-d6a0-11ed-962c-0c7a158e4469', 'paymob_accept', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', 'payment_config', 'test', 0, NULL, NULL, '{\"gateway_title\":\"Paymob accept\",\"gateway_image\":null}'), ('c41c0dcd-d119-11ed-9f67-0c7a158e4469', 'maxicash', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:49:15', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('c9249d17-cd60-11ed-b879-0c7a158e4469', 'pvit', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', 'payment_config', 'test', 0, NULL, NULL, NULL), ('cb0081ce-d775-11ed-96f4-0c7a158e4469', 'releans', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('d4f3f5f1-d6a0-11ed-962c-0c7a158e4469', 'flutterwave', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:41:03', '{\"gateway_title\":\"Flutterwave\",\"gateway_image\":null}'), ('d822f1a5-c864-11ed-ac7a-0c7a158e4469', 'paystack', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:45', '{\"gateway_title\":\"Paystack\",\"gateway_image\":null}'), ('daec8d59-c893-11ed-ac7a-0c7a158e4469', 'xendit', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:46', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('dc0f5fc9-d6a5-11ed-962c-0c7a158e4469', 'worldpay', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:26', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('e0450278-d8eb-11ed-8249-0c7a158e4469', 'signal_wire', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('e0450b40-d8eb-11ed-8249-0c7a158e4469', 'paradox', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-09-10 01:14:01', NULL), ('ea346efe-cdda-11ed-affe-0c7a158e4469', 'ssl_commerz', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:43:49', '{\"gateway_title\":\"Ssl commerz\",\"gateway_image\":null}'), ('eed88336-d8ec-11ed-8249-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149c546-d8ea-11ed-8249-0c7a158e4469', 'viatech', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149cd9c-d8ea-11ed-8249-0c7a158e4469', '019_sms', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `add_fund_bonus_categories` -- CREATE TABLE `add_fund_bonus_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `bonus_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `min_add_money_amount` double(14,2) NOT NULL DEFAULT '0.00', `max_bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `start_date_time` datetime DEFAULT NULL, `end_date_time` datetime DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `identify_image` text COLLATE utf8mb4_unicode_ci, `identify_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identify_number` int(11) DEFAULT NULL, `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button_text` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `background_color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1,\"default\":true}]', '2020-10-11 07:53:02', '2023-10-13 11:34:53'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2023-01-10 05:51:56'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\",\"primary_light\":\"#CFDFFB\"}', '2020-10-11 13:53:02', '2024-05-16 03:52:50'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (59, 'forgot_password_verification', 'email', NULL, NULL), (61, 'stock_limit', '10', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (87, 'refund-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (88, 'return-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (89, 'cancellation-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (90, 'offline_payment', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (91, 'temporary_close', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (92, 'vacation_add', '{\"status\":0,\"vacation_start_date\":null,\"vacation_end_date\":null,\"vacation_note\":null}', NULL, '2023-03-04 06:25:36'), (93, 'cookie_setting', '{\"status\":0,\"cookie_text\":null}', NULL, '2023-03-04 06:25:36'), (94, 'maximum_otp_hit', '0', NULL, '2023-06-13 13:04:49'), (95, 'otp_resend_time', '0', NULL, '2023-06-13 13:04:49'), (96, 'temporary_block_time', '0', NULL, '2023-06-13 13:04:49'), (97, 'maximum_login_hit', '0', NULL, '2023-06-13 13:04:49'), (98, 'temporary_login_block_time', '0', NULL, '2023-06-13 13:04:49'), (104, 'apple_login', '[{\"login_medium\":\"apple\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":0,\"team_id\":\"\",\"key_id\":\"\",\"service_file\":\"\",\"redirect_url\":\"\"}]', NULL, '2023-10-13 05:34:53'), (105, 'ref_earning_status', '0', NULL, '2023-10-13 05:34:53'), (106, 'ref_earning_exchange_rate', '0', NULL, '2023-10-13 05:34:53'), (107, 'guest_checkout', '0', NULL, '2023-10-13 11:34:53'), (108, 'minimum_order_amount', '0', NULL, '2023-10-13 11:34:53'), (109, 'minimum_order_amount_by_seller', '0', NULL, '2023-10-13 11:34:53'), (110, 'minimum_order_amount_status', '0', NULL, '2023-10-13 11:34:53'), (111, 'admin_login_url', 'admin', NULL, '2023-10-13 11:34:53'), (112, 'employee_login_url', 'employee', NULL, '2023-10-13 11:34:53'), (113, 'free_delivery_status', '0', NULL, '2023-10-13 11:34:53'), (114, 'free_delivery_responsibility', 'admin', NULL, '2023-10-13 11:34:53'), (115, 'free_delivery_over_amount', '0', NULL, '2023-10-13 11:34:53'), (116, 'free_delivery_over_amount_seller', '0', NULL, '2023-10-13 11:34:53'), (117, 'add_funds_to_wallet', '0', NULL, '2023-10-13 11:34:53'), (118, 'minimum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (119, 'maximum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (120, 'user_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (121, 'seller_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (122, 'delivery_man_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (123, 'whatsapp', '{\"status\":1,\"phone\":\"00000000000\"}', NULL, '2023-10-13 11:34:53'), (124, 'currency_symbol_position', 'left', NULL, '2023-10-13 11:34:53'), (148, 'company_reliability', '[{\"item\":\"delivery_info\",\"title\":\"Fast Delivery all across the country\",\"image\":\"\",\"status\":1},{\"item\":\"safe_payment\",\"title\":\"Safe Payment\",\"image\":\"\",\"status\":1},{\"item\":\"return_policy\",\"title\":\"7 Days Return Policy\",\"image\":\"\",\"status\":1},{\"item\":\"authentic_product\",\"title\":\"100% Authentic Products\",\"image\":\"\",\"status\":1}]', NULL, NULL), (149, 'react_setup', '{\"status\":0,\"react_license_code\":\"\",\"react_domain\":\"\",\"react_platform\":\"\"}', NULL, '2024-01-09 04:05:15'), (150, 'app_activation', '{\"software_id\":\"\",\"is_active\":0}', NULL, '2024-01-09 04:05:15'), (151, 'shop_banner', '', NULL, '2023-10-13 11:34:53'), (152, 'map_api_status', '1', NULL, '2024-03-27 03:12:32'), (153, 'vendor_registration_header', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (154, 'vendor_registration_sell_with_us', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (155, 'business_process_step', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (156, 'business_process_main_section', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (157, 'download_vendor_app', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (158, 'brand_list_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (159, 'category_list_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (160, 'vendor_list_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (161, 'flash_deal_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (162, 'featured_product_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (163, 'feature_deal_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (164, 'new_arrival_product_list_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (165, 'top_vendor_list_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (166, 'category_wise_product_list_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (167, 'top_rated_product_list_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (168, 'best_selling_product_list_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (169, 'searched_product_list_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'), (170, 'vendor_product_list_priority', '', '2024-05-16 03:52:50', '2024-05-16 03:52:50'); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `is_checked` tinyint(1) NOT NULL DEFAULT '0', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0', `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `notification_receiver` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'admin, seller, customer, deliveryman', `seen_notification` tinyint(1) DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `seller_id` bigint(20) DEFAULT NULL COMMENT 'NULL=in-house, 0=all seller', `customer_id` bigint(20) DEFAULT NULL COMMENT '0 = all customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT '0.00', `cash_in_hand` decimal(50,2) NOT NULL DEFAULT '0.00', `pending_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `total_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT '0.00', `credit` decimal(50,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `is_online` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `digital_product_otp_verifications` -- CREATE TABLE `digital_product_otp_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `email_templates` -- CREATE TABLE `email_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `template_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `user_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `template_design_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `body` text COLLATE utf8mb4_unicode_ci, `banner_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `footer_text` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `copyright_text` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pages` json DEFAULT NULL, `social_media` json DEFAULT NULL, `hide_field` json DEFAULT NULL, `button_content_status` tinyint(4) NOT NULL DEFAULT '1', `product_information_status` tinyint(4) NOT NULL DEFAULT '1', `order_information_status` tinyint(4) NOT NULL DEFAULT '1', `status` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `guest_users` -- CREATE TABLE `guest_users` ( `id` bigint(20) UNSIGNED NOT NULL, `ip_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fcm_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `guest_users` -- INSERT INTO `guest_users` (`id`, `ip_address`, `fcm_token`, `created_at`, `updated_at`) VALUES (1, '::1', NULL, '2024-02-19 08:35:50', NULL), (2, '::1', NULL, '2024-03-27 03:10:49', NULL), (3, '::1', NULL, '2024-03-27 03:12:35', NULL), (4, '::1', NULL, '2024-05-16 03:52:53', NULL); -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68), (195, '2022_12_17_035723_few_field_add_to_coupons_table', 69), (196, '2022_12_26_231606_add_coupon_discount_bearer_and_admin_commission_to_orders', 69), (197, '2023_01_04_003034_alter_billing_addresses_change_zip', 69), (198, '2023_01_05_121600_change_id_to_transactions_table', 69), (199, '2023_02_02_113330_create_product_tag_table', 70), (200, '2023_02_02_114518_create_tags_table', 70), (201, '2023_02_02_152248_add_tax_model_to_products_table', 70), (202, '2023_02_02_152718_add_tax_model_to_order_details_table', 70), (203, '2023_02_02_171034_add_tax_type_to_carts', 70), (204, '2023_02_06_124447_add_color_image_column_to_products_table', 70), (205, '2023_02_07_120136_create_withdrawal_methods_table', 70), (206, '2023_02_07_175939_add_withdrawal_method_id_and_withdrawal_method_fields_to_withdraw_requests_table', 70), (207, '2023_02_08_143314_add_vacation_start_and_vacation_end_and_vacation_not_column_to_shops_table', 70), (208, '2023_02_09_104656_add_payment_by_and_payment_not_to_orders_table', 70), (209, '2023_03_27_150723_add_expires_at_to_phone_or_email_verifications', 71), (210, '2023_04_17_095721_create_shop_followers_table', 71), (211, '2023_04_17_111249_add_bottom_banner_to_shops_table', 71), (212, '2023_04_20_125423_create_product_compares_table', 71), (213, '2023_04_30_165642_add_category_sub_category_and_sub_sub_category_add_in_product_table', 71), (214, '2023_05_16_131006_add_expires_at_to_password_resets', 71), (215, '2023_05_17_044243_add_visit_count_to_tags_table', 71), (216, '2023_05_18_000403_add_title_and_subtitle_and_background_color_and_button_text_to_banners_table', 71), (217, '2023_05_21_111300_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_users_table', 71), (218, '2023_05_21_111600_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_phone_or_email_verifications_table', 71), (219, '2023_05_21_112215_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_password_resets_table', 71), (220, '2023_06_04_210726_attachment_lenght_change_to_reviews_table', 71), (221, '2023_06_05_115153_add_referral_code_and_referred_by_to_users_table', 72), (222, '2023_06_21_002658_add_offer_banner_to_shops_table', 72), (223, '2023_07_08_210747_create_most_demandeds_table', 72), (224, '2023_07_31_111419_add_minimum_order_amount_to_sellers_table', 72), (225, '2023_08_03_105256_create_offline_payment_methods_table', 72), (226, '2023_08_07_131013_add_is_guest_column_to_carts_table', 72), (227, '2023_08_07_170601_create_offline_payments_table', 72), (228, '2023_08_12_102355_create_add_fund_bonus_categories_table', 72), (229, '2023_08_12_215346_create_guest_users_table', 72), (230, '2023_08_12_215659_add_is_guest_column_to_orders_table', 72), (231, '2023_08_12_215933_add_is_guest_column_to_shipping_addresses_table', 72), (232, '2023_08_15_000957_add_email_column_toshipping_address_table', 72), (233, '2023_08_17_222330_add_identify_related_columns_to_admins_table', 72), (234, '2023_08_20_230624_add_sent_by_and_send_to_in_notifications_table', 72), (235, '2023_08_20_230911_create_notification_seens_table', 72), (236, '2023_08_21_042331_add_theme_to_banners_table', 72), (237, '2023_08_24_150009_add_free_delivery_over_amount_and_status_to_seller_table', 72), (238, '2023_08_26_161214_add_is_shipping_free_to_orders_table', 72), (239, '2023_08_26_173523_add_payment_method_column_to_wallet_transactions_table', 72), (240, '2023_08_26_204653_add_verification_status_column_to_orders_table', 72), (241, '2023_08_26_225113_create_order_delivery_verifications_table', 72), (242, '2023_09_03_212200_add_free_delivery_responsibility_column_to_orders_table', 72), (243, '2023_09_23_153314_add_shipping_responsibility_column_to_orders_table', 72), (244, '2023_09_25_152733_create_digital_product_otp_verifications_table', 72), (245, '2023_09_27_191638_add_attachment_column_to_support_ticket_convs_table', 73), (246, '2023_10_01_205117_add_attachment_column_to_chattings_table', 73), (247, '2023_10_07_182714_create_notification_messages_table', 73), (248, '2023_10_21_113354_add_app_language_column_to_users_table', 73), (249, '2023_10_21_123433_add_app_language_column_to_sellers_table', 73), (250, '2023_10_21_124657_add_app_language_column_to_delivery_men_table', 73), (251, '2023_10_22_130225_add_attachment_to_support_tickets_table', 73), (252, '2023_10_25_113233_make_message_nullable_in_chattings_table', 73), (253, '2023_10_30_152005_make_attachment_column_type_change_to_reviews_table', 73), (254, '2024_01_14_192546_add_slug_to_shops_table', 74), (255, '2024_01_25_175421_add_country_code_to_emergency_contacts_table', 75), (256, '2024_02_01_200417_add_denied_count_and_approved_count_to_refund_requests_table', 75), (257, '2024_03_11_130425_add_seen_notification_and_notification_receiver_to_chattings_table', 76), (258, '2024_03_12_123322_update_images_column_in_refund_requests_table', 76), (259, '2024_03_21_134659_change_denied_note_column_type_to_text', 76), (260, '2024_04_03_093637_create_email_templates_table', 77), (261, '2024_04_17_102137_add_is_checked_column_to_carts_table', 77), (262, '2024_04_23_130436_create_vendor_registration_reasons_table', 77), (263, '2024_04_24_093932_add_type_to_help_topics_table', 77); -- -------------------------------------------------------- -- -- Table structure for table `most_demandeds` -- CREATE TABLE `most_demandeds` ( `id` bigint(20) UNSIGNED NOT NULL, `banner` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `sent_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'system', `sent_to` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT '0', `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notification_messages` -- CREATE TABLE `notification_messages` ( `id` bigint(20) UNSIGNED NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `notification_messages` -- INSERT INTO `notification_messages` (`id`, `user_type`, `key`, `message`, `status`, `created_at`, `updated_at`) VALUES (1, 'customer', 'order_pending_message', 'order pen message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (2, 'customer', 'order_confirmation_message', 'Order con Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (3, 'customer', 'order_processing_message', 'Order pro Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (4, 'customer', 'out_for_delivery_message', 'Order ouut Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (5, 'customer', 'order_delivered_message', 'Order del Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (6, 'customer', 'order_returned_message', 'Order hh Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (7, 'customer', 'order_failed_message', 'Order fa Message', 0, '2023-10-30 11:02:55', '2024-05-16 03:52:50'), (8, 'customer', 'order_canceled', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (9, 'customer', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (10, 'customer', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (11, 'customer', 'message_from_delivery_man', 'customize your message from delivery man message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (12, 'customer', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (13, 'customer', 'fund_added_by_admin_message', 'customize your fund added by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (14, 'seller', 'new_order_message', 'customize your new order message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (15, 'seller', 'refund_request_message', 'customize your refund request message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (16, 'seller', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (17, 'seller', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (18, 'seller', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (19, 'seller', 'delivery_man_assign_by_admin_message', 'customize your delivery man assign by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (20, 'seller', 'order_delivered_message', 'customize your order delivered message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (21, 'seller', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (22, 'seller', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (23, 'seller', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (24, 'seller', 'refund_request_status_changed_by_admin', 'customize your refund request status changed by admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (25, 'delivery_man', 'new_order_assigned_message', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (26, 'delivery_man', 'expected_delivery_date', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (27, 'delivery_man', 'delivery_man_charge', 'customize your delivery man charge message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (28, 'delivery_man', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (29, 'delivery_man', 'order_rescheduled_message', 'customize your order rescheduled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (30, 'delivery_man', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (31, 'delivery_man', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (32, 'delivery_man', 'message_from_admin', 'customize your message from admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (33, 'delivery_man', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (34, 'delivery_man', 'cash_collect_by_admin_message', 'customize your cash collect by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (35, 'delivery_man', 'cash_collect_by_seller_message', 'customize your cash collect by seller message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (36, 'delivery_man', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (37, 'seller', 'product_request_approved_message', 'customize your product request approved message message', 1, '2024-02-19 08:35:38', '2024-02-19 08:35:38'), (38, 'seller', 'product_request_rejected_message', 'customize your product request rejected message message', 1, '2024-02-19 08:35:38', '2024-02-19 08:35:38'); -- -------------------------------------------------------- -- -- Table structure for table `notification_seens` -- CREATE TABLE `notification_seens` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `notification_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payments` -- CREATE TABLE `offline_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `payment_info` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payment_methods` -- CREATE TABLE `offline_payment_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `method_informations` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_note` text COLLATE utf8mb4_unicode_ci, `order_amount` double NOT NULL DEFAULT '0', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `is_pause` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_discount_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `shipping_responsibility` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `is_shipping_free` tinyint(1) NOT NULL DEFAULT '0', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `verification_status` tinyint(4) NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT '0', `expected_delivery_date` date DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_delivery_bearer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_delivery_verifications` -- CREATE TABLE `order_delivery_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `image` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(50,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT '0.00', `tax` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payment_requests` -- CREATE TABLE `payment_requests` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `payer_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_amount` decimal(24,2) NOT NULL DEFAULT '0.00', `gateway_callback_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `success_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `failure_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currency_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'USD', `payment_method` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `is_paid` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `payer_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `external_redirect_link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `attribute_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attribute` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_platform` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci, `color_image` text COLLATE utf8mb4_unicode_ci NOT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT '1', `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` text COLLATE utf8mb4_unicode_ci, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_compares` -- CREATE TABLE `product_compares` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL COMMENT 'customer_id', `product_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_tag` -- CREATE TABLE `product_tag` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `tag_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `approved_count` tinyint(4) NOT NULL DEFAULT '0', `denied_count` tinyint(4) NOT NULL DEFAULT '0', `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `is_saved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0', `minimum_order_amount` double(8,2) NOT NULL DEFAULT '0.00', `free_delivery_status` int(11) NOT NULL DEFAULT '0', `free_delivery_over_amount` double(8,2) NOT NULL DEFAULT '0.00', `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `bottom_banner` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `offer_banner` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_start_date` date DEFAULT NULL, `vacation_end_date` date DEFAULT NULL, `vacation_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_status` tinyint(4) NOT NULL DEFAULT '0', `temporary_close` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shop_followers` -- CREATE TABLE `shop_followers` ( `id` bigint(20) UNSIGNED NOT NULL, `shop_id` int(11) NOT NULL, `user_id` int(11) NOT NULL COMMENT 'Customer ID', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` bigint(20) UNSIGNED NOT NULL, `tag` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `visit_count` bigint(20) UNSIGNED NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` int(10) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0', `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL, `login_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `referral_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referred_by` int(11) DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`, `login_hit_count`, `is_temp_blocked`, `temp_block_time`, `referral_code`, `referred_by`, `app_language`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, 0, NULL, NULL, NULL, 'en'); -- -------------------------------------------------------- -- -- Table structure for table `vendor_registration_reasons` -- CREATE TABLE `vendor_registration_reasons` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `priority` tinyint(4) NOT NULL DEFAULT '1', `status` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `admin_bonus` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdrawal_methods` -- CREATE TABLE `withdrawal_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` tinyint(4) NOT NULL DEFAULT '0', `is_active` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `withdrawal_method_id` bigint(20) UNSIGNED DEFAULT NULL, `withdrawal_method_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `transaction_note` text COLLATE utf8mb4_unicode_ci, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `addon_settings` -- ALTER TABLE `addon_settings` ADD PRIMARY KEY (`id`), ADD KEY `payment_settings_id_index` (`id`); -- -- Indexes for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `email_templates` -- ALTER TABLE `email_templates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `guest_users` -- ALTER TABLE `guest_users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `most_demandeds` -- ALTER TABLE `most_demandeds` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_messages` -- ALTER TABLE `notification_messages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_seens` -- ALTER TABLE `notification_seens` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `offline_payments` -- ALTER TABLE `offline_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD PRIMARY KEY (`id`), ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_compares` -- ALTER TABLE `product_compares` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_tag` -- ALTER TABLE `product_tag` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shop_followers` -- ALTER TABLE `shop_followers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `vendor_registration_reasons` -- ALTER TABLE `vendor_registration_reasons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=171; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `email_templates` -- ALTER TABLE `email_templates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `guest_users` -- ALTER TABLE `guest_users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=264; -- -- AUTO_INCREMENT for table `most_demandeds` -- ALTER TABLE `most_demandeds` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notification_messages` -- ALTER TABLE `notification_messages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39; -- -- AUTO_INCREMENT for table `notification_seens` -- ALTER TABLE `notification_seens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `offline_payments` -- ALTER TABLE `offline_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `password_resets` -- ALTER TABLE `password_resets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_compares` -- ALTER TABLE `product_compares` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_tag` -- ALTER TABLE `product_tag` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shop_followers` -- ALTER TABLE `shop_followers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `vendor_registration_reasons` -- ALTER TABLE `vendor_registration_reasons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!*backup/database_v14.3.1.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Jan 14, 2024 at 10:42 AM -- Server version: 5.7.39 -- PHP Version: 8.2.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `install` -- -- -------------------------------------------------------- -- -- Table structure for table `addon_settings` -- CREATE TABLE `addon_settings` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `key_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `live_values` longtext COLLATE utf8mb4_unicode_ci, `test_values` longtext COLLATE utf8mb4_unicode_ci, `settings_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'live', `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `addon_settings` -- INSERT INTO `addon_settings` (`id`, `key_name`, `live_values`, `test_values`, `settings_type`, `mode`, `is_active`, `created_at`, `updated_at`, `additional_data`) VALUES ('070c6bbd-d777-11ed-96f4-0c7a158e4469', 'twilio', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:29', NULL), ('070c766c-d777-11ed-96f4-0c7a158e4469', '2factor', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:36', NULL), ('0d8a9308-d6a5-11ed-962c-0c7a158e4469', 'mercadopago', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-27 11:57:11', '{\"gateway_title\":\"Mercadopago\",\"gateway_image\":null}'), ('0d8a9e49-d6a5-11ed-962c-0c7a158e4469', 'liqpay', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:31', '{\"gateway_title\":\"Liqpay\",\"gateway_image\":null}'), ('101befdf-d44b-11ed-8564-0c7a158e4469', 'paypal', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:41:32', '{\"gateway_title\":\"Paypal\",\"gateway_image\":null}'), ('133d9647-cabb-11ed-8fec-0c7a158e4469', 'hyper_pay', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:42', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('1821029f-d776-11ed-96f4-0c7a158e4469', 'msg91', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:48', NULL), ('18210f2b-d776-11ed-96f4-0c7a158e4469', 'nexmo', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('18fbb21f-d6ad-11ed-962c-0c7a158e4469', 'foloosi', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:33', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('2767d142-d6a1-11ed-962c-0c7a158e4469', 'paytm', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-22 06:30:55', '{\"gateway_title\":\"Paytm\",\"gateway_image\":null}'), ('3201d2e6-c937-11ed-a424-0c7a158e4469', 'amazon_pay', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:07', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('4593b25c-d6a1-11ed-962c-0c7a158e4469', 'paytabs', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:51', '{\"gateway_title\":\"Paytabs\",\"gateway_image\":null}'), ('4e9b8dfb-e7d1-11ed-a559-0c7a158e4469', 'bkash', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:39:42', '{\"gateway_title\":\"Bkash\",\"gateway_image\":null}'), ('544a24a4-c872-11ed-ac7a-0c7a158e4469', 'fatoorah', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:24', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('58c1bc8a-d6ac-11ed-962c-0c7a158e4469', 'ccavenue', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:42:38', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-643783f01d386.png\"}'), ('5e2d2ef9-d6ab-11ed-962c-0c7a158e4469', 'thawani', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:40', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-64378f9856f29.png\"}'), ('60cc83cc-d5b9-11ed-b56f-0c7a158e4469', 'sixcash', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:16:17', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-12-6436774e77ff9.png\"}'), ('68579846-d8e8-11ed-8249-0c7a158e4469', 'alphanet_sms', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('6857a2e8-d8e8-11ed-8249-0c7a158e4469', 'sms_to', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('74c30c00-d6a6-11ed-962c-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:37:43', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('74e46b0a-d6aa-11ed-962c-0c7a158e4469', 'tap', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:09', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('761ca96c-d1eb-11ed-87ca-0c7a158e4469', 'swish', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('7b1c3c5f-d2bd-11ed-b485-0c7a158e4469', 'payfast', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:13', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('8592417b-d1d1-11ed-a984-0c7a158e4469', 'esewa', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:38', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('9162a1dc-cdf1-11ed-affe-0c7a158e4469', 'viva_wallet', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', 'payment_config', 'test', 0, NULL, NULL, NULL), ('998ccc62-d6a0-11ed-962c-0c7a158e4469', 'stripe', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:55', '{\"gateway_title\":\"Stripe\",\"gateway_image\":null}'), ('a3313755-c95d-11ed-b1db-0c7a158e4469', 'iyzi_pay', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a76c8993-d299-11ed-b485-0c7a158e4469', 'momo', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', 'payment_config', 'live', 0, NULL, '2023-08-30 04:19:28', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a8608119-cc76-11ed-9bca-0c7a158e4469', 'moncash', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:34', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('ad5af1c1-d6a2-11ed-962c-0c7a158e4469', 'razor_pay', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:00', '{\"gateway_title\":\"Razor pay\",\"gateway_image\":null}'), ('ad5b02a0-d6a2-11ed-962c-0c7a158e4469', 'senang_pay', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', 'payment_config', 'test', 0, NULL, '2023-08-27 09:58:57', '{\"gateway_title\":\"Senang pay\",\"gateway_image\":null}'), ('b6c333f6-d8e9-11ed-8249-0c7a158e4469', 'akandit_sms', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b6c33c87-d8e9-11ed-8249-0c7a158e4469', 'global_sms', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b8992bd4-d6a0-11ed-962c-0c7a158e4469', 'paymob_accept', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', 'payment_config', 'test', 0, NULL, NULL, '{\"gateway_title\":\"Paymob accept\",\"gateway_image\":null}'), ('c41c0dcd-d119-11ed-9f67-0c7a158e4469', 'maxicash', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:49:15', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('c9249d17-cd60-11ed-b879-0c7a158e4469', 'pvit', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', 'payment_config', 'test', 0, NULL, NULL, NULL), ('cb0081ce-d775-11ed-96f4-0c7a158e4469', 'releans', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('d4f3f5f1-d6a0-11ed-962c-0c7a158e4469', 'flutterwave', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:41:03', '{\"gateway_title\":\"Flutterwave\",\"gateway_image\":null}'), ('d822f1a5-c864-11ed-ac7a-0c7a158e4469', 'paystack', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:45', '{\"gateway_title\":\"Paystack\",\"gateway_image\":null}'), ('daec8d59-c893-11ed-ac7a-0c7a158e4469', 'xendit', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:46', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('dc0f5fc9-d6a5-11ed-962c-0c7a158e4469', 'worldpay', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:26', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('e0450278-d8eb-11ed-8249-0c7a158e4469', 'signal_wire', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('e0450b40-d8eb-11ed-8249-0c7a158e4469', 'paradox', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-09-10 01:14:01', NULL), ('ea346efe-cdda-11ed-affe-0c7a158e4469', 'ssl_commerz', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:43:49', '{\"gateway_title\":\"Ssl commerz\",\"gateway_image\":null}'), ('eed88336-d8ec-11ed-8249-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149c546-d8ea-11ed-8249-0c7a158e4469', 'viatech', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149cd9c-d8ea-11ed-8249-0c7a158e4469', '019_sms', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `add_fund_bonus_categories` -- CREATE TABLE `add_fund_bonus_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `bonus_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `min_add_money_amount` double(14,2) NOT NULL DEFAULT '0.00', `max_bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `start_date_time` datetime DEFAULT NULL, `end_date_time` datetime DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `identify_image` text COLLATE utf8mb4_unicode_ci, `identify_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identify_number` int(11) DEFAULT NULL, `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button_text` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `background_color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1,\"default\":true}]', '2020-10-11 07:53:02', '2023-10-13 11:34:53'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2023-01-10 05:51:56'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2023-01-10 05:51:56'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\",\"primary_light\":\"#CFDFFB\"}', '2020-10-11 13:53:02', '2024-01-14 10:22:07'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2023-01-10 05:51:56'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":0,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":0,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2023-01-10 05:51:56'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (87, 'refund-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (88, 'return-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (89, 'cancellation-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (90, 'offline_payment', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (91, 'temporary_close', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (92, 'vacation_add', '{\"status\":0,\"vacation_start_date\":null,\"vacation_end_date\":null,\"vacation_note\":null}', NULL, '2023-03-04 06:25:36'), (93, 'cookie_setting', '{\"status\":0,\"cookie_text\":null}', NULL, '2023-03-04 06:25:36'), (94, 'maximum_otp_hit', '0', NULL, '2023-06-13 13:04:49'), (95, 'otp_resend_time', '0', NULL, '2023-06-13 13:04:49'), (96, 'temporary_block_time', '0', NULL, '2023-06-13 13:04:49'), (97, 'maximum_login_hit', '0', NULL, '2023-06-13 13:04:49'), (98, 'temporary_login_block_time', '0', NULL, '2023-06-13 13:04:49'), (104, 'apple_login', '[{\"login_medium\":\"apple\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":0,\"team_id\":\"\",\"key_id\":\"\",\"service_file\":\"\",\"redirect_url\":\"\"}]', NULL, '2023-10-13 05:34:53'), (105, 'ref_earning_status', '0', NULL, '2023-10-13 05:34:53'), (106, 'ref_earning_exchange_rate', '0', NULL, '2023-10-13 05:34:53'), (107, 'guest_checkout', '0', NULL, '2023-10-13 11:34:53'), (108, 'minimum_order_amount', '0', NULL, '2023-10-13 11:34:53'), (109, 'minimum_order_amount_by_seller', '0', NULL, '2023-10-13 11:34:53'), (110, 'minimum_order_amount_status', '0', NULL, '2023-10-13 11:34:53'), (111, 'admin_login_url', 'admin', NULL, '2023-10-13 11:34:53'), (112, 'employee_login_url', 'employee', NULL, '2023-10-13 11:34:53'), (113, 'free_delivery_status', '0', NULL, '2023-10-13 11:34:53'), (114, 'free_delivery_responsibility', 'admin', NULL, '2023-10-13 11:34:53'), (115, 'free_delivery_over_amount', '0', NULL, '2023-10-13 11:34:53'), (116, 'free_delivery_over_amount_seller', '0', NULL, '2023-10-13 11:34:53'), (117, 'add_funds_to_wallet', '0', NULL, '2023-10-13 11:34:53'), (118, 'minimum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (119, 'maximum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (120, 'user_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (121, 'seller_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (122, 'delivery_man_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (123, 'whatsapp', '{\"status\":1,\"phone\":\"00000000000\"}', NULL, '2023-10-13 11:34:53'), (124, 'currency_symbol_position', 'left', NULL, '2023-10-13 11:34:53'), (148, 'company_reliability', '[{\"item\":\"delivery_info\",\"title\":\"Fast Delivery all across the country\",\"image\":\"\",\"status\":1},{\"item\":\"safe_payment\",\"title\":\"Safe Payment\",\"image\":\"\",\"status\":1},{\"item\":\"return_policy\",\"title\":\"7 Days Return Policy\",\"image\":\"\",\"status\":1},{\"item\":\"authentic_product\",\"title\":\"100% Authentic Products\",\"image\":\"\",\"status\":1}]', NULL, NULL), (149, 'react_setup', '{\"status\":0,\"react_license_code\":\"\",\"react_domain\":\"\",\"react_platform\":\"\"}', NULL, '2024-01-09 04:05:15'), (150, 'app_activation', '{\"software_id\":\"\",\"is_active\":0}', NULL, '2024-01-09 04:05:15'), (151, 'shop_banner', '', NULL, '2023-10-13 11:34:53'); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0', `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `seller_id` bigint(20) DEFAULT NULL COMMENT 'NULL=in-house, 0=all seller', `customer_id` bigint(20) DEFAULT NULL COMMENT '0 = all customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT '0.00', `cash_in_hand` decimal(50,2) NOT NULL DEFAULT '0.00', `pending_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `total_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT '0.00', `credit` decimal(50,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `is_online` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `digital_product_otp_verifications` -- CREATE TABLE `digital_product_otp_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `guest_users` -- CREATE TABLE `guest_users` ( `id` bigint(20) UNSIGNED NOT NULL, `ip_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fcm_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68), (195, '2022_12_17_035723_few_field_add_to_coupons_table', 69), (196, '2022_12_26_231606_add_coupon_discount_bearer_and_admin_commission_to_orders', 69), (197, '2023_01_04_003034_alter_billing_addresses_change_zip', 69), (198, '2023_01_05_121600_change_id_to_transactions_table', 69), (199, '2023_02_02_113330_create_product_tag_table', 70), (200, '2023_02_02_114518_create_tags_table', 70), (201, '2023_02_02_152248_add_tax_model_to_products_table', 70), (202, '2023_02_02_152718_add_tax_model_to_order_details_table', 70), (203, '2023_02_02_171034_add_tax_type_to_carts', 70), (204, '2023_02_06_124447_add_color_image_column_to_products_table', 70), (205, '2023_02_07_120136_create_withdrawal_methods_table', 70), (206, '2023_02_07_175939_add_withdrawal_method_id_and_withdrawal_method_fields_to_withdraw_requests_table', 70), (207, '2023_02_08_143314_add_vacation_start_and_vacation_end_and_vacation_not_column_to_shops_table', 70), (208, '2023_02_09_104656_add_payment_by_and_payment_not_to_orders_table', 70), (209, '2023_03_27_150723_add_expires_at_to_phone_or_email_verifications', 71), (210, '2023_04_17_095721_create_shop_followers_table', 71), (211, '2023_04_17_111249_add_bottom_banner_to_shops_table', 71), (212, '2023_04_20_125423_create_product_compares_table', 71), (213, '2023_04_30_165642_add_category_sub_category_and_sub_sub_category_add_in_product_table', 71), (214, '2023_05_16_131006_add_expires_at_to_password_resets', 71), (215, '2023_05_17_044243_add_visit_count_to_tags_table', 71), (216, '2023_05_18_000403_add_title_and_subtitle_and_background_color_and_button_text_to_banners_table', 71), (217, '2023_05_21_111300_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_users_table', 71), (218, '2023_05_21_111600_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_phone_or_email_verifications_table', 71), (219, '2023_05_21_112215_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_password_resets_table', 71), (220, '2023_06_04_210726_attachment_lenght_change_to_reviews_table', 71), (221, '2023_06_05_115153_add_referral_code_and_referred_by_to_users_table', 72), (222, '2023_06_21_002658_add_offer_banner_to_shops_table', 72), (223, '2023_07_08_210747_create_most_demandeds_table', 72), (224, '2023_07_31_111419_add_minimum_order_amount_to_sellers_table', 72), (225, '2023_08_03_105256_create_offline_payment_methods_table', 72), (226, '2023_08_07_131013_add_is_guest_column_to_carts_table', 72), (227, '2023_08_07_170601_create_offline_payments_table', 72), (228, '2023_08_12_102355_create_add_fund_bonus_categories_table', 72), (229, '2023_08_12_215346_create_guest_users_table', 72), (230, '2023_08_12_215659_add_is_guest_column_to_orders_table', 72), (231, '2023_08_12_215933_add_is_guest_column_to_shipping_addresses_table', 72), (232, '2023_08_15_000957_add_email_column_toshipping_address_table', 72), (233, '2023_08_17_222330_add_identify_related_columns_to_admins_table', 72), (234, '2023_08_20_230624_add_sent_by_and_send_to_in_notifications_table', 72), (235, '2023_08_20_230911_create_notification_seens_table', 72), (236, '2023_08_21_042331_add_theme_to_banners_table', 72), (237, '2023_08_24_150009_add_free_delivery_over_amount_and_status_to_seller_table', 72), (238, '2023_08_26_161214_add_is_shipping_free_to_orders_table', 72), (239, '2023_08_26_173523_add_payment_method_column_to_wallet_transactions_table', 72), (240, '2023_08_26_204653_add_verification_status_column_to_orders_table', 72), (241, '2023_08_26_225113_create_order_delivery_verifications_table', 72), (242, '2023_09_03_212200_add_free_delivery_responsibility_column_to_orders_table', 72), (243, '2023_09_23_153314_add_shipping_responsibility_column_to_orders_table', 72), (244, '2023_09_25_152733_create_digital_product_otp_verifications_table', 72), (245, '2023_09_27_191638_add_attachment_column_to_support_ticket_convs_table', 73), (246, '2023_10_01_205117_add_attachment_column_to_chattings_table', 73), (247, '2023_10_07_182714_create_notification_messages_table', 73), (248, '2023_10_21_113354_add_app_language_column_to_users_table', 73), (249, '2023_10_21_123433_add_app_language_column_to_sellers_table', 73), (250, '2023_10_21_124657_add_app_language_column_to_delivery_men_table', 73), (251, '2023_10_22_130225_add_attachment_to_support_tickets_table', 73), (252, '2023_10_25_113233_make_message_nullable_in_chattings_table', 73), (253, '2023_10_30_152005_make_attachment_column_type_change_to_reviews_table', 73), (254, '2024_01_14_192546_add_slug_to_shops_table', 74); -- -------------------------------------------------------- -- -- Table structure for table `most_demandeds` -- CREATE TABLE `most_demandeds` ( `id` bigint(20) UNSIGNED NOT NULL, `banner` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `sent_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'system', `sent_to` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT '0', `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notification_messages` -- CREATE TABLE `notification_messages` ( `id` bigint(20) UNSIGNED NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `notification_messages` -- INSERT INTO `notification_messages` (`id`, `user_type`, `key`, `message`, `status`, `created_at`, `updated_at`) VALUES (1, 'customer', 'order_pending_message', 'order pen message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (2, 'customer', 'order_confirmation_message', 'Order con Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (3, 'customer', 'order_processing_message', 'Order pro Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (4, 'customer', 'out_for_delivery_message', 'Order ouut Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (5, 'customer', 'order_delivered_message', 'Order del Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (6, 'customer', 'order_returned_message', 'Order hh Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (7, 'customer', 'order_failed_message', 'Order fa Message', 0, '2023-10-30 11:02:55', '2024-01-14 10:22:07'), (8, 'customer', 'order_canceled', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (9, 'customer', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (10, 'customer', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (11, 'customer', 'message_from_delivery_man', 'customize your message from delivery man message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (12, 'customer', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (13, 'customer', 'fund_added_by_admin_message', 'customize your fund added by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (14, 'seller', 'new_order_message', 'customize your new order message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (15, 'seller', 'refund_request_message', 'customize your refund request message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (16, 'seller', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (17, 'seller', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (18, 'seller', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (19, 'seller', 'delivery_man_assign_by_admin_message', 'customize your delivery man assign by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (20, 'seller', 'order_delivered_message', 'customize your order delivered message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (21, 'seller', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (22, 'seller', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (23, 'seller', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (24, 'seller', 'refund_request_status_changed_by_admin', 'customize your refund request status changed by admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (25, 'delivery_man', 'new_order_assigned_message', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (26, 'delivery_man', 'expected_delivery_date', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (27, 'delivery_man', 'delivery_man_charge', 'customize your delivery man charge message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (28, 'delivery_man', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (29, 'delivery_man', 'order_rescheduled_message', 'customize your order rescheduled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (30, 'delivery_man', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (31, 'delivery_man', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (32, 'delivery_man', 'message_from_admin', 'customize your message from admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (33, 'delivery_man', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (34, 'delivery_man', 'cash_collect_by_admin_message', 'customize your cash collect by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (35, 'delivery_man', 'cash_collect_by_seller_message', 'customize your cash collect by seller message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (36, 'delivery_man', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'); -- -------------------------------------------------------- -- -- Table structure for table `notification_seens` -- CREATE TABLE `notification_seens` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `notification_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payments` -- CREATE TABLE `offline_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `payment_info` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payment_methods` -- CREATE TABLE `offline_payment_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `method_informations` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_note` text COLLATE utf8mb4_unicode_ci, `order_amount` double NOT NULL DEFAULT '0', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `is_pause` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_discount_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `shipping_responsibility` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `is_shipping_free` tinyint(1) NOT NULL DEFAULT '0', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `verification_status` tinyint(4) NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT '0', `expected_delivery_date` date DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_delivery_bearer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_delivery_verifications` -- CREATE TABLE `order_delivery_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `image` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(50,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT '0.00', `tax` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payment_requests` -- CREATE TABLE `payment_requests` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `payer_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_amount` decimal(24,2) NOT NULL DEFAULT '0.00', `gateway_callback_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `success_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `failure_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currency_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'USD', `payment_method` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `is_paid` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `payer_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `external_redirect_link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `attribute_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attribute` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_platform` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci, `color_image` text COLLATE utf8mb4_unicode_ci NOT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT '1', `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_compares` -- CREATE TABLE `product_compares` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL COMMENT 'customer_id', `product_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_tag` -- CREATE TABLE `product_tag` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `tag_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `is_saved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0', `minimum_order_amount` double(8,2) NOT NULL DEFAULT '0.00', `free_delivery_status` int(11) NOT NULL DEFAULT '0', `free_delivery_over_amount` double(8,2) NOT NULL DEFAULT '0.00', `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `bottom_banner` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `offer_banner` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_start_date` date DEFAULT NULL, `vacation_end_date` date DEFAULT NULL, `vacation_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_status` tinyint(4) NOT NULL DEFAULT '0', `temporary_close` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shop_followers` -- CREATE TABLE `shop_followers` ( `id` bigint(20) UNSIGNED NOT NULL, `shop_id` int(11) NOT NULL, `user_id` int(11) NOT NULL COMMENT 'Customer ID', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` bigint(20) UNSIGNED NOT NULL, `tag` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `visit_count` bigint(20) UNSIGNED NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` int(10) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0', `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL, `login_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `referral_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referred_by` int(11) DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`, `login_hit_count`, `is_temp_blocked`, `temp_block_time`, `referral_code`, `referred_by`, `app_language`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, 0, NULL, NULL, NULL, 'en'); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `admin_bonus` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdrawal_methods` -- CREATE TABLE `withdrawal_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` tinyint(4) NOT NULL DEFAULT '0', `is_active` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `withdrawal_method_id` bigint(20) UNSIGNED DEFAULT NULL, `withdrawal_method_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `transaction_note` text COLLATE utf8mb4_unicode_ci, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `addon_settings` -- ALTER TABLE `addon_settings` ADD PRIMARY KEY (`id`), ADD KEY `payment_settings_id_index` (`id`); -- -- Indexes for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `guest_users` -- ALTER TABLE `guest_users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `most_demandeds` -- ALTER TABLE `most_demandeds` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_messages` -- ALTER TABLE `notification_messages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_seens` -- ALTER TABLE `notification_seens` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `offline_payments` -- ALTER TABLE `offline_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD PRIMARY KEY (`id`), ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_compares` -- ALTER TABLE `product_compares` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_tag` -- ALTER TABLE `product_tag` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shop_followers` -- ALTER TABLE `shop_followers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=152; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `guest_users` -- ALTER TABLE `guest_users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=255; -- -- AUTO_INCREMENT for table `most_demandeds` -- ALTER TABLE `most_demandeds` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notification_messages` -- ALTER TABLE `notification_messages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37; -- -- AUTO_INCREMENT for table `notification_seens` -- ALTER TABLE `notification_seens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `offline_payments` -- ALTER TABLE `offline_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `password_resets` -- ALTER TABLE `password_resets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_compares` -- ALTER TABLE `product_compares` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_tag` -- ALTER TABLE `product_tag` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shop_followers` -- ALTER TABLE `shop_followers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!ؠؠbackup/database_v12.0.sqlnu[-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Oct 11, 2022 at 09:58 AM -- Server version: 5.7.34 -- PHP Version: 8.0.8 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_live` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` int(10) UNSIGNED DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1}]', '2020-10-11 07:53:02', '2021-06-10 21:16:25'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2022-10-11 09:58:37'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2022-10-11 09:58:37'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\"}', '2020-10-11 13:53:02', '2021-05-25 21:43:11'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2022-10-11 09:58:37'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2022-10-11 09:58:37'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0', `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `seller_id` bigint(20) NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (16, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (38, 'Fuchsia', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (93, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT '0', `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_amount` double NOT NULL DEFAULT '0', `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(8,2) NOT NULL DEFAULT '0.00', `tax` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT '1', `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0', `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `admin_bonus` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `transaction_note` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `delivery_men_phone_unique` (`phone`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=85; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=177; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!ybackup/database_v12.2.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Dec 03, 2022 at 07:14 AM -- Server version: 10.4.24-MariaDB -- PHP Version: 8.1.6 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT 2, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT 0, `withdrawn` double NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT 0.00, `delivery_charge_earned` double(8,2) NOT NULL DEFAULT 0.00, `pending_amount` double(8,2) NOT NULL DEFAULT 0.00, `total_tax_collected` double(8,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `published` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` int(10) UNSIGNED DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1}]', '2020-10-11 07:53:02', '2021-06-10 21:16:25'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2022-12-03 06:13:58'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2022-12-03 06:13:58'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\"}', '2020-10-11 13:53:02', '2021-05-25 21:43:11'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2022-12-03 06:13:58'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2022-12-03 06:13:58'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variations` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `quantity` int(11) NOT NULL DEFAULT 1, `price` double NOT NULL DEFAULT 1, `tax` double NOT NULL DEFAULT 1, `discount` double NOT NULL DEFAULT 1, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT 0, `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT 0, `sent_by_seller` tinyint(1) NOT NULL DEFAULT 0, `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT 1, `seen_by_seller` tinyint(1) NOT NULL DEFAULT 1, `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (16, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (38, 'Fuchsia', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (93, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT 0, `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT 0.00, `max_discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT 0.00, `royality_points` decimal(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT 0.00, `cash_in_hand` decimal(50,2) NOT NULL DEFAULT 0.00, `pending_withdraw` decimal(50,2) NOT NULL DEFAULT 0.00, `total_withdraw` decimal(50,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT 0.00, `credit` decimal(50,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `is_online` tinyint(4) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `featured` tinyint(1) NOT NULL DEFAULT 0, `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `answer` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ranking` int(11) NOT NULL DEFAULT 1, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT 0.000, `debit` decimal(24,3) NOT NULL DEFAULT 0.000, `balance` decimal(24,3) NOT NULL DEFAULT 0.000, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT 0, `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_amount` double NOT NULL DEFAULT 0, `is_pause` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT 0, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT 0, `shipping_cost` double(8,2) NOT NULL DEFAULT 0.00, `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT 0, `expected_delivery_date` date DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT 0.00, `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT 0, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int(11) NOT NULL DEFAULT 0, `price` double NOT NULL DEFAULT 0, `tax` double NOT NULL DEFAULT 0, `discount` double NOT NULL DEFAULT 0, `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT 1, `refund_request` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT 0.00, `seller_amount` decimal(50,2) NOT NULL DEFAULT 0.00, `admin_commission` decimal(50,2) NOT NULL DEFAULT 0.00, `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT 0.00, `tax` decimal(50,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT 1, `refundable` tinyint(1) NOT NULL DEFAULT 1, `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT 0, `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `unit_price` double NOT NULL DEFAULT 0, `purchase_price` double NOT NULL DEFAULT 0, `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT 1, `details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_shipping` tinyint(1) NOT NULL DEFAULT 0, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `featured_status` tinyint(1) NOT NULL DEFAULT 1, `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT 0, `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT 0.00, `qty` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rejected_note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_info` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT 0, `status` int(11) NOT NULL DEFAULT 1, `is_saved` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT 0, `withdrawn` double NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT 0.00, `pending_withdraw` double(8,2) NOT NULL DEFAULT 0.00, `delivery_charge_earned` double(8,2) NOT NULL DEFAULT 0.00, `collected_cash` double(8,2) NOT NULL DEFAULT 0.00, `total_tax_collected` double(8,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT 0.00, `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT 0, `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT 0, `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT 0.000, `debit` decimal(24,3) NOT NULL DEFAULT 0.000, `admin_bonus` decimal(24,3) NOT NULL DEFAULT 0.000, `balance` decimal(24,3) NOT NULL DEFAULT 0.000, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `transaction_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=87; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=195; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!vx^#~#~backup/database_v7.1.sqlnu[-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Mar 01, 2022 at 11:30 AM -- Server version: 5.7.34 -- PHP Version: 7.4.21 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_live` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` int(10) UNSIGNED DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1}]', '2020-10-11 07:53:02', '2021-06-10 21:16:25'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"store_id\":null,\"store_password\":null}', '2020-11-09 08:36:51', '2021-07-06 12:29:46'), (7, 'paypal', '{\"status\":\"0\",\"paypal_client_id\":null,\"paypal_secret\":null}', '2020-11-09 08:51:39', '2021-07-06 12:29:57'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\"}', '2020-10-11 13:53:02', '2021-05-25 21:43:11'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, NULL), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":null}', NULL, NULL), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `seller_id` bigint(20) NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (16, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (38, 'Fuchsia', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (93, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_amount` double NOT NULL DEFAULT '0', `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(8,2) NOT NULL DEFAULT '0.00', `tax` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `images` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0); -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `transaction_note` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `delivery_men_phone_unique` (`phone`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=73; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=155; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!J2backup/database_v13.1.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Mar 04, 2023 at 07:26 AM -- Server version: 10.4.24-MariaDB -- PHP Version: 8.1.6 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT 2, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT 0, `withdrawn` double NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT 0.00, `delivery_charge_earned` double(8,2) NOT NULL DEFAULT 0.00, `pending_amount` double(8,2) NOT NULL DEFAULT 0.00, `total_tax_collected` double(8,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `published` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1}]', '2020-10-11 07:53:02', '2021-06-10 21:16:25'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2023-01-10 05:51:56'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2023-01-10 05:51:56'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\"}', '2020-10-11 13:53:02', '2021-05-25 21:43:11'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2023-01-10 05:51:56'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2023-01-10 05:51:56'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (87, 'refund-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (88, 'return-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (89, 'cancellation-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (90, 'offline_payment', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (91, 'temporary_close', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (92, 'vacation_add', '{\"status\":0,\"vacation_start_date\":null,\"vacation_end_date\":null,\"vacation_note\":null}', NULL, '2023-03-04 06:25:36'), (93, 'cookie_setting', '{\"status\":0,\"cookie_text\":null}', NULL, '2023-03-04 06:25:36'); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variations` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `quantity` int(11) NOT NULL DEFAULT 1, `price` double NOT NULL DEFAULT 1, `tax` double NOT NULL DEFAULT 1, `discount` double NOT NULL DEFAULT 1, `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT 0, `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT 0, `sent_by_seller` tinyint(1) NOT NULL DEFAULT 0, `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT 1, `seen_by_seller` tinyint(1) NOT NULL DEFAULT 1, `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT 0, `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `seller_id` bigint(20) DEFAULT NULL COMMENT 'NULL=in-house, 0=all seller', `customer_id` bigint(20) DEFAULT NULL COMMENT '0 = all customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT 0.00, `max_discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT 0.00, `royality_points` decimal(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT 0.00, `cash_in_hand` decimal(50,2) NOT NULL DEFAULT 0.00, `pending_withdraw` decimal(50,2) NOT NULL DEFAULT 0.00, `total_withdraw` decimal(50,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT 0.00, `credit` decimal(50,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `is_online` tinyint(4) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `featured` tinyint(1) NOT NULL DEFAULT 0, `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `answer` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ranking` int(11) NOT NULL DEFAULT 1, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT 0.000, `debit` decimal(24,3) NOT NULL DEFAULT 0.000, `balance` decimal(24,3) NOT NULL DEFAULT 0.000, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68), (195, '2022_12_17_035723_few_field_add_to_coupons_table', 69), (196, '2022_12_26_231606_add_coupon_discount_bearer_and_admin_commission_to_orders', 69), (197, '2023_01_04_003034_alter_billing_addresses_change_zip', 69), (198, '2023_01_05_121600_change_id_to_transactions_table', 69), (199, '2023_02_02_113330_create_product_tag_table', 70), (200, '2023_02_02_114518_create_tags_table', 70), (201, '2023_02_02_152248_add_tax_model_to_products_table', 70), (202, '2023_02_02_152718_add_tax_model_to_order_details_table', 70), (203, '2023_02_02_171034_add_tax_type_to_carts', 70), (204, '2023_02_06_124447_add_color_image_column_to_products_table', 70), (205, '2023_02_07_120136_create_withdrawal_methods_table', 70), (206, '2023_02_07_175939_add_withdrawal_method_id_and_withdrawal_method_fields_to_withdraw_requests_table', 70), (207, '2023_02_08_143314_add_vacation_start_and_vacation_end_and_vacation_not_column_to_shops_table', 70), (208, '2023_02_09_104656_add_payment_by_and_payment_not_to_orders_table', 70); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT 0, `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_amount` double NOT NULL DEFAULT 0, `admin_commission` decimal(8,2) NOT NULL DEFAULT 0.00, `is_pause` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT 0, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_discount_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `shipping_method_id` bigint(20) NOT NULL DEFAULT 0, `shipping_cost` double(8,2) NOT NULL DEFAULT 0.00, `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT 0, `expected_delivery_date` date DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT 0.00, `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT 0, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int(11) NOT NULL DEFAULT 0, `price` double NOT NULL DEFAULT 0, `tax` double NOT NULL DEFAULT 0, `discount` double NOT NULL DEFAULT 0, `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT 1, `refund_request` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT 0.00, `seller_amount` decimal(50,2) NOT NULL DEFAULT 0.00, `admin_commission` decimal(50,2) NOT NULL DEFAULT 0.00, `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT 0.00, `tax` decimal(50,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT 1, `refundable` tinyint(1) NOT NULL DEFAULT 1, `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color_image` text COLLATE utf8mb4_unicode_ci NOT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT 0, `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `unit_price` double NOT NULL DEFAULT 0, `purchase_price` double NOT NULL DEFAULT 0, `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT 1, `details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_shipping` tinyint(1) NOT NULL DEFAULT 0, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `featured_status` tinyint(1) NOT NULL DEFAULT 1, `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT 0, `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT 0.00, `qty` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_tag` -- CREATE TABLE `product_tag` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `tag_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rejected_note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_info` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT 0, `status` int(11) NOT NULL DEFAULT 1, `is_saved` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT 0, `withdrawn` double NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT 0.00, `pending_withdraw` double(8,2) NOT NULL DEFAULT 0.00, `delivery_charge_earned` double(8,2) NOT NULL DEFAULT 0.00, `collected_cash` double(8,2) NOT NULL DEFAULT 0.00, `total_tax_collected` double(8,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT 0.00, `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `vacation_start_date` date DEFAULT NULL, `vacation_end_date` date DEFAULT NULL, `vacation_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_status` tinyint(4) NOT NULL DEFAULT 0, `temporary_close` tinyint(4) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` bigint(20) UNSIGNED NOT NULL, `tag` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` int(10) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT 0, `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT 0, `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT 0.000, `debit` decimal(24,3) NOT NULL DEFAULT 0.000, `admin_bonus` decimal(24,3) NOT NULL DEFAULT 0.000, `balance` decimal(24,3) NOT NULL DEFAULT 0.000, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdrawal_methods` -- CREATE TABLE `withdrawal_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` tinyint(4) NOT NULL DEFAULT 0, `is_active` tinyint(4) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `withdrawal_method_id` bigint(20) UNSIGNED DEFAULT NULL, `withdrawal_method_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`withdrawal_method_fields`)), `transaction_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_tag` -- ALTER TABLE `product_tag` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=94; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=209; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_tag` -- ALTER TABLE `product_tag` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK! 88backup/database_v14.5.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Mar 27, 2024 at 03:15 AM -- Server version: 5.7.39 -- PHP Version: 8.2.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `install` -- -- -------------------------------------------------------- -- -- Table structure for table `addon_settings` -- CREATE TABLE `addon_settings` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `key_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `live_values` longtext COLLATE utf8mb4_unicode_ci, `test_values` longtext COLLATE utf8mb4_unicode_ci, `settings_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'live', `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `addon_settings` -- INSERT INTO `addon_settings` (`id`, `key_name`, `live_values`, `test_values`, `settings_type`, `mode`, `is_active`, `created_at`, `updated_at`, `additional_data`) VALUES ('070c6bbd-d777-11ed-96f4-0c7a158e4469', 'twilio', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:29', NULL), ('070c766c-d777-11ed-96f4-0c7a158e4469', '2factor', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:36', NULL), ('0d8a9308-d6a5-11ed-962c-0c7a158e4469', 'mercadopago', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-27 11:57:11', '{\"gateway_title\":\"Mercadopago\",\"gateway_image\":null}'), ('0d8a9e49-d6a5-11ed-962c-0c7a158e4469', 'liqpay', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:31', '{\"gateway_title\":\"Liqpay\",\"gateway_image\":null}'), ('101befdf-d44b-11ed-8564-0c7a158e4469', 'paypal', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:41:32', '{\"gateway_title\":\"Paypal\",\"gateway_image\":null}'), ('133d9647-cabb-11ed-8fec-0c7a158e4469', 'hyper_pay', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:42', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('1821029f-d776-11ed-96f4-0c7a158e4469', 'msg91', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:48', NULL), ('18210f2b-d776-11ed-96f4-0c7a158e4469', 'nexmo', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('18fbb21f-d6ad-11ed-962c-0c7a158e4469', 'foloosi', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:33', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('2767d142-d6a1-11ed-962c-0c7a158e4469', 'paytm', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-22 06:30:55', '{\"gateway_title\":\"Paytm\",\"gateway_image\":null}'), ('3201d2e6-c937-11ed-a424-0c7a158e4469', 'amazon_pay', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:07', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('4593b25c-d6a1-11ed-962c-0c7a158e4469', 'paytabs', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:51', '{\"gateway_title\":\"Paytabs\",\"gateway_image\":null}'), ('4e9b8dfb-e7d1-11ed-a559-0c7a158e4469', 'bkash', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:39:42', '{\"gateway_title\":\"Bkash\",\"gateway_image\":null}'), ('544a24a4-c872-11ed-ac7a-0c7a158e4469', 'fatoorah', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:24', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('58c1bc8a-d6ac-11ed-962c-0c7a158e4469', 'ccavenue', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:42:38', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-643783f01d386.png\"}'), ('5e2d2ef9-d6ab-11ed-962c-0c7a158e4469', 'thawani', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:40', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-64378f9856f29.png\"}'), ('60cc83cc-d5b9-11ed-b56f-0c7a158e4469', 'sixcash', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:16:17', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-12-6436774e77ff9.png\"}'), ('68579846-d8e8-11ed-8249-0c7a158e4469', 'alphanet_sms', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('6857a2e8-d8e8-11ed-8249-0c7a158e4469', 'sms_to', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('74c30c00-d6a6-11ed-962c-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:37:43', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('74e46b0a-d6aa-11ed-962c-0c7a158e4469', 'tap', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:09', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('761ca96c-d1eb-11ed-87ca-0c7a158e4469', 'swish', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('7b1c3c5f-d2bd-11ed-b485-0c7a158e4469', 'payfast', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:13', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('8592417b-d1d1-11ed-a984-0c7a158e4469', 'esewa', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:38', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('9162a1dc-cdf1-11ed-affe-0c7a158e4469', 'viva_wallet', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', 'payment_config', 'test', 0, NULL, NULL, NULL), ('998ccc62-d6a0-11ed-962c-0c7a158e4469', 'stripe', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:55', '{\"gateway_title\":\"Stripe\",\"gateway_image\":null}'), ('a3313755-c95d-11ed-b1db-0c7a158e4469', 'iyzi_pay', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a76c8993-d299-11ed-b485-0c7a158e4469', 'momo', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', 'payment_config', 'live', 0, NULL, '2023-08-30 04:19:28', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a8608119-cc76-11ed-9bca-0c7a158e4469', 'moncash', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:34', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('ad5af1c1-d6a2-11ed-962c-0c7a158e4469', 'razor_pay', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:00', '{\"gateway_title\":\"Razor pay\",\"gateway_image\":null}'), ('ad5b02a0-d6a2-11ed-962c-0c7a158e4469', 'senang_pay', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', 'payment_config', 'test', 0, NULL, '2023-08-27 09:58:57', '{\"gateway_title\":\"Senang pay\",\"gateway_image\":null}'), ('b6c333f6-d8e9-11ed-8249-0c7a158e4469', 'akandit_sms', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b6c33c87-d8e9-11ed-8249-0c7a158e4469', 'global_sms', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b8992bd4-d6a0-11ed-962c-0c7a158e4469', 'paymob_accept', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', 'payment_config', 'test', 0, NULL, NULL, '{\"gateway_title\":\"Paymob accept\",\"gateway_image\":null}'), ('c41c0dcd-d119-11ed-9f67-0c7a158e4469', 'maxicash', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:49:15', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('c9249d17-cd60-11ed-b879-0c7a158e4469', 'pvit', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', 'payment_config', 'test', 0, NULL, NULL, NULL), ('cb0081ce-d775-11ed-96f4-0c7a158e4469', 'releans', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('d4f3f5f1-d6a0-11ed-962c-0c7a158e4469', 'flutterwave', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:41:03', '{\"gateway_title\":\"Flutterwave\",\"gateway_image\":null}'), ('d822f1a5-c864-11ed-ac7a-0c7a158e4469', 'paystack', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:45', '{\"gateway_title\":\"Paystack\",\"gateway_image\":null}'), ('daec8d59-c893-11ed-ac7a-0c7a158e4469', 'xendit', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:46', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('dc0f5fc9-d6a5-11ed-962c-0c7a158e4469', 'worldpay', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:26', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('e0450278-d8eb-11ed-8249-0c7a158e4469', 'signal_wire', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('e0450b40-d8eb-11ed-8249-0c7a158e4469', 'paradox', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-09-10 01:14:01', NULL), ('ea346efe-cdda-11ed-affe-0c7a158e4469', 'ssl_commerz', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:43:49', '{\"gateway_title\":\"Ssl commerz\",\"gateway_image\":null}'), ('eed88336-d8ec-11ed-8249-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149c546-d8ea-11ed-8249-0c7a158e4469', 'viatech', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149cd9c-d8ea-11ed-8249-0c7a158e4469', '019_sms', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `add_fund_bonus_categories` -- CREATE TABLE `add_fund_bonus_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `bonus_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `min_add_money_amount` double(14,2) NOT NULL DEFAULT '0.00', `max_bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `start_date_time` datetime DEFAULT NULL, `end_date_time` datetime DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `identify_image` text COLLATE utf8mb4_unicode_ci, `identify_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identify_number` int(11) DEFAULT NULL, `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button_text` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `background_color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1,\"default\":true}]', '2020-10-11 07:53:02', '2023-10-13 11:34:53'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2023-01-10 05:51:56'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\",\"primary_light\":\"#CFDFFB\"}', '2020-10-11 13:53:02', '2024-03-27 03:12:32'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (59, 'forgot_password_verification', 'email', NULL, NULL), (61, 'stock_limit', '10', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (87, 'refund-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (88, 'return-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (89, 'cancellation-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (90, 'offline_payment', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (91, 'temporary_close', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (92, 'vacation_add', '{\"status\":0,\"vacation_start_date\":null,\"vacation_end_date\":null,\"vacation_note\":null}', NULL, '2023-03-04 06:25:36'), (93, 'cookie_setting', '{\"status\":0,\"cookie_text\":null}', NULL, '2023-03-04 06:25:36'), (94, 'maximum_otp_hit', '0', NULL, '2023-06-13 13:04:49'), (95, 'otp_resend_time', '0', NULL, '2023-06-13 13:04:49'), (96, 'temporary_block_time', '0', NULL, '2023-06-13 13:04:49'), (97, 'maximum_login_hit', '0', NULL, '2023-06-13 13:04:49'), (98, 'temporary_login_block_time', '0', NULL, '2023-06-13 13:04:49'), (104, 'apple_login', '[{\"login_medium\":\"apple\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":0,\"team_id\":\"\",\"key_id\":\"\",\"service_file\":\"\",\"redirect_url\":\"\"}]', NULL, '2023-10-13 05:34:53'), (105, 'ref_earning_status', '0', NULL, '2023-10-13 05:34:53'), (106, 'ref_earning_exchange_rate', '0', NULL, '2023-10-13 05:34:53'), (107, 'guest_checkout', '0', NULL, '2023-10-13 11:34:53'), (108, 'minimum_order_amount', '0', NULL, '2023-10-13 11:34:53'), (109, 'minimum_order_amount_by_seller', '0', NULL, '2023-10-13 11:34:53'), (110, 'minimum_order_amount_status', '0', NULL, '2023-10-13 11:34:53'), (111, 'admin_login_url', 'admin', NULL, '2023-10-13 11:34:53'), (112, 'employee_login_url', 'employee', NULL, '2023-10-13 11:34:53'), (113, 'free_delivery_status', '0', NULL, '2023-10-13 11:34:53'), (114, 'free_delivery_responsibility', 'admin', NULL, '2023-10-13 11:34:53'), (115, 'free_delivery_over_amount', '0', NULL, '2023-10-13 11:34:53'), (116, 'free_delivery_over_amount_seller', '0', NULL, '2023-10-13 11:34:53'), (117, 'add_funds_to_wallet', '0', NULL, '2023-10-13 11:34:53'), (118, 'minimum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (119, 'maximum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (120, 'user_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (121, 'seller_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (122, 'delivery_man_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (123, 'whatsapp', '{\"status\":1,\"phone\":\"00000000000\"}', NULL, '2023-10-13 11:34:53'), (124, 'currency_symbol_position', 'left', NULL, '2023-10-13 11:34:53'), (148, 'company_reliability', '[{\"item\":\"delivery_info\",\"title\":\"Fast Delivery all across the country\",\"image\":\"\",\"status\":1},{\"item\":\"safe_payment\",\"title\":\"Safe Payment\",\"image\":\"\",\"status\":1},{\"item\":\"return_policy\",\"title\":\"7 Days Return Policy\",\"image\":\"\",\"status\":1},{\"item\":\"authentic_product\",\"title\":\"100% Authentic Products\",\"image\":\"\",\"status\":1}]', NULL, NULL), (149, 'react_setup', '{\"status\":0,\"react_license_code\":\"\",\"react_domain\":\"\",\"react_platform\":\"\"}', NULL, '2024-01-09 04:05:15'), (150, 'app_activation', '{\"software_id\":\"\",\"is_active\":0}', NULL, '2024-01-09 04:05:15'), (151, 'shop_banner', '', NULL, '2023-10-13 11:34:53'), (152, 'map_api_status', '1', NULL, '2024-03-27 03:12:32'); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0', `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `notification_receiver` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'admin, seller, customer, deliveryman', `seen_notification` tinyint(1) DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `seller_id` bigint(20) DEFAULT NULL COMMENT 'NULL=in-house, 0=all seller', `customer_id` bigint(20) DEFAULT NULL COMMENT '0 = all customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT '0.00', `cash_in_hand` decimal(50,2) NOT NULL DEFAULT '0.00', `pending_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `total_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT '0.00', `credit` decimal(50,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `is_online` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `digital_product_otp_verifications` -- CREATE TABLE `digital_product_otp_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `guest_users` -- CREATE TABLE `guest_users` ( `id` bigint(20) UNSIGNED NOT NULL, `ip_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fcm_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `guest_users` -- INSERT INTO `guest_users` (`id`, `ip_address`, `fcm_token`, `created_at`, `updated_at`) VALUES (1, '::1', NULL, '2024-02-19 08:35:50', NULL), (2, '::1', NULL, '2024-03-27 03:10:49', NULL), (3, '::1', NULL, '2024-03-27 03:12:35', NULL); -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68), (195, '2022_12_17_035723_few_field_add_to_coupons_table', 69), (196, '2022_12_26_231606_add_coupon_discount_bearer_and_admin_commission_to_orders', 69), (197, '2023_01_04_003034_alter_billing_addresses_change_zip', 69), (198, '2023_01_05_121600_change_id_to_transactions_table', 69), (199, '2023_02_02_113330_create_product_tag_table', 70), (200, '2023_02_02_114518_create_tags_table', 70), (201, '2023_02_02_152248_add_tax_model_to_products_table', 70), (202, '2023_02_02_152718_add_tax_model_to_order_details_table', 70), (203, '2023_02_02_171034_add_tax_type_to_carts', 70), (204, '2023_02_06_124447_add_color_image_column_to_products_table', 70), (205, '2023_02_07_120136_create_withdrawal_methods_table', 70), (206, '2023_02_07_175939_add_withdrawal_method_id_and_withdrawal_method_fields_to_withdraw_requests_table', 70), (207, '2023_02_08_143314_add_vacation_start_and_vacation_end_and_vacation_not_column_to_shops_table', 70), (208, '2023_02_09_104656_add_payment_by_and_payment_not_to_orders_table', 70), (209, '2023_03_27_150723_add_expires_at_to_phone_or_email_verifications', 71), (210, '2023_04_17_095721_create_shop_followers_table', 71), (211, '2023_04_17_111249_add_bottom_banner_to_shops_table', 71), (212, '2023_04_20_125423_create_product_compares_table', 71), (213, '2023_04_30_165642_add_category_sub_category_and_sub_sub_category_add_in_product_table', 71), (214, '2023_05_16_131006_add_expires_at_to_password_resets', 71), (215, '2023_05_17_044243_add_visit_count_to_tags_table', 71), (216, '2023_05_18_000403_add_title_and_subtitle_and_background_color_and_button_text_to_banners_table', 71), (217, '2023_05_21_111300_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_users_table', 71), (218, '2023_05_21_111600_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_phone_or_email_verifications_table', 71), (219, '2023_05_21_112215_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_password_resets_table', 71), (220, '2023_06_04_210726_attachment_lenght_change_to_reviews_table', 71), (221, '2023_06_05_115153_add_referral_code_and_referred_by_to_users_table', 72), (222, '2023_06_21_002658_add_offer_banner_to_shops_table', 72), (223, '2023_07_08_210747_create_most_demandeds_table', 72), (224, '2023_07_31_111419_add_minimum_order_amount_to_sellers_table', 72), (225, '2023_08_03_105256_create_offline_payment_methods_table', 72), (226, '2023_08_07_131013_add_is_guest_column_to_carts_table', 72), (227, '2023_08_07_170601_create_offline_payments_table', 72), (228, '2023_08_12_102355_create_add_fund_bonus_categories_table', 72), (229, '2023_08_12_215346_create_guest_users_table', 72), (230, '2023_08_12_215659_add_is_guest_column_to_orders_table', 72), (231, '2023_08_12_215933_add_is_guest_column_to_shipping_addresses_table', 72), (232, '2023_08_15_000957_add_email_column_toshipping_address_table', 72), (233, '2023_08_17_222330_add_identify_related_columns_to_admins_table', 72), (234, '2023_08_20_230624_add_sent_by_and_send_to_in_notifications_table', 72), (235, '2023_08_20_230911_create_notification_seens_table', 72), (236, '2023_08_21_042331_add_theme_to_banners_table', 72), (237, '2023_08_24_150009_add_free_delivery_over_amount_and_status_to_seller_table', 72), (238, '2023_08_26_161214_add_is_shipping_free_to_orders_table', 72), (239, '2023_08_26_173523_add_payment_method_column_to_wallet_transactions_table', 72), (240, '2023_08_26_204653_add_verification_status_column_to_orders_table', 72), (241, '2023_08_26_225113_create_order_delivery_verifications_table', 72), (242, '2023_09_03_212200_add_free_delivery_responsibility_column_to_orders_table', 72), (243, '2023_09_23_153314_add_shipping_responsibility_column_to_orders_table', 72), (244, '2023_09_25_152733_create_digital_product_otp_verifications_table', 72), (245, '2023_09_27_191638_add_attachment_column_to_support_ticket_convs_table', 73), (246, '2023_10_01_205117_add_attachment_column_to_chattings_table', 73), (247, '2023_10_07_182714_create_notification_messages_table', 73), (248, '2023_10_21_113354_add_app_language_column_to_users_table', 73), (249, '2023_10_21_123433_add_app_language_column_to_sellers_table', 73), (250, '2023_10_21_124657_add_app_language_column_to_delivery_men_table', 73), (251, '2023_10_22_130225_add_attachment_to_support_tickets_table', 73), (252, '2023_10_25_113233_make_message_nullable_in_chattings_table', 73), (253, '2023_10_30_152005_make_attachment_column_type_change_to_reviews_table', 73), (254, '2024_01_14_192546_add_slug_to_shops_table', 74), (255, '2024_01_25_175421_add_country_code_to_emergency_contacts_table', 75), (256, '2024_02_01_200417_add_denied_count_and_approved_count_to_refund_requests_table', 75), (257, '2024_03_11_130425_add_seen_notification_and_notification_receiver_to_chattings_table', 76), (258, '2024_03_12_123322_update_images_column_in_refund_requests_table', 76), (259, '2024_03_21_134659_change_denied_note_column_type_to_text', 76); -- -------------------------------------------------------- -- -- Table structure for table `most_demandeds` -- CREATE TABLE `most_demandeds` ( `id` bigint(20) UNSIGNED NOT NULL, `banner` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `sent_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'system', `sent_to` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT '0', `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notification_messages` -- CREATE TABLE `notification_messages` ( `id` bigint(20) UNSIGNED NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `notification_messages` -- INSERT INTO `notification_messages` (`id`, `user_type`, `key`, `message`, `status`, `created_at`, `updated_at`) VALUES (1, 'customer', 'order_pending_message', 'order pen message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (2, 'customer', 'order_confirmation_message', 'Order con Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (3, 'customer', 'order_processing_message', 'Order pro Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (4, 'customer', 'out_for_delivery_message', 'Order ouut Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (5, 'customer', 'order_delivered_message', 'Order del Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (6, 'customer', 'order_returned_message', 'Order hh Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (7, 'customer', 'order_failed_message', 'Order fa Message', 0, '2023-10-30 11:02:55', '2024-03-27 03:12:32'), (8, 'customer', 'order_canceled', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (9, 'customer', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (10, 'customer', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (11, 'customer', 'message_from_delivery_man', 'customize your message from delivery man message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (12, 'customer', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (13, 'customer', 'fund_added_by_admin_message', 'customize your fund added by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (14, 'seller', 'new_order_message', 'customize your new order message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (15, 'seller', 'refund_request_message', 'customize your refund request message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (16, 'seller', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (17, 'seller', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (18, 'seller', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (19, 'seller', 'delivery_man_assign_by_admin_message', 'customize your delivery man assign by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (20, 'seller', 'order_delivered_message', 'customize your order delivered message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (21, 'seller', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (22, 'seller', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (23, 'seller', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (24, 'seller', 'refund_request_status_changed_by_admin', 'customize your refund request status changed by admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (25, 'delivery_man', 'new_order_assigned_message', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (26, 'delivery_man', 'expected_delivery_date', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (27, 'delivery_man', 'delivery_man_charge', 'customize your delivery man charge message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (28, 'delivery_man', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (29, 'delivery_man', 'order_rescheduled_message', 'customize your order rescheduled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (30, 'delivery_man', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (31, 'delivery_man', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (32, 'delivery_man', 'message_from_admin', 'customize your message from admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (33, 'delivery_man', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (34, 'delivery_man', 'cash_collect_by_admin_message', 'customize your cash collect by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (35, 'delivery_man', 'cash_collect_by_seller_message', 'customize your cash collect by seller message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (36, 'delivery_man', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (37, 'seller', 'product_request_approved_message', 'customize your product request approved message message', 1, '2024-02-19 08:35:38', '2024-02-19 08:35:38'), (38, 'seller', 'product_request_rejected_message', 'customize your product request rejected message message', 1, '2024-02-19 08:35:38', '2024-02-19 08:35:38'); -- -------------------------------------------------------- -- -- Table structure for table `notification_seens` -- CREATE TABLE `notification_seens` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `notification_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payments` -- CREATE TABLE `offline_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `payment_info` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payment_methods` -- CREATE TABLE `offline_payment_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `method_informations` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_note` text COLLATE utf8mb4_unicode_ci, `order_amount` double NOT NULL DEFAULT '0', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `is_pause` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_discount_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `shipping_responsibility` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `is_shipping_free` tinyint(1) NOT NULL DEFAULT '0', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `verification_status` tinyint(4) NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT '0', `expected_delivery_date` date DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_delivery_bearer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_delivery_verifications` -- CREATE TABLE `order_delivery_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `image` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(50,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT '0.00', `tax` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payment_requests` -- CREATE TABLE `payment_requests` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `payer_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_amount` decimal(24,2) NOT NULL DEFAULT '0.00', `gateway_callback_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `success_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `failure_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currency_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'USD', `payment_method` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `is_paid` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `payer_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `external_redirect_link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `attribute_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attribute` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_platform` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci, `color_image` text COLLATE utf8mb4_unicode_ci NOT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT '1', `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` text COLLATE utf8mb4_unicode_ci, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_compares` -- CREATE TABLE `product_compares` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL COMMENT 'customer_id', `product_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_tag` -- CREATE TABLE `product_tag` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `tag_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `approved_count` tinyint(4) NOT NULL DEFAULT '0', `denied_count` tinyint(4) NOT NULL DEFAULT '0', `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `is_saved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0', `minimum_order_amount` double(8,2) NOT NULL DEFAULT '0.00', `free_delivery_status` int(11) NOT NULL DEFAULT '0', `free_delivery_over_amount` double(8,2) NOT NULL DEFAULT '0.00', `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `bottom_banner` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `offer_banner` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_start_date` date DEFAULT NULL, `vacation_end_date` date DEFAULT NULL, `vacation_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_status` tinyint(4) NOT NULL DEFAULT '0', `temporary_close` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shop_followers` -- CREATE TABLE `shop_followers` ( `id` bigint(20) UNSIGNED NOT NULL, `shop_id` int(11) NOT NULL, `user_id` int(11) NOT NULL COMMENT 'Customer ID', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` bigint(20) UNSIGNED NOT NULL, `tag` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `visit_count` bigint(20) UNSIGNED NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` int(10) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0', `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL, `login_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `referral_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referred_by` int(11) DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`, `login_hit_count`, `is_temp_blocked`, `temp_block_time`, `referral_code`, `referred_by`, `app_language`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, 0, NULL, NULL, NULL, 'en'); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `admin_bonus` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdrawal_methods` -- CREATE TABLE `withdrawal_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` tinyint(4) NOT NULL DEFAULT '0', `is_active` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `withdrawal_method_id` bigint(20) UNSIGNED DEFAULT NULL, `withdrawal_method_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `transaction_note` text COLLATE utf8mb4_unicode_ci, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `addon_settings` -- ALTER TABLE `addon_settings` ADD PRIMARY KEY (`id`), ADD KEY `payment_settings_id_index` (`id`); -- -- Indexes for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `guest_users` -- ALTER TABLE `guest_users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `most_demandeds` -- ALTER TABLE `most_demandeds` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_messages` -- ALTER TABLE `notification_messages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_seens` -- ALTER TABLE `notification_seens` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `offline_payments` -- ALTER TABLE `offline_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD PRIMARY KEY (`id`), ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_compares` -- ALTER TABLE `product_compares` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_tag` -- ALTER TABLE `product_tag` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shop_followers` -- ALTER TABLE `shop_followers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=153; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `guest_users` -- ALTER TABLE `guest_users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=260; -- -- AUTO_INCREMENT for table `most_demandeds` -- ALTER TABLE `most_demandeds` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notification_messages` -- ALTER TABLE `notification_messages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39; -- -- AUTO_INCREMENT for table `notification_seens` -- ALTER TABLE `notification_seens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `offline_payments` -- ALTER TABLE `offline_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `password_resets` -- ALTER TABLE `password_resets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_compares` -- ALTER TABLE `product_compares` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_tag` -- ALTER TABLE `product_tag` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shop_followers` -- ALTER TABLE `shop_followers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!0 backup/public.zipnu[PK V$Rprofile/PKV$R#F43Ĥ$profile/2020-12-31-5fedd68c83f40.pngUp]5bff,fbY-^쿻nܸ34Ԭʬ̑#r9BANNRBD x 弝 3HRDP#|GzBrt; *:hLq[瀫> Us2drVju4)+g· YM U4l!<6S(82764终>6zUhiC^ƄߖCx)&R'JzLy|b9vR|E ċ:ޟG=m.dp̺1'җ_r~a?cz򋊼))WSJ}|N"69! W\ t!s(g/=NŗC52{GJ̽!R)L}.vFoյ:"m7 %{wGNM")"gF_z&tmqbda:)wrN?0ϤR`qfQ9 _#4}41 `쩘W &9GG\M h?U.߀6rd\O7s[? BO]B&֝&¢ƎDR":rܨֆi0 #ѹaE?]fY`a\FkXuHݵ5+UWc^7u~LܧY>z "mz۬4NZ n)X#! %x;Jѿzbܿ1JzmnNElO>3c0<zޤ}Xr,ɳHeADt.PUx*85dˬsWʺuEճ` fiͣm.*[uAN=WN 9c e%u}οWqv5P}Y04mgF0>DŽÑ|qW{̬<uN9ͽ*ɻE/F[/YǓyjS@EqvhۣGzj(LԷBt?|]RbV+gemC_R=P{.R%:1 MUZřos5  v`%>D;JN1>-R>sOޮ_ӥF)/b>XC wGA9~тKW+Sldȫ(ߘ[, Q$}~JNU }:,,cͩ,/W67 yo_w/ 99p)B^ Mfʜ]&'nxIcɝL }S7wvyf&`?]uhi+R5x7w덽آE ƥZn5WNOFeAmes7'SB-:g|rmO ~1)J{R9tM&019p ޭ`ICLM 4,]VM=h&.}~{.ήf6[Py.lZ#j|yQ FJ!~)d!P4B$G%~~SFdy  ?S6`MM$3iw8:% 6=dd2 kɊ߮iֽyTCG裱? 2BIN &|+HYW@[1WZfu|ڿ0@EjGNvT~s'' R ־E\B5~¼ZL05y} u t*~q^X ˞DonԑSSSuЁ HEf'4ba q g_ͥf-&oâGq@ϏHJj

cnt4-<ՑpN1FVS\D!o?ܻ?_?2 Wܞ̜ 0U-'&ΉF1<}*y!} 2o =. "7tҔx͛w}#@qx@^r"OOU͎jZ'zb4>`"[At/jgv]Mu'KCNlJA*~Gc>'”ZJ0DRꊹn8y<<G%ebtbxo:hjߋD"D B[8ZWշj8L'h)g&h8ǃz1?!HLη\4t.,ՁLU>&z?Ńg$iQsnbIcC ĄC(4 hW8L&~5os1fLLEj4}D Zj:L@'$,,^ID.?jK$t0 Hcֶa݃Ã=uaFr|زia.?¼ Vi KKf-@]0Ky؁8ҕ1(nL;0Q\~Œ5Ո,45tzL23CxP%r8`;Ӹa>u/q^ H Ǧg=4R)L9v7 <]pr/웴 Pq_fΊ6:hF$ygy6HցPgК*:s\|]ǜ8f?WKlÈjqNLƪ99SiX4fYߖ Ƈ2'$@F0Q ]*X% $Ucc2wP''c27wDD= p94T`t2Cfu]qr+S9&,\DF1B0(_M ڞi_6ok ]ӏ*,98z} ?D*nwQ#.ZRұ |M Z$AC(>&"CUёN ȮBZ]o2߽LJku(rp}"5+K;Dˁ+ ʌMKIk=A 05%0YzFM XaUHgg2߉7  .tOM$8u}OT_5+A>~ƻГ5ݒ 3pBڞqQ]57*FVSS+,}\dLL@p?zyuuHUжSf\Y%<ii<,am!TaxQ&bu/=@ [̘ =g;q539Fk/Qxiԝ$}zbv'IIq}}Fi[_8y֪opJJB%jG P g{Ծ~l2ڇB[3Wbe*7%EEH99o ᑷB?]C7p.#^/+#t-mzHm5gżQl:y̗_^ 1H<<c9~&SOB=|kBxJ_{ }-($KOE'rg o5 gr? d0 S8Qdg]}ִ501u7B+6Kic<%!Xm'PX;Jűz=;BIE;c; zdGƇ˳r[ HB<:}IH7,t#Y):\P!)>Em;z>XAB#"RېEKAcU1;+EU6<60Fn1A)+WJixaCC'(0yKF-Xf"Z^9gѕ7@F^^?0O;:NtуEDCvNüYY]*7EE %Y_H9ߧjZXXhmtu358λ8:NǸ XL7/V1'FiT]>X[n,N΂ӏ4K(/c\XuhbxxE5 }gC$5~\䲒`vWQGΜ%̻OO0 ЇTu֔S5nv &do1rs-!!Cg{w}nnBJ]_2 5,jj/.i'E .S:NvjU i{mf4>-Q7knXwND t HtX ;߻Qk+fkChٙ^9-=Ӗ^Mۑ*pWbaK+3C:/ r¯qe 'ﲯc?6A3XQ *cAHM ,7@ly:l@)?epu", TPy`V?e0Uz+-.6%gRװѢ1JPT]˖lfm~:>v b!aM-fY |AZ?SQ ?(i\jq^쓉 4z!73Yڄos]Nrݾ+Ğ;<*BHM.􀒮.sc 62EL=(U.p&}r} IUT $z{`硦],fe]\de`" $ LrE/;FlR^K).*A,[bHǴ;lz|G%z/q#֤Aj:FB:-vJ.,2amuiS\rOfkOMNU6c. [2z` co`٘J(4sQv!*PkMID^Wg(d{ _`N4*ILEAm$6ʞ Dv2bbP#mj%yE,30|H6%UVmE=򁒑p3$}|X!yKνsNɂ7r-I?SƧsH%㾘8sb#^:8'+5бIo=G5NI FY%/o&\, +v)hox:uiBZ^Xc&#Yt b6^]-($fxoc^cyS~{v~^0E7ֶA30yޞ˪ 7WZK-[ tgϚ}&Mq|@:T%z̫ѿr~]5eq|r'-WYXrWxSx^Cؑ^ @Y^6.Tn˴5bY̿7aYXґP.Uwvr` 77V6u"X#YY&&&߷a6˩$±⍝`$K vzUp9+&#/2;o0H$-a{&$^?މƚ۰qDXz8 ذ-uWQ XiALq:g=0n@G 5ׯ@s%@y>|\ -WTP4 {z0R@bM".Wg&>0~dWTChN5w5'E" ;opbgl7Y }uuc9 %EKuOW^Wq1Y޳Q^Y[f`'}dd~v7jkE NO20K @EE%ܲz5Y=@4X@pVVV޼`O{*~,}U'~r#,u)Ǚf# /^!LS4"Մ4(r<g..h thc{ yZÌ.m!/*^6|4'U*Yh/Y086 jz7KN?;3ZaG`MѤ{%BZvl&Ѱ~r2`7ždv(ubl񯳨Ofmg=/q{'D&Gv{sY] >q&q\Ήd}A_r]~ITA 6w9hM3}x|sN"V++5Hd8]q$Gjb 1I?!LFAR6n:F~>"^9+MRjq<={mmFђInwy` ;me}(y̚xRh }??\Vg^fףeqMp9g5\cӍ ۮ|;n ldnVjwo mjb<[>+}%i!_S-"cͽBc`;! ?ya`]]!e](!C5-yR~b S wrj-:_ GN[24yr8ʶ>-E `xz {k"DZ'J539pY6U7X/_JT50 b;%X܍G `٦$MMR޷4عa|^,:XbU1UMerMCWV NBY#^ƉpKR - ?q"5ЀbFN<9;;D->yϵqፄҐ ?_*+$;,z38kfžD؝0fTJQPDRh,6O=hQȓ`NS9ĝvs:9N-u/Oj Yޥ¨xE:rM-+;_7žTlY 29-hTb `FAj r,y4B }0|ڍji'咎J͘ED aaIp#+Bo *Fε!?P29# *6F^]9;or>^h7ˈ4;JC19:ʭ<Kd#hӒR_ (Lc- &Ajh+l[>@ܿ&]]O-"UiXizCFk܀1i}% 52bZf;T~Idf|[%?E0)ƍ#rȱ"".Rj4TZ9$gi /um{*@`#]!Oj1vOZ-4Lk/e uVh59LD ̿#VD4P<i^z@.FB$eɫM, $ 6."TxP%C':b8 NÄiejZ1m:87gh' Il@ԈbpH)LK[_ Ht.;7X_cj㉲|mO ^ѣ\8vm9 }eHA_'j3$]>eeeB=`:'錾0[1{C=흓ƫ)_%U1g}QOٟH_Tt,1)nTnZO]R+a]1{.%t8HoFmvG$wOs9AڬrQd?xtگi}#nO;%'`MM2*8k4s<}(( uE ^a1*""i>159lI^ukv<=zgnltjެ]|$O=_PL>Ā'+QdIc֒6GR߈.˻&,B "B2 8$^GQ#9d,&Rj}$`.$.y,|lD2D A_d򢂉DR{Fua8$k!b +4-Lڱ՗PK:)Ia_Օ fBҲe5>u ~MNfB>nGs$p~D*>![9 ܫfo9BaRڷ%z*>'X'?0;5UU˜v{[k!nWMn8)u *%h-{L@Gڑqo5`˼9Iy>~yn?? m-+Dԕ7ݦB5ˆpO7inUCMcU9neͅ= ! dVwz٧]r>52m2E\ƽ~y&tY<\&03l~|=yb*a*R{C:^b3|p;p1I\Jppvo)>6{$_ b)J0(DB(RpDQkz^ET"%҂"|5ir2Uh7o$2ho<`J> '&UE!Ρe7S ;Gg@29WHCa@Oj3~B}3Era;B6d^@QvDEE0Gzbh[[!wnhĄ+ÁZmdR\ºG{cqXqMO ΤE?#eݹyq'G6^\?EtlPy캦~z?lo<6{@6\/OG1XYػ-=Y%bP a5HBɾ__ve\%@~")jX1U8 >4$.C~t[ڪlΖistoVA3vnT6^%\SS:[suDhڶ;ùro#vzY&k,44=vv%bi:>L.b4Rq~4n71);rpŒH?nL7H]MuH}|uO݌i )oRvN>"9HAB@yJ>IH%( SZyT,= 93DU Qjm" 3H[jƋBJM]4XlX%L]?2Qzw ZCfŠ,L {Ż|{b{F_ h"z]Y|= T]ZF7d>C^:遍2c1U~@OyEF|ItDAḤ9/ 46]QG)HUi).! 3qҒݒZ1\Ot$vr.ǜ*(([_hLI ͺ"nYupf2Yo(zz~=r,KYȴ:3 8;9i JHN9cY1aNݸf#K\TZjEJމe_'oW/ 9Fip͂%-֙D)h0am Vh-?"Z]쌁ZN1>+`e0H8@b ^T6P ,<6TDt<~g D/**̯bPdI K{Mj ?1~lKaSS ͟_?=xc~_(F=-\ K6=] Y(:qZ.Z@g uK-nK鋂pHAHrȈr6=X @\ }fbE𠯯4_yC! J8:0-+NG Ȑ՚_W`"Ƞ}<%ij\coz?qx(w=<,T~A'o=Ɋk fJ,2Өl} I a59/1y$heȠL\M 5Ig˝&>JNN%mW)T4޿ȡ{qMYVR\j]Z2Qzפo(>~j3şf8{}wg|jrv敿nAa+/`fp6?Z*1PG:K~DvΤd*0\ͽP`pOWk_af:798Hh/}b'2z (yƎFEZs/.9bEggR: jGSz@۩ بMOê+nd3 H6_Xa77n3̂Ddp<=KpwbxPO#0 Z3J|P\~"P"];T$VA6)T Sp+'eJPt:jpXԞuH鞄)X4Y~nB:P#<&MIW[2tpB>=j܀+G2YwSE hܜs6oShOk_;I;{{17G_ߨEH1<*X*(*?(-*șP/+L.` ֯\*(TlHy淲zY<<,~ /nB+qxSTshP2)q 66,8bԗ_ CUTAX5%?HM̑ ]| h$hj --=sVY5V?WIcܢWsm^Ev V3X tWĺOWt&Ψ^lxT HhT+VA)Cަ kfk.|oa!n7_e ɈaT3+Bo)_1تOOhkpYt~lMguNJM/ ]y 2H gVlh(DA?[HtЙq06REDe bM6v3帀cptpD9!,1/8KFqo[!zgT:vM rhXM"):L}Sh2+T"u0cs\EVsB˓ K\ktsJ7iN=8|Qe;;zXCB[5;:1&%f `t\8 }%;ՓdGFg}#A{=nftzl{#.[7$S2"`@.e⪦6ՐB@a`N+ivm\ y$1 3(P@6!)BtXnM^Xa\E-1mtũ \.z Zvm^_r;4]U@D%QI&thby Y;$a-%\u]+  pAQCh2OK + &*n#k 9Ԍ<#ڀ*JB pa-HKrUٽ+׵SeU9yߝħŲJu͍7[)XXS?z4!mvg掣gծJ]VwcNcB0vxDi?ːxDiIvhu!doHm=Ds?]SWq6&^?̧r&~>ro=k#nAg=X)QP?f.fmV`x_\F\cԏYIӼj2c]Mo d<#_5|8m1o .gZ:>=[5;o@Z@g>i{yP4癋fTH+c';G$緓$ [#] BL** >jB-JHSje95|er_w;R/ߐ[@']=mVi3*~:$6t-~/,<-{Q"nkۣ橵vfϧ8b> l5HGQ3CB.\\lqچjc7'yK"Y|øE`O/eˤ]&8l?Quz~k͚aO3HnvwK;ho˒mtzEwk?^< fa:Az`m3{gdQ ^ܥHiTzq Ųkls'go~ymc~k ۞)nTW2^WI٥ iշfȧ0FI>E>JJ#G''6w<35]3y[ D52ے}lƓ`$Cؚd~sz }lC(x@\" Ԓl  FWܧdr[ ? d>p.NN`ZxccuixOz91x"EK-og}hA'1Jm1zYO[2{^{],70+ONgδ5W{Jˁ'f4я* MO /B'lV3tA.sW 92<>MjtVmޚta@'@";:U$JES^vؒ]zuYSDx7ޢHºtM"o&%r-ǟbFzO-PY/LMO??y#n\e}փgH/ًϟ#3e+XJC x!}ޣx_Nx ķj Y>$soF|6Jg'+#Y fo՚FaIdAOz̫Qr⒱>R͞ XU '4i8d vf]'5ϏɺI䱠Y8gwyu*Ժ~U[|myKs[܈C} [B=gKON/ 헷t)U:LY۞PNcNGiIrs['0!ڪQ`5m7xi\ e]KSs--BKN,6et{ĩ.%,73R"D,o% ݝ°BU]|ar6h<=~ONG"JP*-ˍ%Ay/iٝ&ÀbsQaPER6^/q>糿BYw| YH1ušJl(+}mH(h=e3dhѓf>ư͐,mx1HԌ;S7YSSra<ޟ03~MY|?2N.o<:~Η^m|@b|}ot8~ lFϹs}:V]g x&a]IkRά-&R{acd"J#%xCZ!w( iS+d4VToSư+Td{ ȴi X 3Rӻ\@jۃ1{JLeIMOshF?r![,-JX-P1b1ś$:ʧ P s::a>, 0;/פR4~q]Xy{W3@T DŽ0{ʥ۳#>'dV7U@'Xtt*T-\a0AhNphTEbrRIDF:* ݳQC`TI"@C k;_0֯מjtRNO# m?W̗\{[gd}vjyn xeElZKia9WTO>ݷ#AixL];.CPq{L?N (UPEXːɢfc PڧOq͚:R~TKg`N|,e;@Uq\޾?9 i|!P=vH8Ι9ʄ%Jgz&[ٻ_x|R+ !1>}ap-k&:綿</*;҆n';zޭ+y"Oo0?^Ժ細=,gޟ6)ܕml6gŕQz}75{ؚm c;lq'uƊe[<Ă;}5, ,ךHQɨreP\WJACLBpc5:aMɹIt⿤43,Y E/q ZWL)|(ߤ9*oWw-ң +0ܗ1Нdao6 r>[7q.0fIxFv7IxZTv#u%{Ҫ\;IHR0,6Fb½h y# ^Q9m[=|ˤ|cMwjq8W^ c t|n^<4;jCJ,UTUN..hűGOZk$p䈑J;;_Q]ao}jnYxP'ƈH2=O!Ⱦ.Z A3 ü0 QT<&E0EPtɠ!B XDsv߀tުr@*no/ `3蹒D ו;j*h('u IYI)~51CDìKR2M oEA8K9wo#N9cЛ;-KGH{Рv>K'9.  p;n%KqPz|ziz7>*j;Al ꪴ&N<_|icUǨ ӊh[rvvՋ@1^rGW@˪m9qʖT~eޔ英 pbpɄٸVFsK"~ kk#f~6hqkI]蔲_ܠ,W#J`u !<ܥ͉w?VƬ%FVU9'\s~Nˢ h }=OđcD[o 0̀)W^TDb-fѧ( ͈0a%$jُp8 ʖa&.׋9-DT:].s[:0Q_6~QsivNbTx)DeUY8&su2LG] v3ƆNjsw&F?[yQ3s{Y͢VU -Hf$T EJlQ=סLo߅!>u%7G oT8f$=1W2 IP8S9]b@/N G[/Ci&)B S]Y [醙hf8k f --ˌ޹ dwKY\ǝG\gu2A5L.6\bT?s5bXPꔂ .ȫGCb:^zOmG&:X] i@c跁(py%%l^^mUUt2bnԄPaIazB|Ɨ$>?q Cۯx\t݃94(E»/R >8I;']G6IЪWtR{ȷ׭Бq>FٕX=^xP| `\{Rd1B;3ɤˎ@]>g:{T%0cik-f\LJJ&Rtg^O)ՙϑ-\_oq](W|%[63 Ztyeiii5]fQkZ}Q[@R>% q@"BUyX~3vla|Q?hR`uQF4|(G?ڥY!$V'Kd3-g#ǨY zC.ʤ3(sc}9r<=jF?T@: 4B)ʹK~Wf%P)34c\D_l WسnkJ܀^h|wɟqMT._"lO?"\!HF _S7^tS霽%- }K(o)4kksx]D703! ~h<\BtydjMIv%tdiwu_dFΏ0"38DY[ C"3ro@z_w]XXX^ѧ(ǹ!LX^`|bȮ?c yTf3o="ԕܙ O$orLBͺ!Ê+Ó%E2%mu/A/~]۸VJ-F^[ETYv$#CO4_8E= ^j#,LI DŽH>%O8\uqfuv*=L0ٹ#CHjeUCAUy$ iiX~E8D-28 M# 9K*yHHҼ;˯+H?o {9p el#D\d0i[*~֒8iv!;B2OG].r$ZXhl}ʼ!@doN1 Y1clalaNeo@Ҳ D!P1!.Uvur"7F6K[2i#,îiUs F+n<~D "6$ }g#Z2dŌƇ6|t&Å2~"j\T .\\.uVtmO,llъm t$'w`r4eG4b+;mGQIj֭N3.\.[nޤ?9Y;<$b]EβٜKf ʼn _Q،1O$蒙c_,Gv =Ȭ8A9~`%.Γ [_-:=V_%RÓǩVg&``t -gGGGOdə`&I"&"[w 31#&.a9͉7hFGL!) Y娟3CXEHDUà E*+~2.^|y=~^3;x 9R 9X[ImrC8/&7:{IүpsXPf8#G<؉[XU G_65׫p>ry/eDz)d" ]]AR|BT"/UQdC_Od4 .X8&"oS 3|\jwI4:D9GiKDN=tn}_kKBwDH <x\OyqAqUF ho>Uoa1L>)'}жw?8w'ROe ~Gʇ?| GԤ-/ink?,o ˿V9DD4@/&gK`Yap`E-x;iԕOYX #櫨šZyE2b$(Y,l)N !}Љ9߽]-6]y(]mKoAp$RT'ޑ~Y+QTDl;hX3%ѷ-Q6%>xH;%"LGz_rٚe?YS>;m6E~GHF~􂣽S|u"aʣe~:qmᳫ)"3H0DT%>lCwu( Ww}}'7Z]Q#ߚsXVYً:>{a{C"[H!'kR{m?yHS>{j Q˾zu%Fe%t9C&*Cdhԃ&2qH ["gIg+츨.F{;u5 i'6zrE7NoOeLӉCNwhl4>"Z~>~OKryD7߅N#\&wo>m{_m;C+`Иަ+ȝAzDMD;|!Bx&QpHXR?e_86KO;G|"78^m싏E'S< (U| 1!{Z)v. [J*AK ˮxOT[es@'BwhR,o*]>::;6{IQw3 _ ]6=MUI\HJc9Ud,ؼt)56___TQBDŸ=,L葻ЋQQ͘4eIQatuUUьUU,-zzJg >9>Xnf* :weVϜ__r H|=t6.$HS!)G=΃"?:/ LNnŕnw]_MIfۜTp}-\iaZxw'b? |JMϾ17DwMJ%ǝg7{ ҿ,j:7FvS: cqe^~De& 5R#}PX,bͬ-D qn9ᑇG!EC=Jæt䜦}Mؾ;X]T*`Ci15gy;q7 Ip;o &ٿT_VA3KL$|(qtpO=8~ ѦDMI:z[02)<=Q".zѓ1NʖfKyԡ'(ӂ iY7|g> 'ȱ?`iQ0ֵ|cnͣq?dEVVeuj1]Ne>jID ,I48cL8V\r r~D-{J}sB\ٽͶFuR%2ͩVo~+o #D.xo~(C1` \qNo%4Z͜d/Mtx{ZEx 藓0HKʯY;9Kڼa; :-Fb5Zwef rMg͕%(_g|9Wk,V&2yX:/sj.==:Xo.(4\ Ḁݻ'P)O h |0{,7e**p[p;I 3 и[5hf^ }N;Uf,=2aezHq8* 哾@$R=oeZXO 3CvZRAryh;M`r~(PD)seNz~R6y0k?uUSd`9WTGNRc O=W!c:fRZ td@Ӄ%8qVH {o4&V܍4\[0y.T@ 0>\q!83 (fK@9+/*?9x@yh>Rb=K=4Q~~S\d_W3TA7sۜ׶gpmoe9n7hhH=[ԋx,(T! P`>+I&JP`N,1ty lֲ3Mi(.WחWUU5DCY$ʼn#Fyu{g5JoGPxkIfǑ T;̫*O -Ƥ({Hm#rptv}.,yTf-[ :^X>+_0MT7XB{  @4H I맩J}I"XZ3܏r߆Vmh:O)*j^Y[o~(5w,:>;.4QiUogl9^%a\(CWZc_.LuK D֗A: ?SO$O} ',cpHє(nhEۭ{ L!` r0M`Ҍ330A"hwuY֖__Yc hL4q afࠬM jVwb>S֖X _ z RIM%;X[.{r? 7t١׋vkjqȑQcw^|`1>6(B|%2MzOLF)i#j,#~' r|'3$\zjܠ0r#0wuO&n]~'ƣQEN`5MF 5`] [l-dC?`ff4`^ekh=stBwG?`2(G+52˷n X+^?mo>pzV]q>ImKa>:`.[zu7qpv>L@t9|SɣޑTz9og[{[4dR%H9??x~ĬH9QqCˋf J4w  jғ*[ 78 ׯFWJU06u&sEmcɣsͼo9J.}WY-nqQ\ ~02tZ}/|5$ŶuÒIjV^J8>|rMvmtcB|4bth,>z1=uSCaӕu^?hl}m~]A3'qCXs%SHgפ8ؒziCJ`~@D!E\{gBe1T㡑Td lE4W}esX{KcWw@oKHG[U[n'f>RbǓz"W,7G4HAqلfԀS"t0-.* #;IB?:#n %/>H<Pj!w/[tMŶ-ҐJA/rV&hbN}-b!p˓~~D9s5ucD M&,.!7xE& <58;os7Pj͜MNѩ+GÙ@2:Cu^[0gߕ/ouI _x48f0 ߟ4^&Eڵ``b# X92`IXYw(hjJ >w7%jTk˻ ذ0^ Σi$ϐʲ%\˵*n@ZI}[ftArHSө:#*}}fxt^Ȭ$/ QTE[queWl;v/H돬ÔV߿c ^ccEFOxD+طf2:5`_ᾫ-)!N 6aЧ.pgTtf&U"~Uup¿4&<8iCwdwuM vߜ^8\D&2*ϦlB(bKvH3ڧ$8Pf"bK3a0IAcx@_I% eg@,쎗S,,"yG|tͳϓ~n xDi-vft뛯rte@wqQȠdrM)Bfn9;f y!_5B-F%MR8nĚdч ̱uP$))GxDe uՄ,[KG$Z"Jّ0Ybz>xh_澱X/.9^(JS 2顓% NRj"ڲ7B>F̀}9 gUr6kqǫ O,ud_ќ5GjTUz}Ep |E-ލz6zedg~C1wwgr!֟\s h3j(arLG /Xϣqj&CoK|Q=ccqZ}4+Rtn5(-ſ|H'ᮉ ߎ.֗Xhޜd98_cOSYe37p uV8֔+! N3 T(|ʒ8vXQpD!-ZH&A ZLcűF%̐a;2W';uI:C%:9EUdO}_eI]t7o%̎%TXE,oc}ƭюԢIS 7$i$&)of^n4H r_ib8&u(*IL;zkhw~cҠam2ƒEStсa9dC &ioO -+URREoR?pw0qwwTFb{NwJ%j g8XYtycq :ʁh cD77mB1 y<\a| jX,᭚Q/-g?sv! =w5Yz眻/EwUEUG3Ɯf'*(lv~ ;o(85("b#L'fa,iTMz:O!r?rF$CGHMH4hL,ft$ [ugXL,ȖԪmJ[O?'VT[l6Vk`aB?\ǥV ܈+2U0ҿ8v.M>L 5S>6)kXKyI7w3]4r^d t}䬙 Lʩ13iT дim31\SA $O ,<\2rr5@eZa)!W*c;h=fs757 ҒqyyB,*G /a)?> (>D=66T"H7Uc,&'|}u=T mrV @v=yƚՕ(B1M17a^.EC[NׇDaǃDrCTew6u"EW S,Cw\ pJU,@~Bjvy8Ą<M(Sqsefm)BI:{2GA?Gdcp(ta.KkmhӖ͍YXt6,C@T@:F&⋏hWbq)l.8*CkZA#+4pVkD:[8b0kZIPڅ4͌|dH_@ !oI[oNR VB!H)&31v"p='D\Y!!vA_#5>i0W*A:P}\Gw/K'>7 L^#~yRөٿ} zڙѝxuv+{.(T:኶MٿrWvB: "=w.2p@Lwn7Jo7V^&)敳L׮{FKK=i+^h)#]/_EBΟ5ʄ>[6 iV'HK fnsӮ.MV.KǯsU?~ yLO'x :o i7|}:~qi!+~gqޥh ƕT'f%g7KySEf+ }ܒ|G".nH[22Koyf2[#+ kp#ZWPa/fI#a# \<:[ LX'S8_?<\\9xyM>NOrc,>9x]0uwtf1i\ ^!{zo״6,~x8ۇad3NPf?v&<|2}M@6"qO+(`.W͘fZ@r:BSDˑPǃ 2MgcCVt#e,Ul#J,WsZ>ofwB\N9yQ+//%/9@I:z c`MLњJi 1 1oʌl뾽XEݟ}g^%gVV$]y&*9lUyiI$f:6gA @Ly9bcI [7౸LNqa`_ J}2䭐{ZY\QǕyϕOND͇$W\m:/$;Vn¢)JFBB񣿗eNi N9L ~4JR"GQ3\Bl6srux.7~1#*wU%"5[bd%euff;c5%UԄB9>)+w31 ^ɌO)B21H6/#nq-H^;*]x&)@DQ|W;@`GŌuf@s묃GM!ϩMGUm/1r~z,hCg4]R )p҅ǒE_;N2[IP=zX3{Xb]/ Oqd9rFtj;Fzo)h.]ϧ6T?8wOhWBqΖӗWEĢ@pݸo$Mrjynݹ7c8LzKzL=s&^ߜ"rD.ƀ6YaE%?  66F+c["SwӗO/Xo8"q2쪉N,u^ t=d\݉'l;^n` xnvkevZoSGdWE[A?D HfZB BgU4:E9; 8 _UsOe%^t_q2Roui\S4wj:H̊B">͝(T8*0w;hV%Lg[C˲Y(!Vk6 [)J[3/-394 &`Wd̐Tw$Y)Dr [sC]9c%WaF+̱~uHyt]1XS<ϼNJ-ǝPů sFG߹t "{ JP -7mBվL_t*.2(.7N;^s!魢=?1^\>݁[$'Ք/')T'%KK<ךulw,{)B;G4EB~V]͵FqL?޷d[8ZsNtZC ɶ{g׍gě=sF˧+IoFZ㭶mܛpY$|<Dܦ)5>7Kr>-{h.=\Õ "Z$$1Xb!`3]o<9KcTKJ{~"8g/wywlL 3dYsxܹ5=9!zk7^hu hvuG1d+eB1旭L?Y͋WU:菙 sRo^^Wm_w© Zv;5TRj9;4Eʈ+S `(>+tV7TWLqHc޺O_r8ZѻSQn|%?b-)ؠ-#>H;PovgfքNu ~tLp%cTo2(Fz_ϡz-u]5;VmiWw[>DT!P;s B] Ġ(~f&-G]GWCY0Y+-W2nzkL%=zz{AgcxTg]e)lvtQWv`cKRJ\Pik[(7OoBAŬhm,-X0X=TglMefAbJ.VOq 9oXt7f{w0dNHx}LNiy[3,/o%: [&zLCĒ=)6=joi;_U# !.H a}cTc.BbE~`ppdYuIje6],lF÷]{)|OM{&aFH K@zfD!+eq->sQFP13gXpSSz{X8,g:ȩ(lw'!|ǻ-<޽no|}CJ,.Cay& ky~blr=08"A=Lko*c\{s\>ȝHҺ3Cډ.O ʂ Ba$1C !t| ^$!7!TFg)h%Zu* ,+"7}7~"{u{I6H`Ԙ䭥eYa Kݼn3û~' HsR̞7j(s ;@9E"+YkW>"i8dž ɖ$)rCNC \49v%2(&3ʁW~U66N+gjB~V f,+ a|¥f'h#-dJyhNKPО^ڛ^,/*~rڕ+T,AQAd)UVa f*1+J* ‹2 M/,]Wܴl]aA7V8+EG@Ϲ80thH5$cC %N&ĵ(9%jQP+l$ͺz0⤵E/Jzg܂Rp`'~gNo +vC,,ror"oZu&!!lU@ƑNjDh73OoB!$U)HRD~ }cSrYu-T' i'sI={xf4jT' yӷAnpKuNQ|| 4d}Ǝ@cmH΋;0a*L7e'zĽFfzRQѫӴv'|a s$?\6,'A2 η[:iqlDH>+0-OpM29..+ozDV~[ >E_#^w1qg#Q;pn$:H]:q:˷hFms${o4' _I{^EQ%B\CSAhR`RziPg;ĺ8Qzȏ.7%d!v+[rA2h*{M:sf,fpȠfC@-/@#PgLjk f]gkW nZ D6~4ڗ4qBRR;ͅ]J2_QYHߓӇ=I fw06%F UbSr"d43$(@az:=}ja%xg_i-R9> QX fb48^+L#X&>Gti?*-UuRɎ7 D\Ef}ܛ-G0 zӊ|.ƭlnE|\oA`0є$nܭKow=ǰ|QB+:@F mm'mgiP97lh]Y9"8=JXJ9d;vYK]` 4A Kmz9D0ҲQnfTO7)иr9DyO6YәK7{3H-|;6*(4T=މɫz3Ͳ"/|1mn^/{Ac{Af-9|4"r G5LВw=TQ[qx3B!2tm5N:+1u#{S(S+#uO93a<^e+Kx'̓Y/Qش];=.}D5<.64QeY @3_*TrYT{sԖ"`ޣ ŊPԆuM+9M2mӪ80/كW#[yw:$V)H,!*IsMSVNYS?M I]P$dDmt7 '_&YcOu;μ#|!0E !x/^KN|՘I̗.'(ll P x |Y&Hi1^; \ /-}Axٶv^8i{}XGގhܵPi87HHnN.rr3HL{HBя] >{ -Eh" )UY랼6%p%NqqNmқʭ'TDg}g|/9; tf 8e*Ȫ,:a~x~_ٞ sw!Fܾ9SPx_:WVXSƀGݺu c")% w#(DNYh)ul?5%2紱i`m}pHp>>GPd3p㲾| 1JH20]Vnng9.LXDb6 >(L---x7(I犋Ü =׶NFNt6J~-9kRsNd PUIFc\+ʌj5}oR:rV;+wji?6EFh ^(EyPBR1=FUsSTݲe<"xSV"eIJ32N%"oH͊n|msBI!6uT*w&퉔3E%mj%M-{zzb]vg1f[Y~3:MY*b0oT2GFvT[6x"$/87ƌm21IsY{%gw(Qxo h.o3$t}*9Yu*?囩 dKslX%?)oG!C\G_IK( b& 89(Ʊ??ncQ`J;[;[w1Pr>+̪h4,&}^:Q9_{;7C(˛s6jv.{^5ŝBZ=_ޝ>߲!qGgXA%'NSd9| :v&i8ٯDʕo+,(,Ѡ7mlsowU3vL"?2 OcVf, ˱)I8"m:4gy(;zf1vg((𹖬T~-U?0o'?8]wu\ Uy򜂒V_d 71wx>/6R-/P'kk$;m^] l,xuZQww\o[6 u酺H,]=nqf,arHkqa`g5k=[eC[a0zqr"6r}[PS"Vu1 71Q2VCN6SW ]bGjcW[~a8;g12{?05c644пyy۶k @iˑ’DƎ~2َR()+ENW:3t"]dRkY ,{ɽMz g7¯F\8.ᩩMIx ϲ vTXe"fR^/ ƊY籱sE%:6A5bY:q@x'l{tϼ9ׅS8P$uҙÖNݓ[d=UB0?Mbq&O 47XtPa_gOV݅R(wڡuU $#Y׌ϧت!?8g6Ҏ"-Mq9lb݌`-%L?8cnKbHq\9z T4HC"ܟkOƈi%rBÜiݖ u7VgGmB5dDo t{CV*^#n,BƗG^薧07EDZ+VK~ƘfX0$[ImQ¹]qߨ2G}@ǽ5ԚgU7*=6;x1Pi70H>B񦍆X-503mpW;dxs&~|Q#KzЬZ_4=[|B!CĩAߴ<@ƟПҝnT+kM*QU}$v+Qr*TĜ)Qϟf!\Yq&øMϖ҈"0"QX&/, (MOq|3 ԁ [˙VyG9˼{}~ptR ȑBݟ#N>45(Ѐfg$meG|!I La(WH7U I)1"z&t\ `Cj2t\qӭ,nŏO_M\d^$dY8R̖Aow6o l9p] ex}Zκs`9#*m?4mTeSVIyq$qu MF۾{bvb_-oF9eP>,Zd GZrBͩK˾=vj t9wq(Hs/ MMa)[;?i`[Jjx*"Nao̷;`]+NCiҀy]e~4VK=O n2hC ԄLt$h1 b^b'5y +ߙ4nBﱩS T-.( =51!+\5zB#a՞tOHp$-\zj X}\8kfn|\VļƷKyM'{o3fļ̈́AQr>^Uś$DyE\TnEWabH-49;SIc@t~=n3>8 Uh"(Ƌ F^]^ks|hmsX"p}e} AEeӠW݅0f~aW"L< ډLj2 \TTU="8syW3N#.%y:ZVhDQ|xk9u!twsS`]#UOZ遁)\1yqv !`b{8n=-u"=iKIhZ{# {p0&Dŋ91 C9Bg-zXd ͕! >bx_[Ywl 3GŗOR VDZV"OD b獨T.V<\fmOv^d&>̺?LVpU#o,Eb +PSW')USIj$ɆЖ:-r&FB79EsHui{\ԍf9LZY!m=XA{*rt᱃#|:u;˛m:oXXv\s n}*"&5~<'Nwؐ bH./9~E VQ7D삊v 5 rhDg Zر.ڇǕM+={ޯi-.\sтƟmA%_J {1@ ( ZJ=<`q$$v!L3Rw.Su(_QK 3)/;&J{E7wK L^̄HK>+lo!33ug!tfJf$I>˅Շ]G2Zv߶#wҞz/S0J~BIC7XT2IJ$k@iNy;)vh-bC? uagrfY~mA0EKSlM,c^o@yv3ie2,X݄[竹4Ƕ@>ȝ+Z2LEu3s.~ 8+cV#8]& \|uj&Dsw0&G: t*HtyXi@p$ʜɿO(s½w.W0?QxDL/G5嗎g)xΘoh9BFBp)iв7d~\ GMW%pO:؟Qo}όU` BI(3g@{C[Oya,O7U?3+Ͱ}GE RRLPeO*\;~ԓ kF(gS,9kn! =Q kM?rM_'%h2i_B={i,WekO_h 7"t}o^. | o+"bP!n.Q3-ލntRȀV0>9]5Lp\B\juAci;GlStf\phH1^!>$nJXg5.HQ'[] 2hlR&ļ=$b}$hL?"#"?!p]O{ʹ91,,&s|]ps׾_qh99毇!D@bNF!ok/;A݀I5+u#ʯǀ1"=HжzV7% =7#=vvFDjq[3H>#-QY._뚛}m@'7)<;L4S[C(h&d 38"2*nqQ qdbxSČ#J㋾y[OW/.d3orh8 a4ș[~71`3>9PD%zȿ$wXCFF/f8rhHR$\ dz "siLOmUf\Lk۴|N"b"gO!HN9TSYZPgi9HtD3JӚRC`D@̯dߐ@-ſa~=虥6&w6] r#cEPRBfr{slDqFG@Z6Ä"XD[\aG}pYTQ19q$nrd|R=$yٹ`([VIma&Jɡ 2)Pf)Όor_]zBϰ/[g#ll םO*q&Ш%׹k^'qcFrPRztc7 6[ndrĸ ڔ}̭ۮ*}JtmQr̄!OiA9=j"oeOdTzF5TG5 DYAoݡ7a{l@m5#|/{MPk{2gxݝTzcv8`1LϢ?rݧhw'vgAg.*^@c@f["* _! x_tn2x/CY*LF\?Bߵ:6SVFX: iB9RJ,zv.ܳ X([Utx0%UbBNyl.lG^IKN&ȲOQ Ȼp1LFFXêaRL[r)*Vz"N1paLpҠ:^f+=|l`E!Ot8j/XO:n<.3Lt:ݺj]H&::ak>6 'O;s|f' w6CK͞WP9bty\< @Iq/-V?G CkI`bcC4ǕEzN˵[e:T/nZS{'+2q,Ll{iHR,(HHN'Cbǀ2$v3\gAo;ъ/8%S{7RN>1ܘo SZVjMHir~bfDV-O2 9ڥ&Uzb(MB3Ttm^Vڧ6^EjꘃP!)Z_lbt؅6(>4|vF'j|P*S)1qQm/gK0(9|Q ̍L h2G UQH!!jihQ.W N^\I ] b2 YqJ]EJ?KBRY5vlu \+{N;UpΊrYVS[OV]d3pp-- "&vSr ?/}2Tčj5MȀ<~4qv[&CN|:a[4M?ۿG@ IVR-*Nj`[dRkQ^PFGgm-:6k7tCD}KGbᬂfN60<+ OJej"IxmG;.9fTkzWW "wx|z@#8VU&q.b%ϱoUTtV2??~t5Td11}Sf4 sgtÍTq +O MQCI`zG4<B MU~{[ifiKߗJ uŀBc$TV]',?fcJGK=O|`s結Q`r.@eb u5øg%IB.e_KA+ ?D|v:dzJ/4mYq9rNpq)/ٳ6(UW.7 LU54Y 6mB~Ges]ޟm<*s$jJ"64ܚ+/Ϭ:!9+zjʑ`x$HE&S?Z\rA@cifR=A"{-wJ Wh3rݮNhOP·xrʌM#(OYh>'.3Nt3>%H/"¶79"2tP``w &w&N;ͽo~S?wX  wYsN$9."#)95bqNar Qp_ N sh(f5uzBe3]ϵs 4s5M"M*13CIEuZ!1<y,jnlKY̔!&> y>!~|ٿbYs=ɻ%]"PaX`nE"Ó#}*,F.]VƦد?%F֚lkDa֜uCRirmՓcj(Ӽ65/)~Pp6D[P7YJ79vTl275T ۇ;>`Wb:N~ ; 飄k{r-.Q$`vɯ qD:AdJE%ۚ>Y3j]}vYҐ̏s[b/; kծK&^ e'h\ɄXaҍÃYKX!kt!251=^(O X4‰TFR!Zu>c< t'˯:hat٧.2O\ˋk&?'NunD\ +Y'; }-1EdPէ+EH/^WOS 03ck8ĖF 㛄C@ʘ]= ]wAdCϕӍ-T` ;#|&dek?Y lM8"Ꝇ6xj#NxLVCb=*~t.Gš%bL)> ցijNw1XEإͬ"%ww35x{sm'T>|c9iE4 X8!S}Hi(|%13F (. r|+A4KQW+)6SK#H`c5PĊV&m١KQ6UX. +^W)P-G+P7Ђow:5Ʒw?D~P@ajh|)=E3zb2tnԒ;DBnSU`@ ਽nO>H^45_\:dfE\m5N ]N?c q>!iA ~ 7_>C$ݞf>5z̗W$X?IlH1Rv,?O*I?c6֗(W+ei/of$ нD>)))G×{>&]//QAo֡ͨ+>EMMXd HyMrM h /ϛ:9M ƹ'舺OR7n4yS Q>n0d[ovC5;it";1j{Mfa 59_A*[CHa?[21C"jcXm&$"zKY``WAϾ+w5,DŽvjP(|u$dT8b/JPӢ8$[2E"pk )Z)ٍssiJr#pl %9g.55{rݹu҉iw}N{h[Ǡz 5xM:wwj\M2ggk]{,5EV/.qF^yR_Ԅ#Alp,L~{+..Wꉢty 54LMOwp`415͠Z TEP933Swޒn۸VqzI!]ʑӕejptC0WaЬ T4jux3CRQ'%o}ugooO䔔P,ȗMLזt,v԰Htq?պ`H c NJ!6T*ʞ .^Aډv'C{wʀq2_Т 'T8`Vz:! `Nv:6-$%s+,߿m<:d,4::k ǥ.Z+SUy[,Nh?i3FnOK'I EZOq~4̯O58dcc}5jVIA JƝkʏ*d{Izliβʃb3%pMLa'Sjl1 t)EWZshhUw<0m8`_gavǽ}?=^^f}Յhts"#8Ųxb-ہe~@S'S 6dyg0c&sU-ƈCX讨8Et@H{G>`O񱔅u3I,\|H G_[9X4Lձutt-'o㞌0"3_ 6׊TǼpPRu [Regl.iJelr9yҦxV/0,0_[Wڍ#T2qgj8&T-TŸƭOU#?[f2?i,9S;"!B;ȧUe 3&76R=Z#~dYwOծQ}Э-_NY~U <9zQ?^ї[ikobPZ9ӕ[^c1+h۝X K}ZA `MERm\ď ' Axٜ=cA 8Y,~hU.}P>Zjz4s7o.,#a/Ƌ*J"<{|%x_Sz/_˵78pV@Hx11^u%#k8JY^tb*z|;pvd_dsv1rsal.NhzD :Iǎ@1꾍99V[4ЍMq>UzzU[)X3k_zxWg;0i f$.f_$q&>HÕakk=g Y.*F eCv515=y 9=Pf܏N?\l6";mR{Y~^6K@ץH KE6Ë;Z0v8ݙsoTd}kkGCV:KCuSϪ7FN٤ס2݂h6]qHt4%:>-OV.:k'}rMs^P98d4h*?oظ` FKB;R":WuNdj`Z f:P/wLp/пJپ'(P(S|a(,[&6-gQT*kX{LY*^c'#^>P XM.~/2eTQÜt$<ͪg4]~ ܁O ձmڞ eu- ez7>Hp٪~woc){^k!x&x do4DaO}ܢ*sB2S[^?\-=ⱚ3V^}Ir1n'./Gh=m׬Ňd4|]:%c`߸q.Լ9+:k.iۖRa'ε58M2D:Ȝ, $ Q N蕎89pS&*%{` ,*= <9'.2kaWD+E Vp %D45!W4#)<\aIYEL੉n ro UPe֞WI[۶qvO1'gF[G٥+bb-Bn4CCCKk8$(Okyvy w6Ut^[x\zy{㭼'tcU0zj3pb%0皴SM-hlӽ.I[T0OEܦs\J 7c1>`;}{P7&{(B g/[ǽ3EָG@Pwa=ɞzA"C&W[ƽC7bQbƶ# ׼( f-$^ ಸ~\TK쵰}ڿʼnIJCS،{JPug]ȍ:2 6ؗ&<ӰV5k0PD2n;}5^0d8 @$8w@B5BL"<GD@|]]MiE -J3"Qn9ϓȉ0"$?$)S_XC$_/mڰ:!޵ F;i>eGhzr+Ÿ 4·xiqWvsRs*,LYI%J`r`RRZiVPۛ/ʼ͸?ʚY+XR~i-aUшFeeA-h=#*0o3c37決X,_$ush7:J}ɔ=[y7#c֤vJtwYtQ'L&5USpuY|l?J X9m2 zdXTTf0lG$=58W4f ȞkkV/T w⠨:u &.3A+`y{ڏ`n,A0)0#;8oL1:Zwuvݐn5\ .j#KmKQ'cDߐB\3֥Okڵ,G,{::PD_[(3W[irYrq@JI+c{TIȃ[Uœ7l1,ڬtsrsE3-)%H<[hKWoTdu:k.5uL)3i*'0``'*R?H7SSRNg ^p#lzn80cInZ˳qmfNJs cpLbEJAQ͓ {_Tr!皋nNwoS/-w /A޽rݫ}g 8fcx)gQoRX܄+uEݸ㕕 ~ef20QMі (ӟw:/P 3\jq#wvֲTk"rVY-zsr`C+~#`x p0b 2ݯʹ%GE&D-׎wq>ގ Br;+ҟ=U QtġYHdRNnic 6 xXag((%p^$|L"݌#@ܶ/YQ?P dZìDyJhf bQNn`G(#7PLoRt.E_MYN+GEp?%0<+TUM"ɾ_笢r uKNLHXJ!sVXp&v⎖Ũgr9GA͊n1;^rl&m"'_{$+q9R=wλnYl *Gť2ĨRͅSR2PȱNHL_"2$6_!gfnmlRvlGI9vwuf Jgϯ*LP0ă rs끕嫤a[Yj{ʨ<+e?QC!v=0.5- KsVL>@՝9<3|ی)#Z33wax3n8!dz)0I깏6{Hvɶ;6554ù,!(m:(sk8HYpn]FHZo_ij v_Zs[!3ST+E^,Rbٯ6O$U웦)WLZ'xiV>&Vyj}YV;Ӈ6M2;ХH)O]D>na~q@\qPزµɀm-S4c 1ߜN,R38.)Q]#yyiD;"dB!vI$/4Ie<Қ(̚2miZ1 yHnEd7PۅYj8LHci\q/`b' H Ǘqo뫱=Waz @ =>"ѿ{}vcޚTTl)vPrRgAK)?GcD~d GNb֘>gZ(: :;/(:"R4XqīLG0e^C(QD?j-xlb;{Jw @MI!hS])Z+ Ya\k%. 6UURYRErbr ؙntt샒DW9=l F)0/1rhQhqv-z1.TMj,Y//~ɈN5 R uU.W} Ƃ0"6ޞp05֯$kP&'n RUAG_ۯoX257AIE/̡@@. E@f\< Iˮ7˳ԃeqEv0 cM٦qF|v~Ncr.̬0Vx.ݭ~aFv#`|shQ&sE.8ᬾ:!dcd0b~LfbQ=ˎ)z~1u$_Smd5 ً%[ZʪZDQYg7 C'WƝ goy76YqGHeCлY`{ [im便IcqC0jO&9 WhZqGX,'-;*Vzu`mTߗ}0 v[oC[iPt/@0Wrپ $֟WKSYIծ~Qڷ|s+J(~[5(gF-Ѥ0(:x,@%}H.H>rVMZ=p#ԄA?+b+Z/<ﹹ3*7035vŦB&O6xʩp݁>^֐‹"d sCUBL1#]ad1 L%o)[~12v7gB"jBvdPPtDQPLbQAŰsq'2 cj؛+1̭݋۴ʃDZV1d T>b Ycd^=j<*7Ѓ)j9W4 {v|ibT|'.$|E))DOǿrdt};dDM^.)W8ŅEuuKkz;9HIHMłdț8l|\!~ro!aqx@O;CsD[-&L)'ېw x ԚY4Y;AeU ?"# b]@EmgN񕥖>UfX:&JA/&Ғ@4DXjɉ t*!יs;EP ShMWNFz:O/MAh+ONJseޟ5jM4o+5˄A1$ܟNUKOSm]1U^#k0w 0P?5<߲kfPnlrۭX-6^EY{8YH<"T*7HVE-,~ =o?E㭙>~E@tv^Bw80J/**ɸXヤ9+gZpCsPo$ki7ɵ%ϙA(C+ga§"GnvS)قY#~%eLT_\-j!a~$3LriUݼA|{6^,͇L0CC<H[$)'\qRlTzWMw'(p.O@OB2vy&\>0(}R-ESUs[?cu4mfLMOt α"җCmOe7kab\ޮԀ4m=iFQZګ뼉q=ʳۧ>OoRi ,X n;י 3<EsA{LR%- Pe W^=r@8фjjZ?kl9^4WdU*tbVS*{hMtVVHU3<<(`b1VpK"*cCЂ#" G^R?ώlflqzvG`tYUJ `;5CiyUPe Tãb4 OU*æ&Llߢw\?nQ [ZgwwwVvvZ3jr$!"d~I1T,Mfw,1 AG*+4 s&t7*P|Iљ'ާ#ܝ;'Pt+GYӵOL:M:]ҙL;#iR: 7'ȼ]{q(|O!R̺;1;~WϮLMOr1ll)geuAGG `EY zύSfTCqocPHQ{Q K'@uTM9KadIݘi$Oj^-o<iY`O`hbN$RnMlV|#C! ːbCs,DKixF1Us JjOq\ řm=(Y2K"cj?\0PIh~bAOK `gY_BX!:-@HOŔ03p`?Sy_*bЇ)#xhIa(Efazm;s4,gË-"tKa#$=>NH3s0y'1ٌ?wpm$Dz%fl6 O,/,+GKu/D{D鴫~4aEhL/3]*.S! &b! ::3ͦ3j$î 㜦lv7FZ z?zT-`Y~oq~;׃ ~VVmݩbΧ(\Q/Aaզl$CZoƽxxQ֩ foA½Ubة,]jy 53i:y愜.Zd,ICr35}[nB-d ](;/9zP2n ;1ʋ7.n>}\os;Iٚ(GgX%auTYls>oDT;=ɓRIl-t8GyT\ᘷyEs$5Ԍ2`_8 HD]܋%|`boȏV"!M'x!a9 I.!d ߃V(:N\T㽉\B@>^w$s uf彏UӜ2:9qe!M}^=Xkohp,Q3T,PR h9w}R|͛ċ 3?-Pz@^j v+(,>'tCϭuC w`m3E%iޥوW~;Ea]P#|"{ ZiֿgCza"*S=zN"sxi<9&V*(hy hVs5w5(:/M{szˬ/Ӳ'n{wqW;iy4+BȸIv,u"Lqջ`6Xhmȉe]_KЗ&|kWxᗐqFu?n:$TzGN} keI.mE+Rnxy;a3 H='ųoNP0~ I߈tTz B[,,E4ZZϜYQBH<{y-ع:%MJש@mݔ)vWnC OVәSĸ6uff>gq1ybf= = 08m)~,tKHzz~n ~WT[ӓ,m('!J*+DWvi,tQoP wHZW3n2YtcH @/EqX WA^W^H`V;as_o!$!^rH~X'*lts8땜sA]Ⱦ͜`)7yjnBFX1ᅅG'ח@E׍9?ڦ\F&C< Ļc~#Uqϳ{mls~x8)`¤hSP?#Se"TU(T`GG% Q3"O.TuRw;UFԀǺKp[a>"T\WC)TE8oᆐLuZ>D0H)5!N/*[JU+zOZѐhn(gyj|y2\ CNLDNٰ̤}u|Z).a9$1d/usKjң+yKjr+6|Dv#C6ӸENhkm}Q.=6=8duXvf{ !Ds1l8ձƝi'U76B%+]@@@ nb5mE[ݹ rF]델{{a߼5;\1բuߝm)71J!碚e}XGEmW܇# A{5m> X vf¤0G{;Ѓ~AZMՍ&kEԮeѯ~C}O 3O=u(K<x{+Ta7k3ʇ" ߞwb8D648dg‚}5VJfS HZ܊Nt ٌj2LOU ŋ{ ӟNA\ 6LFI09W)˳ iUQkД\UY{P" S'k,/[,W*-iʘF:xB^c5[c{ ПEjL.JTU7Ij$vWm㵊yY"\KΑʶH`B/hh8ȿ _#<[TT~]O={"%޷YW!(]hG4|CA/l薚WX%Z&21-*K vlTF"Jvc墪i-EYzLcĮ/B;^;o>'ΡVE:Ie~.T"=hVG SSYѩEpl3tSxpD뛏.cgL\rq޾IZY rE G3pÙ+*͐8qWQ]ɃhE%>>/с]QZk?m%,_]=Zw3zRݜB>uHZh.0\y иְ%#sVO륨B1,gaءᦳ0#7Y}X>9H͗BIϣei}atf^f'kSw6_mޓ,ټ+VJ cWVRT2e3v't.`{eْ0"zX! /vJ&`(/`.> % (mqi<ѣo0G"&[X _B7R4a!Xךc%2 !:14;]}&1p9w~:j4=s8??aM0"?+=Y)8`-8: H'`j9~Q-⽖]ix17Op'αM|9}IIVBg!5GE :}$+H-}]`kI$xC嬩]!Yy\,M@B>xՉfa&4j"Q)\[(=`y'2cQq#>괸n*cW}j%j=[xAMwomq{ĜO NpՋ W,LfQ12ڪB*9@\YEQ {dpJ ?˜>4+LB,[O^}BIJܳ;) B <_q~0a5P~:d_v;ƼpCTQX*oqDWJҦ> 8JCpu pNFsgxa36 AHZgY C1 3DX$$f/9:hyF'3m۶mv2m۶mOlkb[ֹߛ:YI{~vSOo$ gfח%>wP߸NhBhIt=wwPAYTUc J1'`x܀ɿ)?} 0^H`ޝMF:/u~iq`|fy2_wnmK[pitOCٓ:8ދ,J:&Jq> vhD:R˛';U)‹s&jc-Y4lXABE ջ%)}Dh/f7H. (G1w+%(F`Ȃj|t2 ?RŖ.j Dlq6UNN$,$aj qt7epkqe @?48Q4wc8K7M}LLrW=86mv?\/ss~=AD}aw!L])h J(i8o_!h"FΥwAFo=g~,׊n%}cW}tӝ}1 N`qp'$Eoh^g OU1'i/&Nq$s>0Nמs_C{.dtɨl†wE˧Ljk_'j`4#XFc3BA:wVo=04k!HfUQ\ʇ'U7HVfIVf>~ '蘄$]^@rH?wcN]-DM0At>JoE1)W[ݡ,!:Iy~"`z #׃]c=c (X#Z~So$}F"E J?EXwfu xa`AIyC|~\C}rdA䡸wb⨳54:bcWDnkzA 53,8;8XSBT<kO+uq if-PR6}~L[K(ۅ ! 4c~~3u'i݄)qcM?g9OG>$dWy ;mx~هJFDכzfL-JF@Ty\t=w4`{X-٬ R'Cq7wMRU:Z0JXpMeͻ47aU-+B#6]f=, kE(3I̫)6m~J`-9NސSDsxM$Gq,3*H`09NI oyqEJ)\i_x\l P Br~Jy(ahy![hymaZ?:)0W=k2/+|04]ȡMqXҨyN5Y{bIYKi&r#EiCAӘMX><18ҤEtڲi=wbSD䩏bQ^sSsp if`}94W2"l;0r_%GCBDFl.m(PEy oj}aRzh@_x7b,;EZ#3ZK+Y/$<\$#O?+1)tqޜsHȳF2R,d4cC45: CDh6K/*у-ݜL㍮'wW/u_DmέЊ`?]ABg!\2oWlhx Eqt:Nh$݇NEԛHS7hXl]\ jy)[̨c]3 y>鞸`3&(.b:ssOl%KH_3 AR4GX; xƒl;/By\֜VoT:_;Ahxيilھ46GWl_0?>,İmfBA,[2bRC!qA¶DJSoӛ!(P݁G *L!nh+l2!PD.O|wñl;8MR4IS1#Z~~q ?AF8>:韺P1}R@P>c.Z+EIˌ܌){B,KQsLT#cG<"|Lѷ%_bfВ*Xk'8[䩌 /^ Ǘ`LF+dChG&WɓWQU\uD=#C-CG=8GZqjrc8Ä#HQ_&Yxpi67;)fb;20[Wil9Q t£ ޾Ne::*+-4b[{tYzpWGH2FpǢ .ϝ#%`7ԧ :QוOXk6zW G4?g"DD~ *lق^_ (w1Nh !ˀE7+8%]wߚDςFi*Y@pj j #۴Dw~S*XOXcS3ZIP}UBiQ5Oh Xksʼnaܮ)Ԅsz;PO#u!73Uc wV`ƔJe4'(X5уKѴ'̺dp yJ`&"z `6](PȎ_]Q2>[6I"#=UCs.5l䴓=Й2;?{~6$INeˮ0@E$@ɋo􉽴{+eXv0&eg$e pߞ d5͎~z %H7ld XC~S瘷sMq+]=٣r/45DL&3y"0biģ(B4;O(+]/&.ctV$4/BrixzD?2&i.n`l%>^*Nh{2rRK2T7&%.*+KCGsJQ&#C4$B 2"TiKbssflh*l`d#~M8s bEЅ#S/N"$=c/yȣA ')?ث8&۰w%,Y~i& lS=)z^GPEPn]"!p,LۍI9B㫋[Sd^”c2 qMV&Ԣ*cl MG ] TV*g\4g;affXev!\G%wkLō8XAd`JS៟/Xom%AN) iCC.b!\&뀳YC*3Gj;l |)%&Aa絺4R# Dk+%^ &n5n"m~:=Fp$$^0&?ִlDYOйO%U ?^[MOpASdhٜ剽b`6C$Uᡋ^Zv^%؛>lٟ./I58|:PUd˝߭e?"WM.._iN0׷fq{ hZv)v&y3(W7QUtog2¬d pX3[@Jwt 3i*뮽t&.zxN:嘒K浇&ذǖ~nr͹W,v-%^m29zsẎ-q-3;k]F$W\mirO@ZK~v4mxG-R/A^&&֖'G3UC;TGxRy|shD}Ӝi#C %za#zJ|t(SKfT_%IςGUd|k$of<= "c{zY o ːa=nߴ3_'JK鹭6lJ.=""R5!Ҵȁ]10r "ll w>" ϞUtϭETPP(Wc6iUxH'u ҬYg qru_ Y ;AX:qcB& }W iѣ=w^2h;wY RiaKNhr(qG{;ȰͰƺmi\- 7!J|yqǞL%3Ʌ, -vV|sU;'tq wuޏq*zº}_,t,sfK\eO) Z_Y?o])\Y .2MЇ˙~t%tڠ7qd*DZ2h,Qs <]rDx5fsn@^ny8Ά?*5jzPCx(;ɟ@:7n)õ$~", [BLBb !^c1_^з0 5mDΚW '֠X٠Uf(.c:7fUvc2ra.sגgEK~{_' K06}xCM13`LXfJ;j}D|3m-^,zJK҃f-wcַ%0tʕ6R#BMݑcH>6όqJg(icy,(#_l i۟Y$oG2oo];q&\˭8S&T\c`m8`1F 'v(};lwE<2H:`p} <%qP?mllxӵ;[,ɬ)*Z~_uz_o&~z~*;Xvq=kˣ\zf]Gz5ڗolBހؿ6 2]$y>~w46߇Jͷ3 {0Bs$[{zzrXz{E~[qf򛮦Nygb%ըcQM: jr )?"EKn|$[0g2H+<#L8ޤ)SdWPBph'kQ;;uS $)]DO(-0Ȁg!(+,7G@4]Jc&>zWmKbY{g*C(dsNT2ƨ'f1 ] x6vc`dճ#O?J! 3IhP騏wAZ~$!D{ꝱBL` .,Ng@śb~Riƈ ,uKքյ U7Ce\o_Džk (Rd =`{GީMf[96NrjPc4t!ő;0 3 !?5[sjEᑵoIat,Ұ:qye12x?)r`rq{}x# hYeɘWrس2{ s/6.8[!a8~`#9VtB%I0vNWV֞0bDITA_Etp-gٙY5+! Ey%CL,ֲ?CD@g}xN~`W9TP&朔RwYҳ6F"8x4 wf6TVi_l>\6)-;!eR K-lv"i8uAXErDFn 'F0pT '[EyZy.A;86zvrj6Ò@=ݜMF-,Z,xWtՠw ΗYXԛ^QZ7;"9׾G~8]fY?7k^}YԊ@աgKe7'&Kn$W}eA O/g}Cg4xi>(1TruK: qb< 4mΈFWE8e }CUUֿC$9,*`g؄lIq(; @2)+X>QTyPCsJPM0W9  fG eǓ0[]O7Iecl_^ڼJh&QbXۼij3B$v e>/ņ$X]q>/?Zy `?XȜ|t:O/~?mٹ·GiOnE]6eNg6$tn>@AGȧVmV,~pKOYt)X'đ/B枃r'9I"*'P*r $%Hp*\K*c*X[Qsh6\拃Ϻd_{tיA^v_*vor6kge#(!lۗ3Iz0j >0eLȌ[,}) FwyWC7i4G L awG qOǏT [ / a)Fvw]HOɣTּP;@q1zȑKUw4CgzxZ. < Ə4 Hs]>z}Gтqq*;1Y]8aL>QmWe -d >i6-oÏٶobhd/mHLT:o.X/9{wn}uoN.Ǐ$'b%ו=8Is7dRwǑuջjT\] 愗GNJ@6]zT_f]v>6>cl^ Uqݝc&w8~NF|t~.4ރr,"l1Q'H8yQ;\# Ԁ;.cF*̞RY[xA pFeP , :ukC*Z/?_!E9Q)(zA @KCAѬ~1*Nr0B{lI*Yy#6Ë́?h5zw@ xT35es|q|pGI|n^w?1= `FAY!4<8M&J#2kʕ'qt'A`` H0_37AD&uBw"9P>GcgmmiJ[}~zO Bk cM-U%ϧ؏W6xhM,o^r?@~D,NWc{9: 4Dذ]OL49}-MI3ozt1vyn@N#zVě:`nu1r4?#D9óK+??ny(@ؿn7P9v˜+|=xDA16ט^peHvݳ9\`)>yX!U!yF~,]o:]Z$!ADvoTUb.&%?ʠ7̦1Hp8/zyv+:[#13tvQfPA?L ăqqZ!I?D) ~84)cnG־ n/w@:'yzy)k[6iSvˌ(=a{ӊ1HS~nWgI@2?)@h*JD" !$w.6[Kkí.QC#!1½/M0 .j3ܦ:T+<8rǜ+ 2dqtE#A{d[v' J~9lAþNF_ BG)ߎ?-B~ƅ( 6/DZ؄XJ Z`yꘄ7gtdqb[zf}8AK:2͚*r~〩L\β0q&^WňQzcP!Oj/zZ]uP IB% m`SA?z/aUVN#,lυAH=#+- ĚE H*Dޝ}^j[ p _/A&K+?1"qQEO+\IQXkh0B,={)ݝfe!q"S,s0Ⱕ4T.nx_;(3G* GGfIɘd"3loq[ƞUkv.jæ q£VINkBU~ ]̋O=o^Tz^qֳZ8۩~3QZy}U3l sfYI޲zr{Z2+dJAG+ ge4Q?P Q5%k# TpeZ7P £8:_ 7*F|ߦdCA Q& euD39Y?Ғn M Gl*ӷk :? 6,lǤnKP[o`t()Gud3iN,'uNs,w+ۘ*`/EVcS8A.2k(zJj" f8\.^SG7Vs`N\{TG 6 [Ojm>=9Aʱ991#}y2S47r:y??Moo69Ō=%zx}\T{Bju0",`.Yt8l-_n7lam\nojSN·=#Կ+2MLmJד^~>>wt‹!`M3MJizcYZNd@PN1ؿ2a+IMY▰$e6,KQ:%6&:"՟PJaUP0M<̥q/٠oGOrwȜ/xeJr9W>gm̲$hbۉؔ[kAp|cfYTh)Ce%bxү-U8shr~&6l[vOh@dI_6 KV]$a.;QlLqb%d-/Ka x4'wheSPYrvfAAAQVUE뜥O}E :̣zԞ1oNZJZ2iナ'ghHֲ.#(]VfALL߰z:QW"laLx8jfheP!PEcP}=cxi\x#C6D4GdnGw.ʢRhjjE%>u;Pu\C %Lb "HNoE-usblgk( Êњ),;S^Dq@R.3y(""`[6t w7#7Ń+62hԿ{+~dLK\h:N}]3<ú;֫7ư&ʶo =YѲSK]H'lw.E! !o>iєu_͟^ݱT_AQjIuPj@DzO \Ih([?=uX9[ K؟ Z&;:B!4O% @CV,,˚D 6ڔVЈ# V{Ȯ4\ Av'%%%!wwE.߿Z>ڭCnF탒^M&( l!VƂ.>-ܨ Yp%!jiJ e0w.u:HǦhղf#oH4na)5 9 d@2^A7=tCQ`aL`ɉ߷DYɾy~le]ݬ\9:Z NRސLI%0 /_iE ,gUfrI)/Ktp9diK$BEB;&x;f2/(_$IK kp>S`0}xGAm's[*m 807gsbm`hao(0ġ|dvAaym\Ng"_쪢|F#/sq=.||xukbˇ,BC>nLK߳࠿">,Ry_1r\"޽~! ]q]y U 'W[b1Ѷrvx>&))ixpsJ xVU(>񴮼b Ӭ 6ml24|P7HZZGb1h}m=nyBs^B޼~?!bB"L+p1L 0ü5Yz5ć7^ӳ[YvOul}x ycֺJmjBMPUr̙y0@ⲄEnKC(R96=kqϡKGz1o`zϙ &鍺f۾J 6 ~ďl=չѮYm͐WXO>j]0t7&M 5*T`#ջ3\gW<𐔚9AzUȶ +t XYolSa.X6>֘Zw/:l8:6(:c)z)KZH5rܒ'|i}^܏V?Z,V+=Ii{cVVZ9bA-Sk@Yyu,)N33a ļl1Y>v4o?YV޵~呹upد؃Ywx-3a/1Ԭ2Vmtm$&حJ/;gxoD\rQ%dMٳdMΒeNf>V=8LD\з Y L3f>~$W`pET[9&SkM-ml ^,[n^v>`;_ Gi}\it;p?{' >e^.]lxfF4{h=^^=fo{ o2+|kF.~U 1W?NIH ,||y]]˥g4MĤbWp޲+|(((@WZ^]5K u!Rm >I4F& 񠧸t(Re_RrÚPHUס&,oI‰~ Sy)RבRem{˫o^8_ӛ] :ĤqޡR+XmS{PJ ;8V,[Eg[gt:Y̵ .!40g]v:q8?yI@l9.a?$۟RqEOf1?pNl &[ + KdZ~MMEͫ 7s~lpKuT+;׶tܸ =2WR/3D99*tG&NrBҒ]RGԃ |/{Hvlv!ҿv.q40Y|j`/wH, ѡNJj-&T*7]T3ݏb%ȚlH=_ *#ݬI 7>RVU;£8A%570N6;xY1, H5Q?&ᮇn;r~8@6yC?~_«p3YG3 /Քn>ML?;fԺy"&t5 ws$s$e]U˦;7mGONMlj$i/hsdFuO$Mk` .O&Ce5'L*0|ŋgyM۲@2ޯjM^ qy<P/88>6I0\G|Nt 5\/++yVdt8Ϝtg|b_w4)z cB:gi^7yy9g7P!Rpy̴о ->Ay3~6s^:MCk,+T1놪Uڞ{ ڟ~_=c.LsJ'#vP ZxCEٲ^ʑ-O/LC2H1Jfv΅3VffMJTC}6¿*'"CZ^JA>{jlnw2Çǂ ډĠ*S-Ҭ'~7\hrr,.S= aF5oyfl=LPk4|}3Gnp}AKӫ,6g o+7j|/--wD4f5 dr"нp?KIY,v[.?Lp׮zv<ݏ^@t K+vD]uWqO6߼[HJ{OԘCRj=y|;XiFƊJ$ H՚Y;YYɒfD⍎jٜa۞:T&&bB(6TFߥ/oY[d3Uz;'~V 9[zo0ݙibi'ʼ_&rI=|?ۗݼ}^)כnFwc8u=6M~Gcҩ,6tP}K%(W7g7N\Ƕro))6'9mfr73$TFK]%^SVeӉ$qi'O,Ǣ0rļ58O!v3ONb"bƤ^k @nar+//w߉+_6]()GV%dca&ޓEjq!?Æ׶ށޗW( ݌]qB@Vg:1~;c:gfD__wq \Smؐ`N0p AfH_]|\ |z3!Akrt2p3H¢Z͏i!|b> M}?|WkR0|w ʌO4.K. z"+o"F>N/ك{Xq_a2VX{Ӕզb Z{X3=}Sl#W)8nfk%ل=3]ll$ N/t|W=,Iٛw{Ԣ/gnі)15-yll9sޞ7(4>33<YiN˅qB3.PPI 40S }.MC}a3v!4ǝJ SPh4FSkQgMN2)mTfl> n,TSܾ_B3n&) `QR6[fFw$d%NJ6cʪˬ= !#о(,&6`cߕ]"fcȦ7O59ټ=v:l Ä33MfX/R)|X*ԔLѪB=}&K¬ (!#SkOMZhA;?hp(# br(i+G_`x]ˠûr6謺=UklzEI4GZ7Y--2_EӋ\BcrŬ4mF xnzͭ/QYH_XHc{rY @`l<7,А9r|(䙼=?OK#QUY|bj^Qa:æ'w˯+d\RsZiv*1I .ѻ:愠gC9_\ kb2a-4 .@ˌ:۽}T;j--"DzH533"&Eݾ?vs).>8r6_mD8, 3BYh/ ^66I5[M,Yo]lZMҵϷ ԇ2k6nNf%ntg aggEv[eV+ Ĭc Ci0^ܩ)jX&[Rxd)h Ar3C2ŽMȑEҧVt'E&0Y9 "ap9 \6'i̓O'jJ>Xݯ. u(m:׊ pA00)^gdHs],0bMe-'$H+Vy7~C$&ƅ%mcaV[-#H&Re/4Z8>^ ME۾Ժ}_&TK?Xqxh/нj|% tKGFXŻ[4̒yg5K+./=(%{{KU W\ 9xC=$?, k;$epc#}[Z.Sq8ί'#Eۮ-x. 17%ٌ޾iqDg/XxnВeInH^}w^1;u'T{>0̕YZ .+#BrtʀLLo.K/s&u P4u򡬢8PĚc+߇bAQXL\G}2@OJ rk94uD3,n)M \qx-G鷥7O8{q;YE4)14N*Ze;s ;iO[Jӎ3 ^\Oشcfm5wAz=0k˂ AMרJD2S{an'C} Ѓa`82VVUQZ[vw:[ lדxL>{?zhbn;*jEMGmѰ`>ck} 00;z=lf3I\6mfB/J{D4۬-oY}qzQLE"O>hp)Ngb#')i畓ZUqm7>=^DXBVR ]D3  0MJğqUR6'}|F6iEY[`=oiOJ>Yly)U߿'vY381Oj !faIi;5vM\W:۬pf[kAjh[$vVҒVRsגW8YjAk{%~v| PJ"/!!a:wx5ଶ%]Zz`wS~dC_ϰiIP)G4'oѶ*m!ΐG_Uml]FTQ3cuFjQؿ&$@@$!J@W̕՗@A9!`YET#U`㳓-Бb(p+7M׏Jw5.[([kE̞hHI\UTX2 9ah]`Ҹi[;m͎`/{mI z 'V8.a_7_Ͽ16zV/[EDH*uzf`ND|8r:h ^B:L=&Y!!`fAyB\A oP6$1~eD2sgj!G\s@}8%9dN ˿:Ӧ2x +;؄YmT*W;|Y==3-ųee% WM &zBlH#Clݭ[M6nt^|wqͮTr`zB} 1OWx+$d@vx8 ` _*[f}-9wjzw5]@E)Hԩ~`}2 n{+-nrk֬.\op4oٻlpe x|>1qNIEHWB:PƢ +yܼg,Pn+8/XԊN 3\Pp^p?4pۡ7~/p.*g2רrof ]pӉM߰6s#4x3%e@nV5t_[nVzqb:xxUOm.zL =dHVV]C3I pT)ng~EoTSPϘٽ@>`c0Ӆ59LbFbfK49tWaܯo=#bvvyIYbYzp LIYiOLJzTzrzNusaԿZE޾#y-#.u|M}R. N?u;sИG;WxVwmߘ$PZY~)k\n/Szzd~"bvt]dPX9"| JddƜ|S_:6eWox1abaHxW dkxCIj<9|nbI_6۳J>? 7;\ ~e` igFT`Itп956a_'*ꎱ5]5JX:u̟?C|LUr7u;œT]tK$Y}ϧdO(ן6 zK uWǀnZ>UP vԳ`giyY=܏t5/P׃Jtn| 9goޥiayX* ;oio=ci/ S'^WC<$mHУhV3C~12GP|fj5;p'0UV)+>\}vÃu_볞GkW[bzZ">J릦WaŬ/~[=<<6xS>(,mT80S}JՓ0`r{Gc wbg\ۓx^;ӌRIDf ~S6ZCQo2ƘxYx> 2xb4BwK:R~ XJB>9-׸ s1b:K̤MSF)q߇^mR;qsC6Z 4%ljhy]Hz2TD!xN1eٱ?r}|[K%IJd 2N<:ML. oPgTpܷ q`^!bL? 0 6e45%+!Lc|t[4=P ') #殀|+˶/xXAȾK S5NL8L?P es\"-}s#]HȣqDz v$?][TY/aNj#? a@KqR#9:t,7͝kA,qfz밎dHzNٴY\ '}dl/f̈́38\wOdņ +=ppN?8pخ?GgbxeE*RQ,j+c|`~.-k5St5 #Acz<&kʐ͂t'\nq9U(؛`<-Xb*zyͩ}6\C|Jl|b;gH>u[)0RVlbMQ(LB cU4eD(MIEo.Vݝ<myz'bE4,'Dز|C/V[PC'P,aZE*8xڑ#a\SRzVޅZ19F'H'>!aBg:Eűۏ򜸫^?\I[ʙxQo󹔠xկ˽"ń@(VrPQv =QU02ꪱٿ&Zb^R?x:4{g&p'j<2˂Ե))Jr;[n_[a oo! Qv(h=1pD_`\#s .BQCaT-Dv: t97;D@Zw014JđܹJDjZRB(G2qwP @٩ŽTc^BF*ZWGi9bܮG[]dQPmTg菱qNMpg.#+vE?Gl ^ĘՎ\W ;oF\z&JL&NJeNRY_eh!=[O?&T;6Ybg/ KCf`Pa<+7d~ h,Ϩ?=8'9haBm(hX$@μ@Y(08Qd)bWSl-J:ܥWyeI:bm4 g/ylny8 ;:j%~9 '6+8..jb3)VYƑK~DX,$ {jћ>y@ }(4G5ky<ӆs?8.ާF UNfhY<9g;N > x$_CEAfAؔuHfdžZɛDOBٽge:x+bYd Vǖ[\D'g!\ V뷾IH(ׂG^S"_]8s:[ > /UӭhߔYm.0G@[b)rRIT uT{C дʒ?>b"s# \FNC@C&mjeğ19xP ] wmʘ.oumLҊ((IAN/_>xM뷧je"$pvx릸J$~bVLHE:jK縩Z[!]%1ix[8]LE^\~zg,jj&,H^ka,rud+kg_禀^f!91(l}mhsW(ăQLe!>>^A7'F7dޚ 7:~Opq,>}7g[X8%pH`ϊj8 Rϊb &ͿBYl{[޼}足hY[$%% ;v.u*\ _C+v#h^ (^J)Ee +|Q ew()Hj_g)Gs9,2ܴq^V~fx &K3cLaQ˜Jxʼ*YZƬPvi??@{{%$ K?čH@s2&ymWѸBbJbxE@|7ҙ컽99oPE;&_K#ï; >%z]u1ԫ(;Y!Z"V4e$"lRm| <}.>J'_]2t` CW/yP vU}9BVvo?\RR ,cPFb)"֏l iط_ xDrҸGE=ÈM Sd"5D b hfĦɨ/32Jz:o\e_; !aDUY %_e4*k#Wq<5uQh M:a 'kUZQD@:*\#b7" TVդIE(B` چ=9l7cE65`~3L$a|X=k*țʶ.DsqaRQP5H5 ̣n=Z"jD%/tT_`:ލDl9˂V`5$HLW׿K|Aa 3X(?c'^aCl2.@Ox ~$!7DfߥҐQ*-",,ib:=L|!yU6<_9+V)#ddЎ&:~rwjzqgp&p8^_lCzo'qse  쩉kݥ:~Ɋw3? om_Iֺ :)-X~wcBwwN`:sU8"yR*.TޗBX Ne?]d-M],^z `DV G1Y v.^g`zs.K 7A"HI"sȇwBÃE|ch(VV6iMCQ =4:62QZ辩[u[usw{vH946͔Uy](HAtv:$xL\Qף!aȿ@8K+ܫ;lo%U4.WZ&S6Npu&?Uϯ@AyNHCx?y4 B\{'Cdgʆy*2B㭌> 13RyΦm9RQ]9{M8'mSX%zr]Ӯ$;nl%]yt?\^l ɱ2s4\M;8N s\ڧzx sAHi_}%Cbù4۝ce24n3 K,Քط慷VvTan<b[:[UeA=[ҴFJH(U{~Tܓ&kQְ Gåep3ro(Be#J&PtȁW{7|b ;U[e4on Ĕ{Mw+QrϱOY5֋deI=+33t=NJ[3 NƓۈ/]מm]껊b̦Mawz}vAbUAڄC5a栫c!mG0L!Z:h#`nZÿ229+92CȮiC AgKtmkGM?<*HT7Zm_]p;(קGa<D%D^ݤp5O5paVM_Gi~ڠ:"Cy5۬Ow>o<ꮠ Od g >nF9&#羽^bPsBi^W:iZ_޸;f=k(ò8j2&D hn#>Ϙ^g4Sa늞n_맃N@"bu=GutD&BBף(Isx?ouqg4cB }fP?2Npw*+֌^i?_ֱgrٕ5YO9r^_`U+Asi5Dѝtr޾>s]|ms(gcFkrcIOlwuԑ.u;g˧7i:6B|g?rmo4\FVά=|Xh:fcM~-[#yų33A'2LgŔcEJH%yq f>=`\yܲrFӘ˒'nޡt Ye#nEdu{ g۬tj _չ>c)љv6(AyNO/,wZK"[U*ޞy|}EG| MMeH\foޏ(ǜy46^ey6 .ldܾLDy BIaƁbYav:Z&c)OyBLL-1)fXCx &n6]=OQ,wlz,q =iKy=W~J) [1 bt'mKM#; 96{$&]1Z=mjzgǥ|u0pe){el|~=]LUW[X ʻ?eXv{@+Ы8 vHvb 9D#(؛ˆimc滷غJῠsZ$}9VU@dp1KC?cObJN4B16UR|u({V,M30"Er43crJ IR) A3Kq04]24sZcQki TiGGClb4[찿<!sTon9S)} >bu2 H;@@u0j6C!i3V[4_Sڵ_88>փV2v-ZnEͤLTЩwwOM1KܻHI8<\ydDBӵ$T:t_R^ }wjq1ayeX}h$]֠j>-&->rvGZ~=T889 b30!lʔY+~=B`2 e?~J*F JƱM̌.}in&[VW=N.}Hw7,3@CGS:O\D8P@ǂ #a]юz}HPA-Txb] د|G@!#/z o9fjQ)t?foU18bWY#E1qCݻ=[ޟ~\nI%ERIn&s ;h? ѺPB'F{vSu}I?rݴ_9aƃE&.[1NLA%KSrr1/Ngx?kk#y<6g}އF[iWy@ yAZCj~ie ,o>Y^5Ghg(  Kr?شZ2Dfr&r2e5ʡԽ.1#3m4Z =-w 8fmVN2NG~╭IO@_ fLAAC, mcedz%nSiŧ.g'*"ΥN(op0'D ۬9(_~~]$Mu=6XX e/ h`"8c0]gg4ƲYm)2%BqLߖA!3oݩDgރ)6|oPp?[]ՆvKcYܡ2SZ ԯb sRf7 )/FR{}9>vВ("sLL#n5D%Zؗ^*/ySwן'F8jSs_9lc&9 fPE;/I)@Gv4J8n+U@mTйGaH&Ά[AS*+/~֝>NaJxA1+\o&k;@V(8 ]$`\;Nb:. es(e9V^5|Rf2BE ;5q. ZOݾzƾQ32J6Cy~zЉ'ت"A.pG_՗w);OkQÔLwSb_ClW!-)[OБQ=-O]Zt/LEU4Sk~*I/wǨwۍ:|Z$骃-_9:2,&4eEem0rqG^nfVIP^nk0RVAdKXe2*=4I(HLJ3]“`RWNl,qD( V5җtۆ! ݏ)zvvI3D֤F E2[4@)WHr7:{43[8a~%{$Co 孕635EKy]Tyn^XGΥA@m_q[ݭRuq Z\P8G9Z>OHhĂ~ "DoD6\ݬ>HV 0j=vweJsVG؈cb ,z;XxfAs%'Խ{"EVۛn4Z}/}tfVZꀶ2, VEjkM,ȍgfy㕦=n0ƴ+[e č?USN޸O.ѺbY`OdAO@mA"}SVa:o115 #,FxA!*\#NЃhGe̵#fNLQ(.wחVݗ_٣3znYl2Mdd*z)b|{fqȤ>c`1􂶽Zbη)ANc-# ^?'\X݊h_=U)'mՉ #GaUL(hlwZ,LZnXզ7#^q(aAN;LB?Zy8mJYB!!K0YQIv"Q(2m&^K!1,%[I;+s]ss~<>}N>5Kkk NjC-I@ZӚLqfF~ti-koŵi B u kuEˋvW=ͺe E,6rT2j޸X^~8c5uzRgɽYpe_ e-P<76awAVлXCws iLaK]s.[_F6QtKr:z0=(>)#c\MPuVPގ `TO J.hIz͆z]"ӂ'R%R = }u3[B}d3Tx Na0,z;^P|slqK+*!DШ5: &X6IִqGdOnO6zAݢ!!e&uDX堓aVN2gdf A~be!i GkH8nlqQoL Kcb>EUmKc bفO)t2s?ګ)| I.MM yt ˆBk{cYc{~VYnoA5XҘ^D#OgM3)Q+SEku?-{Td6¼ - YE L!I>:] J|ZɝӹuzxXj' ckh %ڝ*^Ww]k 'ʊ,|sڜźGtxg΃dlR!!ܽ{.VYs뾢%N;<ݠUOqd~;#XǓfND{ꞺkU2Z.cCWֹ+Tzb)lsפ,eEHK^:lnh+r4 Oz_4 ̹Ƈ@0j5>oV/MLWMvPQcm5|e$=&S;쉖C&$z}#^N6ڳ4؀T d9(#ȥ-/e9G +4=@#]mV}?PK =W,Rproduct/PKV$RX"xKW$product/2020-12-30-5fec1b3f84b2e.png77>FJD$JfK}7h#{Bfj&&;`hXk|s~}|:溞z>㺮>0~8a׽{!h ; " ~kp|g@Hs@ g!5g.OTΜu4:浪tQNr"7OJ F z^ Ag^ÜN;#6֖Yzzp m0V;(f;9=Z眏 fBcIM$Ul#$Ôp#!> pBU,5$|*ʉb#̴>\p(ٽl¼]TwD[jޅ۷?.}aw."ç^ȰÌu1nz1g);Uu ~]`d%r$+&C"?T/mQ )Гp\{SXQӛ'yo .sR Kn#uIyu<Z/E޶L'ɑw-+5Mq- . *B4tQYKK 7i-]Ȼ C#VݢYkD4JLt38%}9XڱR Jt'lQU3Q-˕ff4 ZGKF[efс{Þul%q1sVـ7:u9 ZOՔƙ2Fg9fs!`JdnD?=Ң3# 9V rv{i{Ub2JY ۩yd+Xx=Kك<KqIe qJ}0#I H"⣈]zFs nmj:Sٳ8pN1ػiw57 viXe)ܛҚ[?>GƥЂ6҄<2BD#Gc *S&/A&Ζ\8jZ/k+ĜJNu<-:s\rLWL,# $xzaqo+_5؛I:FLU= O\o&%cA_H$' mR&NGYj2ߴRN{B뭊aQ)d T=BnzF9uyKmY4ofƫjn^MڧPO3&rȥ+jzGM6_,(Aȴ0yo4jҜ?Bcmrm#{vi8aȪjm{L0P4UyOm2{瀘C!,F,%iN9w rU^s fro+LBG]F)wV~Rqe ?KtkCv&~q C}8qg .+gu_OZvXdٓjR'酎|q@X~lAvU.0}|IEQTV͈;pyiL '-V*3H(=bgu춗{wi#2~pP(t9,X '3 f5R>_뙬Qa_9EY/, =Ja$[~0HTmz׭CA1¸[T lL>]YGEsxˁI =YKsBVxd q&rkaZWԠq WAiRH[DoZQyњ e%mh}|cvͬwԨU} `rU"`OBKmRo?tOsoR7l"kR` ՆϳAV4;3S:!zwFbeJu0!L9SZ❸nZ^لϭ)Ebb""}-c^J=@Q_2mG7&Κ)&a܄y >OYbyoՕ H# W$ŠGqyy4؄h_ghYsnTzHA*ɦJZ||5{(JMha0يF⭤kBuLU% d Py.ygMe_Z\8D 8]U7gzGU>b|d};iU{ѣϳ.l}GV/?lDv+šrEܒލYf7@6 .4{D&bUu_7iWl$,v2!C>AƱ:y2IdJ޸E{ԐLâ WQWk=]KΐIPYK-]Y'0tU!p`,9VK)tXrG4ȓHܽr_JгwxXM`6i-B6߀f O.ᰝ4G7,n2w^ߞ&/zgBЯ $*NEw2B譕J,/v#1>sK6;ŖpS ЪCDֺ*vWrr_'<6]?"})V:ä p:@8@⟘ʦU?Rh yAVX~+#дnc!LyvR:fr4 ג.PBR{qv}k X$STz#^jO$ۗGh GxJGXeގMf6J 3eR$жG  }/~4 !7@DS:si)&.މ}TyO=X-p0!`h@5 L!NucǎX']݉\]C8 FVy=w,Łƥ@e VB ז oT]4*[>o4@KA`"@Lg@#sI?e5C/ePB GM!A i#a--"cj=@o^AoiU`\bא(`]$|$(NFYɇ hP?@|9@ [ۻHHhEu|y(ߥLH2B;XFٿ9>9FjtWa:G JN-=,:u4'#tBY 4({{כd _^7Ƈ@x<pMzwIR5\Hvem,pΗ+3 e.z'R~Rf;O =i ZE47 p,d* ֮!J`r>w_964GoJPa!yZ% [ɐ`4 ѵRAvlErزL4Ej||@Xv5Px Cq]C_+JER%h7[}bw,vhC~f1’t('Іѕ;=lعiΌ;@@,f!Bw, Ʒ ˻B?ruU- p/Ce5Cʇ+t~| |)ڲ EcphT\yt3Y/ONؽFrXW]\K-nhKJܑ6KӋrfޱ_ 1#UxĿifc+p/0jg$4GMЖ.y _bV^} fZKo(eu|\& `k{?bX6},ZWUüٓnTҲebfM>eL49l5W GA`"y..(>SZ)mr|Ԣ c f)p&_lCoUuOtWys!sQ,WSI4ߜ(H ԨMW^=B'h 8>qXe)2( (/gfF^=TzxczTpBpb1+7$H.s]T YI)'pa{Fs/}#_U8CB&Xk0mɄ.q:ɉA']\uO9)ǚ7R)4d\s\qH)7LXlY-Qo "9ۭDmQC2 qsfi`ƨnP7}d"X0wfiqQ7;;;ļ='GAʜ疶I9" BRq?ASZ\OdU(?Jrw-w\ >I]<A ~C SF􅅅]7ŵgSB @@jPV q^>:^\62kC>0[2qI96~':J}CdؼW`LA.XTP+G=} RIoyR4uX4v4]7Un pJݪ&42/%~u?YApm5"BjD]wXu5͘W?.' pS\` 0)] SR9'$w=á@äH:B>K~hÒj7VRkQcIӱڇxBKO0:щx-QISI#7LfM{2L k -L%[$K2|2rd@6"%ӭ?Z5r,%+z?|*u])0Y}_eV!4W&X.**`+vӄY@lEYՙ؂:=ڈ&I@H Tooa}F-tك}ftw \/]!3 85𪼬2pZPAC)ᘷUTL9Q/r^ZdΉVLmGͻzI% U46mƘC?4&D)U[6Q&ĵ qk&di=o|f"0vz >(cDYnp}wZ%٠  n ,lx[)+l>$="J/4y|Co1,2akձPfAJko=!^XL?ؤX2n1b?<>aZ-%:ӂ5J>->0m> ͚#&LwIײ2KW<[HF:hՂ78t7I90yxenސ/ zӶ=9C#TuC:.:h.+%oRm%ԔUw,Q^NLEpɕzxVB:3'[ wD8ZC~/{Y\\5|rv;zd!X0 ItRc!|3ؾ5WTךR7:|(YJ\ڻ]YGrk;1Lv+ - $biXȎ--j3IE:UW@̿fڳ.<`wMF 3WMۿX vȰ&̾BpF%k7](0Fs+ Kզ=#܉Y~=jh$W9+^<[ .,-)['45/WzZ+nmeLM c6qюa;!c4fZ~?-AymL|KGM٦SU54"&ӗNH;l:9G2?n3Z!^D0bZY~~?u@?be߰VV hbcV$<:;uZJ5ټYhoqmZƎ@Ly -<#u%0mu0v󰻤siQ/^ߒeP\gvpU)Y"MHkW8FS΄IapP몉KWFQts[0)2BB3X[Z|~$H|Ri6 +B.cɷ$+m3޲pɈ[ iu= 3`H7hi6\Y>0P ooA Mh$qf\Q=4qiAC"4GلNw111Ue<Ņ.ROXWJ u?Cn>xZwA[س@Bg>59rkbxw^mAN>k7mmK?<–|!zo+Ea,R86)bUlb EV p{NHW!8YggNjƜ23䀴=UJ$`ID"C>[C27H$$Y )(%3lQDe)TmS[7~1ΩwѸs*RAHXŤ9;65%BZG B ]6YmߠBVAx?DajX]-1dnCH0#|Rj2-EKyst{V_C*K  a߱ƅi `~PeczR\.$]Of~ E@i{MfYR|ᄈt&gB g ^ṃJByYTʐO2>:_Q~QږX׺eLqpAV8۷PB[>12+ Oy)E5.QwZ&{H2X?ܲV׀*&mz'hDꉰ>T1m  yN}ɻC'HjEf T%  \An =7!exѸ[Du撧崅VE`'!_A^a>1n rQ}Pʶ{~+{ L.n sVd$ 1naC:²3Рo@&vu(Ógj9RgsI;Tȑygr¨h^geO1EY͘ي,y[}X*G݄#[Hޝ75➯V8ɆoIz6n찝Ѓc'7h>./=K?js<;xd!t!d$ȷJ˺<9)B6{l2\T0m[?OUwvz GS6;֬p}GM~/7MVʄh$'ORc:AV6\l"y;ߠ>A\īʰpKZلL@!/=7]ju]יkcn;-|x#.QvNN*f\,mVJY-|F'ݕ&m4~kQDˮmc+nЩ+XrUBYŘѲG2wD+̭]VΝ@"{ܜMTՄ+}1wRpu#Z#PhgNEWm5[E/|6C ܯ'/NVyPC f pzGС_#bAK ܣ+G{䩱{{ CJ_9^3%!6L77O"_ OEkS `}@GXdJA]έ4/am"(ozuuAz~nXq-. xu5g$*ͤs|bKkRֶQ\J\,]=7EQ.8H=3;̳"ȡQs'e\v_S|׵}t%.{7Fs ,nSvw&6Xfs,pX,ƆYVx/Jkc+~;lŧ*ػ̎RxQ7qhmx _uY54Ʀ#}`k}7:x Ե),RMM-]kHMH'߈Gp="ha_AU#H4,Ô7IHWRqU:REBWS0؞9GsJ .n>h4|&qb\8E8*=8:Yn x5N@v&6B?+rO@CSbP*۵ch(N5w|8NۭGVȸ?|qYڝq^@bZ#\ p̯__Kl&׏Xj.e>)*JOHDn; _۶P'QA7X 96i0tSg-z[Zk9N=.ȆTցxBn[΀ 둟v_Z4TZ"IWUlGPbIPb];ܴ?]^ &k G(:kgr+:ؕpf+T ^3hht {z=Ԯ \W K]ЯgBm?͑>!_2mL+=jJ-.Pn}Hno ՖDsr{TvB6fs%֒{޲Iv"!)AZV7s?.{xu_oqȾoA3_|[!tŐh[7_xoIx͝`5c Z3ȆdсHU} Ur WdwF zs Aޟˢyi+%{amV"B1voraKY 0H2#_MVk'p X<[^z\І?GDD7^|%}w ͻ laᗽg l$7ݰͭ B> ]SSO*Rk/uQ>{2+}UЕq4NsnM+xMl-G;tea~9*`YcW![swB2D#_(dmm0`*J&)%^:BόҗSFݛ Q_tRi61PWTJ8Gf65K^gQlO4SC o K  jg,9.XL|m=uʯ',$ȺLUe29/{Kוv#/d u0JA81lIIa8Wݕj*(6,[/dPKn^Ҹ G}zezrt*?67+ͥ<Ay3a$swFaIfe_n3|E|b1x'jg0'4R'L{Z4*A,W'mSӣTQSŏ/ y `ܯ{CR QS 3,X6^7V|mj{+]d__ R?2s_&[F"J%y:~.yz`@\ԚvFL_]S~qFxV^=(I]6~P1Iփc27Vmc;ފJjeD@zH29vww<停A'GC'23 g6X'ߋDpkhdj}=TJ:NxuU҄G;˥w-n!.^" #%WHoNy0q2P?cqxE3p$ieBby*UZ4BEo@%B@7%gu&RbBkcr7n >}N " l4dx/ L䫱\[ ,7QhkˢM`^͵nyZ5nB1B{~!W 6ʈgs`ϧJ2Qk[WM[v?ݯz#C_ QW>zx·Gu-?DǗBi]t+lU7pyv)̃HbXTkҽde/wBȒ=M?ujPv@Um|h*PzJfNSbe ,<;3L|kǒ6U="q!"SD#M$(>~:.9 2WNxy9K:z%eOP=111jS9 ĨWJ kڻEDyklZ饥ɺ 9Ԣ:oMFYtȒi|4 E|k72|b#ExbW@Ćj@_i1$T OV~,GQ}\MB,^.|wxQw]T^I2C?/*ڛ }sDoܻo'e)݇+2:_9ҽə;q~Ӎ m LhL2҈kCA*̃~ ^Zl軙4'If('@hE6OQ:G3YWY_R&*f#Iaeo}k&~@JuV..88LXfYGmޟ]oYնۂ.l mZBkxY˦P+ &@L86?ǐHxBv MUWU~e.u`8|?Vw+.I$wƚ̈( щY ItV1ѣCԽdT(ScVl9{n!d;.Xw;\7.'`sFmաNךZdR\R:/ &׺Y-4U Y%4FEڳTS0g5G]6K֐c߸Ъ=ܾTڮ I5~y.5fd̍/Uϫ "هdeܥ-NK*_}?@ gXhW(w^l)hUzr+*uŚ&Vf= Q-U?6V.#)UY~N>I]>ӳ,%EñֆW.HNȮG+!cPͯ~;\a^ n p}M;?u= @C; pw #jN U#H6MZklUm #tasKNHT+ n&鵕nzgԐ2AS.8aj4$G lBUƟ WڞuL2t)*|.u{؜5tk-')f-~}+is5uEp7І~]P~mv d"q1~E_ݤPDMwn#(r&Vv]b n)e՗J zX9_H9:`adN7S6`W ɔ}i>nNޡǶo=GRu(6Mi/owK2o'~Z,zmټx_KZ]&GOy.e'˷Fv=C ^s<ܵ~s.vL8Dvڄ25 }|D/-Z~ژ?+;AFܺ8Ә.f>&cѢ_}v礋5b N= Fh/|pkZ8A]3~>>HtݍQW7$-Hm{ ? WfMHN]zs~T? E9"/@, "#\B`~z+8y}~l÷Xcjr2/_M$&⊊*MeܯKw̔O#0F>_vfz:Ħ#f; {r_}]"TxgXP3ŵT;D'k>?Wl$V7r=2,j5|}&WCwM8N+ fYv4S;l߯|:fZ,ϏHNN^LGMK ~tvg/KDwܻP3BW Ǹݞ6.}ujElzMLL斗Kp7HKⲉ/hk{;dJ[!kߙ]Et{Yʺ]7W,6#:Y)]զ좼kocӈJgd[ ` 0kg=7F"q!a-۳/3଼\ܘj/B֍JK2VLgW'<,SU ^0w"Qj6ً8ѵK[&^((̓DJG[6¥BQϓ91y"ߛVWk,4f+Lf=xAA7.6--!Qk~0Ky7 &N9jS7kHX RT[og.q+Ʀ՛؜˞Kߺ0/kުRqx^J T h='m f4R/~(m\((-swES_r)ln>8Xw;XٷtvzRij̦3"h ov{jV.q5޼-O YBy4jW uxesDaM"W8n `yM-[+z]%9 xH Z[i^4Mп=}ir·4% 盕\A(pcLΕp([ew1.Gm$`h`xZ0~ ߚo.!)WyE|T>NY|Ո;CCPSb߯I[/?%7gҸfϔʗTBmJw1аw?gvJK?E4<ʚ0>]j R+,8>n}c7djRx0)2TIcI(.7j$k$pbwooeXKL븴e645YЎ^3ҁ766FZq6ʛ2֗NaZPW>ϧD$$6)Lx|hxxpx[Tȼ?](c3@4}a,Lfj?VaZ&NɨSs6ǜOyB"n!e^^A "SasΖfq?qLo^QØMELMڟ^JT|F}%IhsөrYkWH['Rh aܜNg%7tN:g;$fq e'' yk{.Zs=k3qÚ\n^,Vf3o^DUk ~]'rbtljwG[[[U#(ŦR'uIhKvTMzkZF("vfdž;s^֟ŷh uќ^ǹ>>Ft LZpA"ɵxVYYg΂EYT%70ևvooӵR1Im2`4F٨s` pt{a`aK+qFcc1oCx:P鶁@6e$@/?mΡ$9?!6yۗN5Xp ěB9J/ұ, qr$) |efqS4<yfmrdܭ"Ԇ&mx}PKV$RC8F$product/2020-12-30-5fec1b3f983f5.png|?X*!rٵH ]RńlwRT dcdK4zۼ>\9s76=NJ@ ]r`_,'¹9ZA+6ǿ_ %-gswىcWnH|.w!&sF׺ϝ;`uSڏ- PE.nnRZwޯrڂ?|<oXmpf@ N>ۇ@-eǍwKOO|7$Mr2mfkic`YڟR"^k/׫c$NWƤL.o>h\{$ԲD^^qѾR)6b|I$o}xMfS,唛ṧՊhէzXssټrBC-u?gbZH< קY۬}_]7km=K%i]oL?_nctdVCunn] M- u`^I'ӳIERS,WMqgw5T&b3%ѵTi6T`RG^Y}j * p@\&vzyT=ϥVz+C0a:GNUqXlj=zAxKh03턼*Ao{ÄZ ]d*őpdz[L[)ܕu(jAލn<]檐"¤~SjeC BMw,$w϶m2>~"{MwISI Nz?PjR<Ü?4eRT塙GY]eMv,9F&~wK;DBg?og Bvah} Z۔Od@t<8d,\R7*ddeZ}%oU1TjdC6WOFχ4Y:VRbJLakkk62ŲN-DǾ1B]l)K0aY櫄z0L R9!,5GXȸARk);xk%8%&Tc3인}͏HȂD@EgQk+7^źNt?VwR5g 焸F˛p5وIOe5Xls`WjdM3쿊_ܩu:h?2(9ykMG]TxU4qt[t72عW ?UkO l_GwDneХ_ 5*H_dx'E(#y8uWrtͯmu%[FDV*yt>q[|1q`)B Ѯa[Q#V̬-ĺy[y/_XJχ`x+Ԥ;o9n3 |28tAwƋ0KuAB`M%2`T :Uw%mˢ${{Zk^ '': }g׆v+QV#VdJ8.7D }Z@_މDZ%EP?ήY.oW:"5 ( E ~ 8-}A"+R[sYZ4zCacuIs!WðOy+DBNj[Ob!)}j9E9Lq{9gַfp.jYYY鎽[[op@(z: i!Tҏ[EL={Xm"Hˣ4!c+>T{$}?/ֶj*;~"Rݧ.E`w9e@$dЛ2,^le.cWb\< ltAVR" 2R*qTvϵBRʬ 1 ;GN#®=Leq1K"{\8$ 9ƂЃ a֏e2-p燞O*RHμ'!MBTnFcw@]E66]`5/_58ݷ0zBԙ.=V;r*]k-vYcį{`&V6d|^19nWl_90u0^gd|Cwx1,h@z&XtGϊo^RDoCaA c^5=/s Qbi  {{1wZc,Umq LUplK1Z%/S<"M447U>~ n(%졘ZZOG<|]Q?VCa|UX u*a;N}͸4ܨ2T^i)U.n'+ i-pš[^\aj|OE"xJEʱC '`[٬\>27Z_QV BxU c0Ai$"Ӄ yU UZV<"!Aqg\@ȦXsҍheIi3Ӏg؁xT BxnKnyVJ0u]h¾`Cȳ82:9H w}LYTRҦ8^;sov.^9c8?)i"\ʞBR#{FY P @l V2&:Y2̐M": kU r}o[-"15RK}<.p֟*`SxJ5ufQ. #dB靂)̐kIjG SB}ٓAYF.9tN0nr#y~:wP@\bz:X.0:*;E:߲x~3ډ\=TC15Sz* ^Jgt7h'(:bdTagmKmq ^ԪxjN1d"4H9^$`m9 )S5XBӗ.6IM M::jO^.wR]ec*6@8t3ܱ:ȉث}1i 0P2Tebx:Hs:d1^5y/vZ*!v, brg{VG:r5Egm6OvYEG<mh אxvpR.Հ( 8X66k YvЩ; etN BYC.Hz(YjE-E0VEl%eB)G|!T%-~x5תIt)Xz1ox,2T%̋%ZC5rkWM0-i z4[C&AjTɳ<q"`1Zg!CV7t8:~m9s^}Zg2==bu=P(}[obZ+CpbG}qAtH,I"2j7O&c;?a7Lf͒}̿28k>UF 8ZX{ %; >3̇uԛ1X$~,ahMƶ#~ ̑CP^'N~'fBdoP?"OH=/v5>}qTd/c~zjѾKDoٖUISMY .^@l{W2TWW~2"F;cA_lnxC$ 8uZX|Ũ)iy~5T8~~iperͤ֕_P*#59\vX!f@}tKPIm M7Q@ OԌ=186wH ~e0]`ROHe#  :#EصjlO]˔u2ǑH I#CRiV1I*00W7BRf!gCӌK?ćF <_6YKܪӤ\9Ӻ}z ̷EM[A4#lqX3<8:z$7kge~L50hp"Hc1= >a`"?j.;2;ौilnVO|mzIsK_BZ$Lmy?___W]G"|۳bi}l,0Qࣥ"*"޷B1'&&>a'8PAf;uYphk{&V"].Fv3tŪ 겂2^'D1%%op!vpn8y+GeZjaMZ@HR?AkFo X澟űvu3Y:yi}!^-c>Rޒ -o "zc֖|Vp:_H@'q c3!|)а)vCWa ͼ@Fg)c~#AniI&8SX))-:].qa I*筣xK&Z⸃=n<[DA͊ dM! "T,I@3v ;LO:%7ɳѬT/"„ 2Ս<aj~X#V&a.^P8F;3\RKZ/=ǓB< l孜l{_ըn{j!~ "$؞Ez`ZyMIDW?H4gPΛh%4Ozp3#mT/o:P\T7 eBKe{M0Pc| M88:|1guSfȎ q!sU 6B~Zf}=@G?ǹ9[kXܿsC}!D7X9v%}yǤb5(#d#Q23g$dd&]ٷ A)c):{Bq**+$,hϨyJ{@z;M3FpfV 5kpjo>1a[v}oK*͜u-ǘo$'ȣ4R 8mAѻT2ɞ1ݳR1Om bj>n z2fش_{Oئ)R,2)XmI{KJ?#^4 E>D|7}ݽgg*[w> Z R!z $[6y( .V)G#-Lt{kzђg7+!`QE?Z6Q` Gݗ$(c,4F^+)$dvT+aMZWEut7(sY ef}A1c\5^Vg1<_bS6%;=#ˬ8/e=h)ϵĠ.&j|6iҤj[٬d??nv,v*!Ml~5i8v oERsʠ Qw;~cDB640p#`$ A^XNo`4)29^%(s'ת+/;rmcYm[n;3l?gBb|`B mRs:$@~&u$2?Cj .HShc}W >( >w-N&bD%tSKIA}}j\fiQ 9468 E.aYk1[pl$80Tރ֥N=X}؃6=^|/EKCA$άn$e雧\`\ .B`=*Hs܃{`fU `?;.|wv4)/ڷftl讄1m푧{Ieʛj)"hP§^݋c.F%ԩ~2[k??h-4'5.d y`\oӯɗԫ&^ q:WGCz'fm7v*.3 ͡_?Ɠrz`jm- O0ץd"U1aG+G>.+[2ӉR3'eصi+x|JVꞝE]3JeR\.x {Y뿁P M7+r<S沈9<ŁH=rɣH< Տ!Md-aTJ1AzĎhkpff3rɀ̳RNn:>Pg[UֿOi#}+s(-w}w-qt :0$K<}qCQ|P?jq=kvU}{-YyM ^/&PœwnFz@|p5 !闟AE&7dt^_'-SR5c8w&xao1sE<إG=;ѽMtn]^-KQO5Ґ A/v::M9ס^LAtv\5Zw6EhWlF"H*FWMd t DuiH|WGתi㪥8F8cuZ뭥cL-\ύkTgonc}`+1 ur-RǵDLb9ϊLJԮ2M%l 3zsB]v^w7[^jeJʋa`% TixO֨OA[ep']d_m}>`d,<7JV6(:U{tE9x^!C|P_>yvkle+ðxu8 WBZ̻`)⡌h]h[P"w|\y^}U;rVcg{UM{ ZYIn Oî]Mco d{puAMuR7͖ѓ[c%8 Ug*Iwdwe: z׺N>[YwIK|KwVk ICtz ҉rrP2򂟟_[D5VA%iQbD9֦NJ13-HM'd]*>[mX7c`RIhxH@MjwF#}hzg~=>lub^T %{mLZ|dzt +M%kZu d㬘須/xk{gӞ/nwE~'Bдگg= C5숰V 0" < _NU~Rk`XU쭘1mU5z3ˠW~Ww+щ!O\sZ%YřRίH]C$w|n.iEpH2fz7lE봙]=`U#"z)c)\l{wTh!urrG6̝WBgF7%:@^S wh{|QtwwmQw~,7"9OˮPE~`~ l-~>l֝TԄBO!=䥹S ͮ O>y ePea-?⮉AOoYauOC7iZ+_"@jO$"sN:{ ZpBRg I-1wUʚ`r+N/LGrgVHX-- s~He/r{NR?Nz9_ڤ:H͞+=F 1oGoK)qfדF̜˺O!~Qu=ұgQ4 `;4f 3 f wK+'zu 8lz8bg_b8E?i-s; 5UsE }dėdE*WUnv@8{'H]y FɭSS>K9X&6"=Cs]:{y9F5&Y[=ޯ뾄oUѷ?`pb#?,d2--*Ǐd [ИTH&ܬ>^a,"?T~PX|C, WȾw `vC2 8d˥Х8Nfׅ6ATmsL}ZN .Py}RJ`vH&IPYTAq<@Q3,NjmA<] b5}jET7+#m􃷫!鶧&¼AEVg%Yb,~副 ))Uƒϓ\)^J@pi7u:#QRҘ y~cRǚbVx{6Y@>7/㳎|v>ul<巑a{Zq*:Xq Svlh}Д|G63Ϥ/Ho^ˁ+8<<|*UWhcW;·*>vBtYm3***\+ۙX Fx!(ys]2.9 `zLRPo&6w"Ale\鴮.#.0BY<USH +Tf$.(e3997aE>=[m]&\Go= 8֖P:}pY3+z3C;e>ծҗ;dEqI3?i/>hy}/ T_E\{ƪ3i=ZXަt R;WcAr޶|\"!FYcֽ-`?|QS葈{v_H߲##)XrDR=/2,W-zI HJ*o 87{`ݡ튢1|0jb rzAs.\ L)"\Dz_]&ΥyXuQƏ\3l1ͬBEB͟1|+I,]XQ$c&cD " )(Z߭4:ó8['pcq&=x >e`̭)E?00?֋NP8t |Dsr/i_гN.*㮎@serӢ?-zҤ"SHrd1'TÈto+dۺ[y^ :iX䶭RHLd8V,&uf3Pusp{| ٤~"/>j| 0.u!U u[HMB6švR1ORmnRE`xg@R|ΰxys okmS&:7h9?QvT4-Ұ0C[?}?6cvUm諘o\V磢ܶ`Qjr\u3KECѠqAS5ڛM7[ʠl ʰI1sO(D`r«~Z5>[|N. r޸^q?߁#jۧ3;Dƣ\JǥX#uArhTC2 JMh哭5]"9yl2 KC?yәyڴyŢr5["[Zt>f`ab`{•İr_a5he ̣hš2/.Go?]8y0471saRT@Yek 08膒KlZwy2`z0A~Y"FsѢsٜvpZfxDׯΜ9,̣05,iv3r.낳#6Gy1+`IzJu :}A\>k,BCF{_8P*rWU؄{"QAyq0}"-)$ VĹcS:ok/clJD=s;Uv"YY\P dܬ^3\$`/رa Te#m$eP8ZK*^41e,nbTBE3~i";na[\yS$9ַrU@NfpHv_Zr{0Uڲw48K! p [+8׀qZ,\/~(gE i2j3a{_:US C I9S O f~P烳a<$xܝ4ɠuL|4~~>52Hy%Y[;OgT }7'Z+%T=ȀoZоYW#|}L mw3hr̷4؛}ƫwfGwOŅ'P*:M(f<50xsdF Ǵ&W]Z|nFNWբrLt6Jv=;_&kIH69j$6y%ۢbG3]; me#O=j& [kf[g;{u8=1`.)oDiF]-$شwcHEysdxF?pS]H)̘MީZ1p6gnhЉ o fL5''@}LS76no'`*{9r <\ OrrcuX,3%:o d{sW|ڈwI>T!jbP$5XQJ.܎Q̩y4FJJM4q.5tZ6[YIX'zijD7MZNxd4 @K qׯC"+WV(Jc3gy$m2 (V#"L~ײΕ|nя,BF֓SLQo*^Ob6W.ZgbQ=yml,Ju05g[~i=kMC:ѝ<(0-\O> $?Ŭ>ۙ. vǮ+cIJh0hUWRQKzo*a5~@ӿRǨ` $-g+_(9@ORY^/:?IM]kk@p4٘Jږ|n^xasȓoajpx~ڄ$(Rύ杍XhCUo2])t`쨘qbm%,c .:5u'x `<#<㭂bYc7r-粲i!~7KvKTV08JVjQLw3c,ѼQkx~4Az[Բ+_>C9Äm3 =ͨŭ뾛(4[ߋɪe"ׇ3&)eP'[&. tN*/'L ߚ\zDŞU]Ŝ"s?9m[5$u& 5=IäfwE8}[#YdN޷4S/M@O`#l,߀ Lq'8.j=qwfRQLEuҘ2ͳ{m b>*pS۫-)P7A[uh*9{zrKPsQ?i cJm]ԇC hhts~ܲ/E"jޱ $%&ˊ {9LY'ۄsyYT NCvD(Pb>ӿ;4@^w`/7;P[+Qfo?y(Q=V Mc>C8ww[QjU'P蟑e5OskfV7 kKkeI,tB)ߒ[1jpVzsj}G^"~HYj&g[HFyb>LF{S+'fߍCu4%nG/A-[#XBK-NEiV'Iߙr̶k"$X?>F՘0qsv:;OWYym0Jd>Q)DffC8^#٧*^;W/^PKV$RX"xKW$product/2020-12-30-5fec1b3fa8fd8.png77>FJD$JfK}7h#{Bfj&&;`hXk|s~}|:溞z>㺮>0~8a׽{!h ; " ~kp|g@Hs@ g!5g.OTΜu4:浪tQNr"7OJ F z^ Ag^ÜN;#6֖Yzzp m0V;(f;9=Z眏 fBcIM$Ul#$Ôp#!> pBU,5$|*ʉb#̴>\p(ٽl¼]TwD[jޅ۷?.}aw."ç^ȰÌu1nz1g);Uu ~]`d%r$+&C"?T/mQ )Гp\{SXQӛ'yo .sR Kn#uIyu<Z/E޶L'ɑw-+5Mq- . *B4tQYKK 7i-]Ȼ C#VݢYkD4JLt38%}9XڱR Jt'lQU3Q-˕ff4 ZGKF[efс{Þul%q1sVـ7:u9 ZOՔƙ2Fg9fs!`JdnD?=Ң3# 9V rv{i{Ub2JY ۩yd+Xx=Kك<KqIe qJ}0#I H"⣈]zFs nmj:Sٳ8pN1ػiw57 viXe)ܛҚ[?>GƥЂ6҄<2BD#Gc *S&/A&Ζ\8jZ/k+ĜJNu<-:s\rLWL,# $xzaqo+_5؛I:FLU= O\o&%cA_H$' mR&NGYj2ߴRN{B뭊aQ)d T=BnzF9uyKmY4ofƫjn^MڧPO3&rȥ+jzGM6_,(Aȴ0yo4jҜ?Bcmrm#{vi8aȪjm{L0P4UyOm2{瀘C!,F,%iN9w rU^s fro+LBG]F)wV~Rqe ?KtkCv&~q C}8qg .+gu_OZvXdٓjR'酎|q@X~lAvU.0}|IEQTV͈;pyiL '-V*3H(=bgu춗{wi#2~pP(t9,X '3 f5R>_뙬Qa_9EY/, =Ja$[~0HTmz׭CA1¸[T lL>]YGEsxˁI =YKsBVxd q&rkaZWԠq WAiRH[DoZQyњ e%mh}|cvͬwԨU} `rU"`OBKmRo?tOsoR7l"kR` ՆϳAV4;3S:!zwFbeJu0!L9SZ❸nZ^لϭ)Ebb""}-c^J=@Q_2mG7&Κ)&a܄y >OYbyoՕ H# W$ŠGqyy4؄h_ghYsnTzHA*ɦJZ||5{(JMha0يF⭤kBuLU% d Py.ygMe_Z\8D 8]U7gzGU>b|d};iU{ѣϳ.l}GV/?lDv+šrEܒލYf7@6 .4{D&bUu_7iWl$,v2!C>AƱ:y2IdJ޸E{ԐLâ WQWk=]KΐIPYK-]Y'0tU!p`,9VK)tXrG4ȓHܽr_JгwxXM`6i-B6߀f O.ᰝ4G7,n2w^ߞ&/zgBЯ $*NEw2B譕J,/v#1>sK6;ŖpS ЪCDֺ*vWrr_'<6]?"})V:ä p:@8@⟘ʦU?Rh yAVX~+#дnc!LyvR:fr4 ג.PBR{qv}k X$STz#^jO$ۗGh GxJGXeގMf6J 3eR$жG  }/~4 !7@DS:si)&.މ}TyO=X-p0!`h@5 L!NucǎX']݉\]C8 FVy=w,Łƥ@e VB ז oT]4*[>o4@KA`"@Lg@#sI?e5C/ePB GM!A i#a--"cj=@o^AoiU`\bא(`]$|$(NFYɇ hP?@|9@ [ۻHHhEu|y(ߥLH2B;XFٿ9>9FjtWa:G JN-=,:u4'#tBY 4({{כd _^7Ƈ@x<pMzwIR5\Hvem,pΗ+3 e.z'R~Rf;O =i ZE47 p,d* ֮!J`r>w_964GoJPa!yZ% [ɐ`4 ѵRAvlErزL4Ej||@Xv5Px Cq]C_+JER%h7[}bw,vhC~f1’t('Іѕ;=lعiΌ;@@,f!Bw, Ʒ ˻B?ruU- p/Ce5Cʇ+t~| |)ڲ EcphT\yt3Y/ONؽFrXW]\K-nhKJܑ6KӋrfޱ_ 1#UxĿifc+p/0jg$4GMЖ.y _bV^} fZKo(eu|\& `k{?bX6},ZWUüٓnTҲebfM>eL49l5W GA`"y..(>SZ)mr|Ԣ c f)p&_lCoUuOtWys!sQ,WSI4ߜ(H ԨMW^=B'h 8>qXe)2( (/gfF^=TzxczTpBpb1+7$H.s]T YI)'pa{Fs/}#_U8CB&Xk0mɄ.q:ɉA']\uO9)ǚ7R)4d\s\qH)7LXlY-Qo "9ۭDmQC2 qsfi`ƨnP7}d"X0wfiqQ7;;;ļ='GAʜ疶I9" BRq?ASZ\OdU(?Jrw-w\ >I]<A ~C SF􅅅]7ŵgSB @@jPV q^>:^\62kC>0[2qI96~':J}CdؼW`LA.XTP+G=} RIoyR4uX4v4]7Un pJݪ&42/%~u?YApm5"BjD]wXu5͘W?.' pS\` 0)] SR9'$w=á@äH:B>K~hÒj7VRkQcIӱڇxBKO0:щx-QISI#7LfM{2L k -L%[$K2|2rd@6"%ӭ?Z5r,%+z?|*u])0Y}_eV!4W&X.**`+vӄY@lEYՙ؂:=ڈ&I@H Tooa}F-tك}ftw \/]!3 85𪼬2pZPAC)ᘷUTL9Q/r^ZdΉVLmGͻzI% U46mƘC?4&D)U[6Q&ĵ qk&di=o|f"0vz >(cDYnp}wZ%٠  n ,lx[)+l>$="J/4y|Co1,2akձPfAJko=!^XL?ؤX2n1b?<>aZ-%:ӂ5J>->0m> ͚#&LwIײ2KW<[HF:hՂ78t7I90yxenސ/ zӶ=9C#TuC:.:h.+%oRm%ԔUw,Q^NLEpɕzxVB:3'[ wD8ZC~/{Y\\5|rv;zd!X0 ItRc!|3ؾ5WTךR7:|(YJ\ڻ]YGrk;1Lv+ - $biXȎ--j3IE:UW@̿fڳ.<`wMF 3WMۿX vȰ&̾BpF%k7](0Fs+ Kզ=#܉Y~=jh$W9+^<[ .,-)['45/WzZ+nmeLM c6qюa;!c4fZ~?-AymL|KGM٦SU54"&ӗNH;l:9G2?n3Z!^D0bZY~~?u@?be߰VV hbcV$<:;uZJ5ټYhoqmZƎ@Ly -<#u%0mu0v󰻤siQ/^ߒeP\gvpU)Y"MHkW8FS΄IapP몉KWFQts[0)2BB3X[Z|~$H|Ri6 +B.cɷ$+m3޲pɈ[ iu= 3`H7hi6\Y>0P ooA Mh$qf\Q=4qiAC"4GلNw111Ue<Ņ.ROXWJ u?Cn>xZwA[س@Bg>59rkbxw^mAN>k7mmK?<–|!zo+Ea,R86)bUlb EV p{NHW!8YggNjƜ23䀴=UJ$`ID"C>[C27H$$Y )(%3lQDe)TmS[7~1ΩwѸs*RAHXŤ9;65%BZG B ]6YmߠBVAx?DajX]-1dnCH0#|Rj2-EKyst{V_C*K  a߱ƅi `~PeczR\.$]Of~ E@i{MfYR|ᄈt&gB g ^ṃJByYTʐO2>:_Q~QږX׺eLqpAV8۷PB[>12+ Oy)E5.QwZ&{H2X?ܲV׀*&mz'hDꉰ>T1m  yN}ɻC'HjEf T%  \An =7!exѸ[Du撧崅VE`'!_A^a>1n rQ}Pʶ{~+{ L.n sVd$ 1naC:²3Рo@&vu(Ógj9RgsI;Tȑygr¨h^geO1EY͘ي,y[}X*G݄#[Hޝ75➯V8ɆoIz6n찝Ѓc'7h>./=K?js<;xd!t!d$ȷJ˺<9)B6{l2\T0m[?OUwvz GS6;֬p}GM~/7MVʄh$'ORc:AV6\l"y;ߠ>A\īʰpKZلL@!/=7]ju]יkcn;-|x#.QvNN*f\,mVJY-|F'ݕ&m4~kQDˮmc+nЩ+XrUBYŘѲG2wD+̭]VΝ@"{ܜMTՄ+}1wRpu#Z#PhgNEWm5[E/|6C ܯ'/NVyPC f pzGС_#bAK ܣ+G{䩱{{ CJ_9^3%!6L77O"_ OEkS `}@GXdJA]έ4/am"(ozuuAz~nXq-. xu5g$*ͤs|bKkRֶQ\J\,]=7EQ.8H=3;̳"ȡQs'e\v_S|׵}t%.{7Fs ,nSvw&6Xfs,pX,ƆYVx/Jkc+~;lŧ*ػ̎RxQ7qhmx _uY54Ʀ#}`k}7:x Ե),RMM-]kHMH'߈Gp="ha_AU#H4,Ô7IHWRqU:REBWS0؞9GsJ .n>h4|&qb\8E8*=8:Yn x5N@v&6B?+rO@CSbP*۵ch(N5w|8NۭGVȸ?|qYڝq^@bZ#\ p̯__Kl&׏Xj.e>)*JOHDn; _۶P'QA7X 96i0tSg-z[Zk9N=.ȆTցxBn[΀ 둟v_Z4TZ"IWUlGPbIPb];ܴ?]^ &k G(:kgr+:ؕpf+T ^3hht {z=Ԯ \W K]ЯgBm?͑>!_2mL+=jJ-.Pn}Hno ՖDsr{TvB6fs%֒{޲Iv"!)AZV7s?.{xu_oqȾoA3_|[!tŐh[7_xoIx͝`5c Z3ȆdсHU} Ur WdwF zs Aޟˢyi+%{amV"B1voraKY 0H2#_MVk'p X<[^z\І?GDD7^|%}w ͻ laᗽg l$7ݰͭ B> ]SSO*Rk/uQ>{2+}UЕq4NsnM+xMl-G;tea~9*`YcW![swB2D#_(dmm0`*J&)%^:BόҗSFݛ Q_tRi61PWTJ8Gf65K^gQlO4SC o K  jg,9.XL|m=uʯ',$ȺLUe29/{Kוv#/d u0JA81lIIa8Wݕj*(6,[/dPKn^Ҹ G}zezrt*?67+ͥ<Ay3a$swFaIfe_n3|E|b1x'jg0'4R'L{Z4*A,W'mSӣTQSŏ/ y `ܯ{CR QS 3,X6^7V|mj{+]d__ R?2s_&[F"J%y:~.yz`@\ԚvFL_]S~qFxV^=(I]6~P1Iփc27Vmc;ފJjeD@zH29vww<停A'GC'23 g6X'ߋDpkhdj}=TJ:NxuU҄G;˥w-n!.^" #%WHoNy0q2P?cqxE3p$ieBby*UZ4BEo@%B@7%gu&RbBkcr7n >}N " l4dx/ L䫱\[ ,7QhkˢM`^͵nyZ5nB1B{~!W 6ʈgs`ϧJ2Qk[WM[v?ݯz#C_ QW>zx·Gu-?DǗBi]t+lU7pyv)̃HbXTkҽde/wBȒ=M?ujPv@Um|h*PzJfNSbe ,<;3L|kǒ6U="q!"SD#M$(>~:.9 2WNxy9K:z%eOP=111jS9 ĨWJ kڻEDyklZ饥ɺ 9Ԣ:oMFYtȒi|4 E|k72|b#ExbW@Ćj@_i1$T OV~,GQ}\MB,^.|wxQw]T^I2C?/*ڛ }sDoܻo'e)݇+2:_9ҽə;q~Ӎ m LhL2҈kCA*̃~ ^Zl軙4'If('@hE6OQ:G3YWY_R&*f#Iaeo}k&~@JuV..88LXfYGmޟ]oYնۂ.l mZBkxY˦P+ &@L86?ǐHxBv MUWU~e.u`8|?Vw+.I$wƚ̈( щY ItV1ѣCԽdT(ScVl9{n!d;.Xw;\7.'`sFmաNךZdR\R:/ &׺Y-4U Y%4FEڳTS0g5G]6K֐c߸Ъ=ܾTڮ I5~y.5fd̍/Uϫ "هdeܥ-NK*_}?@ gXhW(w^l)hUzr+*uŚ&Vf= Q-U?6V.#)UY~N>I]>ӳ,%EñֆW.HNȮG+!cPͯ~;\a^ n p}M;?u= @C; pw #jN U#H6MZklUm #tasKNHT+ n&鵕nzgԐ2AS.8aj4$G lBUƟ WڞuL2t)*|.u{؜5tk-')f-~}+is5uEp7І~]P~mv d"q1~E_ݤPDMwn#(r&Vv]b n)e՗J zX9_H9:`adN7S6`W ɔ}i>nNޡǶo=GRu(6Mi/owK2o'~Z,zmټx_KZ]&GOy.e'˷Fv=C ^s<ܵ~s.vL8Dvڄ25 }|D/-Z~ژ?+;AFܺ8Ә.f>&cѢ_}v礋5b N= Fh/|pkZ8A]3~>>HtݍQW7$-Hm{ ? WfMHN]zs~T? E9"/@, "#\B`~z+8y}~l÷Xcjr2/_M$&⊊*MeܯKw̔O#0F>_vfz:Ħ#f; {r_}]"TxgXP3ŵT;D'k>?Wl$V7r=2,j5|}&WCwM8N+ fYv4S;l߯|:fZ,ϏHNN^LGMK ~tvg/KDwܻP3BW Ǹݞ6.}ujElzMLL斗Kp7HKⲉ/hk{;dJ[!kߙ]Et{Yʺ]7W,6#:Y)]զ좼kocӈJgd[ ` 0kg=7F"q!a-۳/3଼\ܘj/B֍JK2VLgW'<,SU ^0w"Qj6ً8ѵK[&^((̓DJG[6¥BQϓ91y"ߛVWk,4f+Lf=xAA7.6--!Qk~0Ky7 &N9jS7kHX RT[og.q+Ʀ՛؜˞Kߺ0/kުRqx^J T h='m f4R/~(m\((-swES_r)ln>8Xw;XٷtvzRij̦3"h ov{jV.q5޼-O YBy4jW uxesDaM"W8n `yM-[+z]%9 xH Z[i^4Mп=}ir·4% 盕\A(pcLΕp([ew1.Gm$`h`xZ0~ ߚo.!)WyE|T>NY|Ո;CCPSb߯I[/?%7gҸfϔʗTBmJw1аw?gvJK?E4<ʚ0>]j R+,8>n}c7djRx0)2TIcI(.7j$k$pbwooeXKL븴e645YЎ^3ҁ766FZq6ʛ2֗NaZPW>ϧD$$6)Lx|hxxpx[Tȼ?](c3@4}a,Lfj?VaZ&NɨSs6ǜOyB"n!e^^A "SasΖfq?qLo^QØMELMڟ^JT|F}%IhsөrYkWH['Rh aܜNg%7tN:g;$fq e'' yk{.Zs=k3qÚ\n^,Vf3o^DUk ~]'rbtljwG[[[U#(ŦR'uIhKvTMzkZF("vfdž;s^֟ŷh uќ^ǹ>>Ft LZpA"ɵxVYYg΂EYT%70ևvooӵR1Im2`4F٨s` pt{a`aK+qFcc1oCx:P鶁@6e$@/?mΡ$9?!6yۗN5Xp ěB9J/ұ, qr$) |efqS4<yfmrdܭ"Ԇ&mx}PKV$RC8F$product/2020-12-30-5fec1bf5418ea.png|?X*!rٵH ]RńlwRT dcdK4zۼ>\9s76=NJ@ ]r`_,'¹9ZA+6ǿ_ %-gswىcWnH|.w!&sF׺ϝ;`uSڏ- PE.nnRZwޯrڂ?|<oXmpf@ N>ۇ@-eǍwKOO|7$Mr2mfkic`YڟR"^k/׫c$NWƤL.o>h\{$ԲD^^qѾR)6b|I$o}xMfS,唛ṧՊhէzXssټrBC-u?gbZH< קY۬}_]7km=K%i]oL?_nctdVCunn] M- u`^I'ӳIERS,WMqgw5T&b3%ѵTi6T`RG^Y}j * p@\&vzyT=ϥVz+C0a:GNUqXlj=zAxKh03턼*Ao{ÄZ ]d*őpdz[L[)ܕu(jAލn<]檐"¤~SjeC BMw,$w϶m2>~"{MwISI Nz?PjR<Ü?4eRT塙GY]eMv,9F&~wK;DBg?og Bvah} Z۔Od@t<8d,\R7*ddeZ}%oU1TjdC6WOFχ4Y:VRbJLakkk62ŲN-DǾ1B]l)K0aY櫄z0L R9!,5GXȸARk);xk%8%&Tc3인}͏HȂD@EgQk+7^źNt?VwR5g 焸F˛p5وIOe5Xls`WjdM3쿊_ܩu:h?2(9ykMG]TxU4qt[t72عW ?UkO l_GwDneХ_ 5*H_dx'E(#y8uWrtͯmu%[FDV*yt>q[|1q`)B Ѯa[Q#V̬-ĺy[y/_XJχ`x+Ԥ;o9n3 |28tAwƋ0KuAB`M%2`T :Uw%mˢ${{Zk^ '': }g׆v+QV#VdJ8.7D }Z@_މDZ%EP?ήY.oW:"5 ( E ~ 8-}A"+R[sYZ4zCacuIs!WðOy+DBNj[Ob!)}j9E9Lq{9gַfp.jYYY鎽[[op@(z: i!Tҏ[EL={Xm"Hˣ4!c+>T{$}?/ֶj*;~"Rݧ.E`w9e@$dЛ2,^le.cWb\< ltAVR" 2R*qTvϵBRʬ 1 ;GN#®=Leq1K"{\8$ 9ƂЃ a֏e2-p燞O*RHμ'!MBTnFcw@]E66]`5/_58ݷ0zBԙ.=V;r*]k-vYcį{`&V6d|^19nWl_90u0^gd|Cwx1,h@z&XtGϊo^RDoCaA c^5=/s Qbi  {{1wZc,Umq LUplK1Z%/S<"M447U>~ n(%졘ZZOG<|]Q?VCa|UX u*a;N}͸4ܨ2T^i)U.n'+ i-pš[^\aj|OE"xJEʱC '`[٬\>27Z_QV BxU c0Ai$"Ӄ yU UZV<"!Aqg\@ȦXsҍheIi3Ӏg؁xT BxnKnyVJ0u]h¾`Cȳ82:9H w}LYTRҦ8^;sov.^9c8?)i"\ʞBR#{FY P @l V2&:Y2̐M": kU r}o[-"15RK}<.p֟*`SxJ5ufQ. #dB靂)̐kIjG SB}ٓAYF.9tN0nr#y~:wP@\bz:X.0:*;E:߲x~3ډ\=TC15Sz* ^Jgt7h'(:bdTagmKmq ^ԪxjN1d"4H9^$`m9 )S5XBӗ.6IM M::jO^.wR]ec*6@8t3ܱ:ȉث}1i 0P2Tebx:Hs:d1^5y/vZ*!v, brg{VG:r5Egm6OvYEG<mh אxvpR.Հ( 8X66k YvЩ; etN BYC.Hz(YjE-E0VEl%eB)G|!T%-~x5תIt)Xz1ox,2T%̋%ZC5rkWM0-i z4[C&AjTɳ<q"`1Zg!CV7t8:~m9s^}Zg2==bu=P(}[obZ+CpbG}qAtH,I"2j7O&c;?a7Lf͒}̿28k>UF 8ZX{ %; >3̇uԛ1X$~,ahMƶ#~ ̑CP^'N~'fBdoP?"OH=/v5>}qTd/c~zjѾKDoٖUISMY .^@l{W2TWW~2"F;cA_lnxC$ 8uZX|Ũ)iy~5T8~~iperͤ֕_P*#59\vX!f@}tKPIm M7Q@ OԌ=186wH ~e0]`ROHe#  :#EصjlO]˔u2ǑH I#CRiV1I*00W7BRf!gCӌK?ćF <_6YKܪӤ\9Ӻ}z ̷EM[A4#lqX3<8:z$7kge~L50hp"Hc1= >a`"?j.;2;ौilnVO|mzIsK_BZ$Lmy?___W]G"|۳bi}l,0Qࣥ"*"޷B1'&&>a'8PAf;uYphk{&V"].Fv3tŪ 겂2^'D1%%op!vpn8y+GeZjaMZ@HR?AkFo X澟űvu3Y:yi}!^-c>Rޒ -o "zc֖|Vp:_H@'q c3!|)а)vCWa ͼ@Fg)c~#AniI&8SX))-:].qa I*筣xK&Z⸃=n<[DA͊ dM! "T,I@3v ;LO:%7ɳѬT/"„ 2Ս<aj~X#V&a.^P8F;3\RKZ/=ǓB< l孜l{_ըn{j!~ "$؞Ez`ZyMIDW?H4gPΛh%4Ozp3#mT/o:P\T7 eBKe{M0Pc| M88:|1guSfȎ q!sU 6B~Zf}=@G?ǹ9[kXܿsC}!D7X9v%}yǤb5(#d#Q23g$dd&]ٷ A)c):{Bq**+$,hϨyJ{@z;M3FpfV 5kpjo>1a[v}oK*͜u-ǘo$'ȣ4R 8mAѻT2ɞ1ݳR1Om bj>n z2fش_{Oئ)R,2)XmI{KJ?#^4 E>D|7}ݽgg*[w> Z R!z $[6y( .V)G#-Lt{kzђg7+!`QE?Z6Q` Gݗ$(c,4F^+)$dvT+aMZWEut7(sY ef}A1c\5^Vg1<_bS6%;=#ˬ8/e=h)ϵĠ.&j|6iҤj[٬d??nv,v*!Ml~5i8v oERsʠ Qw;~cDB640p#`$ A^XNo`4)29^%(s'ת+/;rmcYm[n;3l?gBb|`B mRs:$@~&u$2?Cj .HShc}W >( >w-N&bD%tSKIA}}j\fiQ 9468 E.aYk1[pl$80Tރ֥N=X}؃6=^|/EKCA$άn$e雧\`\ .B`=*Hs܃{`fU `?;.|wv4)/ڷftl讄1m푧{Ieʛj)"hP§^݋c.F%ԩ~2[k??h-4'5.d y`\oӯɗԫ&^ q:WGCz'fm7v*.3 ͡_?Ɠrz`jm- O0ץd"U1aG+G>.+[2ӉR3'eصi+x|JVꞝE]3JeR\.x {Y뿁P M7+r<S沈9<ŁH=rɣH< Տ!Md-aTJ1AzĎhkpff3rɀ̳RNn:>Pg[UֿOi#}+s(-w}w-qt :0$K<}qCQ|P?jq=kvU}{-YyM ^/&PœwnFz@|p5 !闟AE&7dt^_'-SR5c8w&xao1sE<إG=;ѽMtn]^-KQO5Ґ A/v::M9ס^LAtv\5Zw6EhWlF"H*FWMd t DuiH|WGתi㪥8F8cuZ뭥cL-\ύkTgonc}`+1 ur-RǵDLb9ϊLJԮ2M%l 3zsB]v^w7[^jeJʋa`% TixO֨OA[ep']d_m}>`d,<7JV6(:U{tE9x^!C|P_>yvkle+ðxu8 WBZ̻`)⡌h]h[P"w|\y^}U;rVcg{UM{ ZYIn Oî]Mco d{puAMuR7͖ѓ[c%8 Ug*Iwdwe: z׺N>[YwIK|KwVk ICtz ҉rrP2򂟟_[D5VA%iQbD9֦NJ13-HM'd]*>[mX7c`RIhxH@MjwF#}hzg~=>lub^T %{mLZ|dzt +M%kZu d㬘須/xk{gӞ/nwE~'Bдگg= C5숰V 0" < _NU~Rk`XU쭘1mU5z3ˠW~Ww+щ!O\sZ%YřRίH]C$w|n.iEpH2fz7lE봙]=`U#"z)c)\l{wTh!urrG6̝WBgF7%:@^S wh{|QtwwmQw~,7"9OˮPE~`~ l-~>l֝TԄBO!=䥹S ͮ O>y ePea-?⮉AOoYauOC7iZ+_"@jO$"sN:{ ZpBRg I-1wUʚ`r+N/LGrgVHX-- s~He/r{NR?Nz9_ڤ:H͞+=F 1oGoK)qfדF̜˺O!~Qu=ұgQ4 `;4f 3 f wK+'zu 8lz8bg_b8E?i-s; 5UsE }dėdE*WUnv@8{'H]y FɭSS>K9X&6"=Cs]:{y9F5&Y[=ޯ뾄oUѷ?`pb#?,d2--*Ǐd [ИTH&ܬ>^a,"?T~PX|C, WȾw `vC2 8d˥Х8Nfׅ6ATmsL}ZN .Py}RJ`vH&IPYTAq<@Q3,NjmA<] b5}jET7+#m􃷫!鶧&¼AEVg%Yb,~副 ))Uƒϓ\)^J@pi7u:#QRҘ y~cRǚbVx{6Y@>7/㳎|v>ul<巑a{Zq*:Xq Svlh}Д|G63Ϥ/Ho^ˁ+8<<|*UWhcW;·*>vBtYm3***\+ۙX Fx!(ys]2.9 `zLRPo&6w"Ale\鴮.#.0BY<USH +Tf$.(e3997aE>=[m]&\Go= 8֖P:}pY3+z3C;e>ծҗ;dEqI3?i/>hy}/ T_E\{ƪ3i=ZXަt R;WcAr޶|\"!FYcֽ-`?|QS葈{v_H߲##)XrDR=/2,W-zI HJ*o 87{`ݡ튢1|0jb rzAs.\ L)"\Dz_]&ΥyXuQƏ\3l1ͬBEB͟1|+I,]XQ$c&cD " )(Z߭4:ó8['pcq&=x >e`̭)E?00?֋NP8t |Dsr/i_гN.*㮎@serӢ?-zҤ"SHrd1'TÈto+dۺ[y^ :iX䶭RHLd8V,&uf3Pusp{| ٤~"/>j| 0.u!U u[HMB6švR1ORmnRE`xg@R|ΰxys okmS&:7h9?QvT4-Ұ0C[?}?6cvUm諘o\V磢ܶ`Qjr\u3KECѠqAS5ڛM7[ʠl ʰI1sO(D`r«~Z5>[|N. r޸^q?߁#jۧ3;Dƣ\JǥX#uArhTC2 JMh哭5]"9yl2 KC?yәyڴyŢr5["[Zt>f`ab`{•İr_a5he ̣hš2/.Go?]8y0471saRT@Yek 08膒KlZwy2`z0A~Y"FsѢsٜvpZfxDׯΜ9,̣05,iv3r.낳#6Gy1+`IzJu :}A\>k,BCF{_8P*rWU؄{"QAyq0}"-)$ VĹcS:ok/clJD=s;Uv"YY\P dܬ^3\$`/رa Te#m$eP8ZK*^41e,nbTBE3~i";na[\yS$9ַrU@NfpHv_Zr{0Uڲw48K! p [+8׀qZ,\/~(gE i2j3a{_:US C I9S O f~P烳a<$xܝ4ɠuL|4~~>52Hy%Y[;OgT }7'Z+%T=ȀoZоYW#|}L mw3hr̷4؛}ƫwfGwOŅ'P*:M(f<50xsdF Ǵ&W]Z|nFNWբrLt6Jv=;_&kIH69j$6y%ۢbG3]; me#O=j& [kf[g;{u8=1`.)oDiF]-$شwcHEysdxF?pS]H)̘MީZ1p6gnhЉ o fL5''@}LS76no'`*{9r <\ OrrcuX,3%:o d{sW|ڈwI>T!jbP$5XQJ.܎Q̩y4FJJM4q.5tZ6[YIX'zijD7MZNxd4 @K qׯC"+WV(Jc3gy$m2 (V#"L~ײΕ|nя,BF֓SLQo*^Ob6W.ZgbQ=yml,Ju05g[~i=kMC:ѝ<(0-\O> $?Ŭ>ۙ. vǮ+cIJh0hUWRQKzo*a5~@ӿRǨ` $-g+_(9@ORY^/:?IM]kk@p4٘Jږ|n^xasȓoajpx~ڄ$(Rύ杍XhCUo2])t`쨘qbm%,c .:5u'x `<#<㭂bYc7r-粲i!~7KvKTV08JVjQLw3c,ѼQkx~4Az[Բ+_>C9Äm3 =ͨŭ뾛(4[ߋɪe"ׇ3&)eP'[&. tN*/'L ߚ\zDŞU]Ŝ"s?9m[5$u& 5=IäfwE8}[#YdN޷4S/M@O`#l,߀ Lq'8.j=qwfRQLEuҘ2ͳ{m b>*pS۫-)P7A[uh*9{zrKPsQ?i cJm]ԇC hhts~ܲ/E"jޱ $%&ˊ {9LY'ۄsyYT NCvD(Pb>ӿ;4@^w`/7;P[+Qfo?y(Q=V Mc>C8ww[QjU'P蟑e5OskfV7 kKkeI,tB)ߒ[1jpVzsj}G^"~HYj&g[HFyb>LF{S+'fߍCu4%nG/A-[#XBK-NEiV'Iߙr̶k"$X?>F՘0qsv:;OWYym0Jd>Q)DffC8^#٧*^;W/^PKV$RX"xKW$product/2020-12-30-5fec1c3d21bca.png77>FJD$JfK}7h#{Bfj&&;`hXk|s~}|:溞z>㺮>0~8a׽{!h ; " ~kp|g@Hs@ g!5g.OTΜu4:浪tQNr"7OJ F z^ Ag^ÜN;#6֖Yzzp m0V;(f;9=Z眏 fBcIM$Ul#$Ôp#!> pBU,5$|*ʉb#̴>\p(ٽl¼]TwD[jޅ۷?.}aw."ç^ȰÌu1nz1g);Uu ~]`d%r$+&C"?T/mQ )Гp\{SXQӛ'yo .sR Kn#uIyu<Z/E޶L'ɑw-+5Mq- . *B4tQYKK 7i-]Ȼ C#VݢYkD4JLt38%}9XڱR Jt'lQU3Q-˕ff4 ZGKF[efс{Þul%q1sVـ7:u9 ZOՔƙ2Fg9fs!`JdnD?=Ң3# 9V rv{i{Ub2JY ۩yd+Xx=Kك<KqIe qJ}0#I H"⣈]zFs nmj:Sٳ8pN1ػiw57 viXe)ܛҚ[?>GƥЂ6҄<2BD#Gc *S&/A&Ζ\8jZ/k+ĜJNu<-:s\rLWL,# $xzaqo+_5؛I:FLU= O\o&%cA_H$' mR&NGYj2ߴRN{B뭊aQ)d T=BnzF9uyKmY4ofƫjn^MڧPO3&rȥ+jzGM6_,(Aȴ0yo4jҜ?Bcmrm#{vi8aȪjm{L0P4UyOm2{瀘C!,F,%iN9w rU^s fro+LBG]F)wV~Rqe ?KtkCv&~q C}8qg .+gu_OZvXdٓjR'酎|q@X~lAvU.0}|IEQTV͈;pyiL '-V*3H(=bgu춗{wi#2~pP(t9,X '3 f5R>_뙬Qa_9EY/, =Ja$[~0HTmz׭CA1¸[T lL>]YGEsxˁI =YKsBVxd q&rkaZWԠq WAiRH[DoZQyњ e%mh}|cvͬwԨU} `rU"`OBKmRo?tOsoR7l"kR` ՆϳAV4;3S:!zwFbeJu0!L9SZ❸nZ^لϭ)Ebb""}-c^J=@Q_2mG7&Κ)&a܄y >OYbyoՕ H# W$ŠGqyy4؄h_ghYsnTzHA*ɦJZ||5{(JMha0يF⭤kBuLU% d Py.ygMe_Z\8D 8]U7gzGU>b|d};iU{ѣϳ.l}GV/?lDv+šrEܒލYf7@6 .4{D&bUu_7iWl$,v2!C>AƱ:y2IdJ޸E{ԐLâ WQWk=]KΐIPYK-]Y'0tU!p`,9VK)tXrG4ȓHܽr_JгwxXM`6i-B6߀f O.ᰝ4G7,n2w^ߞ&/zgBЯ $*NEw2B譕J,/v#1>sK6;ŖpS ЪCDֺ*vWrr_'<6]?"})V:ä p:@8@⟘ʦU?Rh yAVX~+#дnc!LyvR:fr4 ג.PBR{qv}k X$STz#^jO$ۗGh GxJGXeގMf6J 3eR$жG  }/~4 !7@DS:si)&.މ}TyO=X-p0!`h@5 L!NucǎX']݉\]C8 FVy=w,Łƥ@e VB ז oT]4*[>o4@KA`"@Lg@#sI?e5C/ePB GM!A i#a--"cj=@o^AoiU`\bא(`]$|$(NFYɇ hP?@|9@ [ۻHHhEu|y(ߥLH2B;XFٿ9>9FjtWa:G JN-=,:u4'#tBY 4({{כd _^7Ƈ@x<pMzwIR5\Hvem,pΗ+3 e.z'R~Rf;O =i ZE47 p,d* ֮!J`r>w_964GoJPa!yZ% [ɐ`4 ѵRAvlErزL4Ej||@Xv5Px Cq]C_+JER%h7[}bw,vhC~f1’t('Іѕ;=lعiΌ;@@,f!Bw, Ʒ ˻B?ruU- p/Ce5Cʇ+t~| |)ڲ EcphT\yt3Y/ONؽFrXW]\K-nhKJܑ6KӋrfޱ_ 1#UxĿifc+p/0jg$4GMЖ.y _bV^} fZKo(eu|\& `k{?bX6},ZWUüٓnTҲebfM>eL49l5W GA`"y..(>SZ)mr|Ԣ c f)p&_lCoUuOtWys!sQ,WSI4ߜ(H ԨMW^=B'h 8>qXe)2( (/gfF^=TzxczTpBpb1+7$H.s]T YI)'pa{Fs/}#_U8CB&Xk0mɄ.q:ɉA']\uO9)ǚ7R)4d\s\qH)7LXlY-Qo "9ۭDmQC2 qsfi`ƨnP7}d"X0wfiqQ7;;;ļ='GAʜ疶I9" BRq?ASZ\OdU(?Jrw-w\ >I]<A ~C SF􅅅]7ŵgSB @@jPV q^>:^\62kC>0[2qI96~':J}CdؼW`LA.XTP+G=} RIoyR4uX4v4]7Un pJݪ&42/%~u?YApm5"BjD]wXu5͘W?.' pS\` 0)] SR9'$w=á@äH:B>K~hÒj7VRkQcIӱڇxBKO0:щx-QISI#7LfM{2L k -L%[$K2|2rd@6"%ӭ?Z5r,%+z?|*u])0Y}_eV!4W&X.**`+vӄY@lEYՙ؂:=ڈ&I@H Tooa}F-tك}ftw \/]!3 85𪼬2pZPAC)ᘷUTL9Q/r^ZdΉVLmGͻzI% U46mƘC?4&D)U[6Q&ĵ qk&di=o|f"0vz >(cDYnp}wZ%٠  n ,lx[)+l>$="J/4y|Co1,2akձPfAJko=!^XL?ؤX2n1b?<>aZ-%:ӂ5J>->0m> ͚#&LwIײ2KW<[HF:hՂ78t7I90yxenސ/ zӶ=9C#TuC:.:h.+%oRm%ԔUw,Q^NLEpɕzxVB:3'[ wD8ZC~/{Y\\5|rv;zd!X0 ItRc!|3ؾ5WTךR7:|(YJ\ڻ]YGrk;1Lv+ - $biXȎ--j3IE:UW@̿fڳ.<`wMF 3WMۿX vȰ&̾BpF%k7](0Fs+ Kզ=#܉Y~=jh$W9+^<[ .,-)['45/WzZ+nmeLM c6qюa;!c4fZ~?-AymL|KGM٦SU54"&ӗNH;l:9G2?n3Z!^D0bZY~~?u@?be߰VV hbcV$<:;uZJ5ټYhoqmZƎ@Ly -<#u%0mu0v󰻤siQ/^ߒeP\gvpU)Y"MHkW8FS΄IapP몉KWFQts[0)2BB3X[Z|~$H|Ri6 +B.cɷ$+m3޲pɈ[ iu= 3`H7hi6\Y>0P ooA Mh$qf\Q=4qiAC"4GلNw111Ue<Ņ.ROXWJ u?Cn>xZwA[س@Bg>59rkbxw^mAN>k7mmK?<–|!zo+Ea,R86)bUlb EV p{NHW!8YggNjƜ23䀴=UJ$`ID"C>[C27H$$Y )(%3lQDe)TmS[7~1ΩwѸs*RAHXŤ9;65%BZG B ]6YmߠBVAx?DajX]-1dnCH0#|Rj2-EKyst{V_C*K  a߱ƅi `~PeczR\.$]Of~ E@i{MfYR|ᄈt&gB g ^ṃJByYTʐO2>:_Q~QږX׺eLqpAV8۷PB[>12+ Oy)E5.QwZ&{H2X?ܲV׀*&mz'hDꉰ>T1m  yN}ɻC'HjEf T%  \An =7!exѸ[Du撧崅VE`'!_A^a>1n rQ}Pʶ{~+{ L.n sVd$ 1naC:²3Рo@&vu(Ógj9RgsI;Tȑygr¨h^geO1EY͘ي,y[}X*G݄#[Hޝ75➯V8ɆoIz6n찝Ѓc'7h>./=K?js<;xd!t!d$ȷJ˺<9)B6{l2\T0m[?OUwvz GS6;֬p}GM~/7MVʄh$'ORc:AV6\l"y;ߠ>A\īʰpKZلL@!/=7]ju]יkcn;-|x#.QvNN*f\,mVJY-|F'ݕ&m4~kQDˮmc+nЩ+XrUBYŘѲG2wD+̭]VΝ@"{ܜMTՄ+}1wRpu#Z#PhgNEWm5[E/|6C ܯ'/NVyPC f pzGС_#bAK ܣ+G{䩱{{ CJ_9^3%!6L77O"_ OEkS `}@GXdJA]έ4/am"(ozuuAz~nXq-. xu5g$*ͤs|bKkRֶQ\J\,]=7EQ.8H=3;̳"ȡQs'e\v_S|׵}t%.{7Fs ,nSvw&6Xfs,pX,ƆYVx/Jkc+~;lŧ*ػ̎RxQ7qhmx _uY54Ʀ#}`k}7:x Ե),RMM-]kHMH'߈Gp="ha_AU#H4,Ô7IHWRqU:REBWS0؞9GsJ .n>h4|&qb\8E8*=8:Yn x5N@v&6B?+rO@CSbP*۵ch(N5w|8NۭGVȸ?|qYڝq^@bZ#\ p̯__Kl&׏Xj.e>)*JOHDn; _۶P'QA7X 96i0tSg-z[Zk9N=.ȆTցxBn[΀ 둟v_Z4TZ"IWUlGPbIPb];ܴ?]^ &k G(:kgr+:ؕpf+T ^3hht {z=Ԯ \W K]ЯgBm?͑>!_2mL+=jJ-.Pn}Hno ՖDsr{TvB6fs%֒{޲Iv"!)AZV7s?.{xu_oqȾoA3_|[!tŐh[7_xoIx͝`5c Z3ȆdсHU} Ur WdwF zs Aޟˢyi+%{amV"B1voraKY 0H2#_MVk'p X<[^z\І?GDD7^|%}w ͻ laᗽg l$7ݰͭ B> ]SSO*Rk/uQ>{2+}UЕq4NsnM+xMl-G;tea~9*`YcW![swB2D#_(dmm0`*J&)%^:BόҗSFݛ Q_tRi61PWTJ8Gf65K^gQlO4SC o K  jg,9.XL|m=uʯ',$ȺLUe29/{Kוv#/d u0JA81lIIa8Wݕj*(6,[/dPKn^Ҹ G}zezrt*?67+ͥ<Ay3a$swFaIfe_n3|E|b1x'jg0'4R'L{Z4*A,W'mSӣTQSŏ/ y `ܯ{CR QS 3,X6^7V|mj{+]d__ R?2s_&[F"J%y:~.yz`@\ԚvFL_]S~qFxV^=(I]6~P1Iփc27Vmc;ފJjeD@zH29vww<停A'GC'23 g6X'ߋDpkhdj}=TJ:NxuU҄G;˥w-n!.^" #%WHoNy0q2P?cqxE3p$ieBby*UZ4BEo@%B@7%gu&RbBkcr7n >}N " l4dx/ L䫱\[ ,7QhkˢM`^͵nyZ5nB1B{~!W 6ʈgs`ϧJ2Qk[WM[v?ݯz#C_ QW>zx·Gu-?DǗBi]t+lU7pyv)̃HbXTkҽde/wBȒ=M?ujPv@Um|h*PzJfNSbe ,<;3L|kǒ6U="q!"SD#M$(>~:.9 2WNxy9K:z%eOP=111jS9 ĨWJ kڻEDyklZ饥ɺ 9Ԣ:oMFYtȒi|4 E|k72|b#ExbW@Ćj@_i1$T OV~,GQ}\MB,^.|wxQw]T^I2C?/*ڛ }sDoܻo'e)݇+2:_9ҽə;q~Ӎ m LhL2҈kCA*̃~ ^Zl軙4'If('@hE6OQ:G3YWY_R&*f#Iaeo}k&~@JuV..88LXfYGmޟ]oYնۂ.l mZBkxY˦P+ &@L86?ǐHxBv MUWU~e.u`8|?Vw+.I$wƚ̈( щY ItV1ѣCԽdT(ScVl9{n!d;.Xw;\7.'`sFmաNךZdR\R:/ &׺Y-4U Y%4FEڳTS0g5G]6K֐c߸Ъ=ܾTڮ I5~y.5fd̍/Uϫ "هdeܥ-NK*_}?@ gXhW(w^l)hUzr+*uŚ&Vf= Q-U?6V.#)UY~N>I]>ӳ,%EñֆW.HNȮG+!cPͯ~;\a^ n p}M;?u= @C; pw #jN U#H6MZklUm #tasKNHT+ n&鵕nzgԐ2AS.8aj4$G lBUƟ WڞuL2t)*|.u{؜5tk-')f-~}+is5uEp7І~]P~mv d"q1~E_ݤPDMwn#(r&Vv]b n)e՗J zX9_H9:`adN7S6`W ɔ}i>nNޡǶo=GRu(6Mi/owK2o'~Z,zmټx_KZ]&GOy.e'˷Fv=C ^s<ܵ~s.vL8Dvڄ25 }|D/-Z~ژ?+;AFܺ8Ә.f>&cѢ_}v礋5b N= Fh/|pkZ8A]3~>>HtݍQW7$-Hm{ ? WfMHN]zs~T? E9"/@, "#\B`~z+8y}~l÷Xcjr2/_M$&⊊*MeܯKw̔O#0F>_vfz:Ħ#f; {r_}]"TxgXP3ŵT;D'k>?Wl$V7r=2,j5|}&WCwM8N+ fYv4S;l߯|:fZ,ϏHNN^LGMK ~tvg/KDwܻP3BW Ǹݞ6.}ujElzMLL斗Kp7HKⲉ/hk{;dJ[!kߙ]Et{Yʺ]7W,6#:Y)]զ좼kocӈJgd[ ` 0kg=7F"q!a-۳/3଼\ܘj/B֍JK2VLgW'<,SU ^0w"Qj6ً8ѵK[&^((̓DJG[6¥BQϓ91y"ߛVWk,4f+Lf=xAA7.6--!Qk~0Ky7 &N9jS7kHX RT[og.q+Ʀ՛؜˞Kߺ0/kުRqx^J T h='m f4R/~(m\((-swES_r)ln>8Xw;XٷtvzRij̦3"h ov{jV.q5޼-O YBy4jW uxesDaM"W8n `yM-[+z]%9 xH Z[i^4Mп=}ir·4% 盕\A(pcLΕp([ew1.Gm$`h`xZ0~ ߚo.!)WyE|T>NY|Ո;CCPSb߯I[/?%7gҸfϔʗTBmJw1аw?gvJK?E4<ʚ0>]j R+,8>n}c7djRx0)2TIcI(.7j$k$pbwooeXKL븴e645YЎ^3ҁ766FZq6ʛ2֗NaZPW>ϧD$$6)Lx|hxxpx[Tȼ?](c3@4}a,Lfj?VaZ&NɨSs6ǜOyB"n!e^^A "SasΖfq?qLo^QØMELMڟ^JT|F}%IhsөrYkWH['Rh aܜNg%7tN:g;$fq e'' yk{.Zs=k3qÚ\n^,Vf3o^DUk ~]'rbtljwG[[[U#(ŦR'uIhKvTMzkZF("vfdž;s^֟ŷh uќ^ǹ>>Ft LZpA"ɵxVYYg΂EYT%70ևvooӵR1Im2`4F٨s` pt{a`aK+qFcc1oCx:P鶁@6e$@/?mΡ$9?!6yۗN5Xp ěB9J/ұ, qr$) |efqS4<yfmrdܭ"Ԇ&mx}PK=W,RX"xKW$product/2021-01-12-5ffd2c576801b.png77>FJD$JfK}7h#{Bfj&&;`hXk|s~}|:溞z>㺮>0~8a׽{!h ; " ~kp|g@Hs@ g!5g.OTΜu4:浪tQNr"7OJ F z^ Ag^ÜN;#6֖Yzzp m0V;(f;9=Z眏 fBcIM$Ul#$Ôp#!> pBU,5$|*ʉb#̴>\p(ٽl¼]TwD[jޅ۷?.}aw."ç^ȰÌu1nz1g);Uu ~]`d%r$+&C"?T/mQ )Гp\{SXQӛ'yo .sR Kn#uIyu<Z/E޶L'ɑw-+5Mq- . *B4tQYKK 7i-]Ȼ C#VݢYkD4JLt38%}9XڱR Jt'lQU3Q-˕ff4 ZGKF[efс{Þul%q1sVـ7:u9 ZOՔƙ2Fg9fs!`JdnD?=Ң3# 9V rv{i{Ub2JY ۩yd+Xx=Kك<KqIe qJ}0#I H"⣈]zFs nmj:Sٳ8pN1ػiw57 viXe)ܛҚ[?>GƥЂ6҄<2BD#Gc *S&/A&Ζ\8jZ/k+ĜJNu<-:s\rLWL,# $xzaqo+_5؛I:FLU= O\o&%cA_H$' mR&NGYj2ߴRN{B뭊aQ)d T=BnzF9uyKmY4ofƫjn^MڧPO3&rȥ+jzGM6_,(Aȴ0yo4jҜ?Bcmrm#{vi8aȪjm{L0P4UyOm2{瀘C!,F,%iN9w rU^s fro+LBG]F)wV~Rqe ?KtkCv&~q C}8qg .+gu_OZvXdٓjR'酎|q@X~lAvU.0}|IEQTV͈;pyiL '-V*3H(=bgu춗{wi#2~pP(t9,X '3 f5R>_뙬Qa_9EY/, =Ja$[~0HTmz׭CA1¸[T lL>]YGEsxˁI =YKsBVxd q&rkaZWԠq WAiRH[DoZQyњ e%mh}|cvͬwԨU} `rU"`OBKmRo?tOsoR7l"kR` ՆϳAV4;3S:!zwFbeJu0!L9SZ❸nZ^لϭ)Ebb""}-c^J=@Q_2mG7&Κ)&a܄y >OYbyoՕ H# W$ŠGqyy4؄h_ghYsnTzHA*ɦJZ||5{(JMha0يF⭤kBuLU% d Py.ygMe_Z\8D 8]U7gzGU>b|d};iU{ѣϳ.l}GV/?lDv+šrEܒލYf7@6 .4{D&bUu_7iWl$,v2!C>AƱ:y2IdJ޸E{ԐLâ WQWk=]KΐIPYK-]Y'0tU!p`,9VK)tXrG4ȓHܽr_JгwxXM`6i-B6߀f O.ᰝ4G7,n2w^ߞ&/zgBЯ $*NEw2B譕J,/v#1>sK6;ŖpS ЪCDֺ*vWrr_'<6]?"})V:ä p:@8@⟘ʦU?Rh yAVX~+#дnc!LyvR:fr4 ג.PBR{qv}k X$STz#^jO$ۗGh GxJGXeގMf6J 3eR$жG  }/~4 !7@DS:si)&.މ}TyO=X-p0!`h@5 L!NucǎX']݉\]C8 FVy=w,Łƥ@e VB ז oT]4*[>o4@KA`"@Lg@#sI?e5C/ePB GM!A i#a--"cj=@o^AoiU`\bא(`]$|$(NFYɇ hP?@|9@ [ۻHHhEu|y(ߥLH2B;XFٿ9>9FjtWa:G JN-=,:u4'#tBY 4({{כd _^7Ƈ@x<pMzwIR5\Hvem,pΗ+3 e.z'R~Rf;O =i ZE47 p,d* ֮!J`r>w_964GoJPa!yZ% [ɐ`4 ѵRAvlErزL4Ej||@Xv5Px Cq]C_+JER%h7[}bw,vhC~f1’t('Іѕ;=lعiΌ;@@,f!Bw, Ʒ ˻B?ruU- p/Ce5Cʇ+t~| |)ڲ EcphT\yt3Y/ONؽFrXW]\K-nhKJܑ6KӋrfޱ_ 1#UxĿifc+p/0jg$4GMЖ.y _bV^} fZKo(eu|\& `k{?bX6},ZWUüٓnTҲebfM>eL49l5W GA`"y..(>SZ)mr|Ԣ c f)p&_lCoUuOtWys!sQ,WSI4ߜ(H ԨMW^=B'h 8>qXe)2( (/gfF^=TzxczTpBpb1+7$H.s]T YI)'pa{Fs/}#_U8CB&Xk0mɄ.q:ɉA']\uO9)ǚ7R)4d\s\qH)7LXlY-Qo "9ۭDmQC2 qsfi`ƨnP7}d"X0wfiqQ7;;;ļ='GAʜ疶I9" BRq?ASZ\OdU(?Jrw-w\ >I]<A ~C SF􅅅]7ŵgSB @@jPV q^>:^\62kC>0[2qI96~':J}CdؼW`LA.XTP+G=} RIoyR4uX4v4]7Un pJݪ&42/%~u?YApm5"BjD]wXu5͘W?.' pS\` 0)] SR9'$w=á@äH:B>K~hÒj7VRkQcIӱڇxBKO0:щx-QISI#7LfM{2L k -L%[$K2|2rd@6"%ӭ?Z5r,%+z?|*u])0Y}_eV!4W&X.**`+vӄY@lEYՙ؂:=ڈ&I@H Tooa}F-tك}ftw \/]!3 85𪼬2pZPAC)ᘷUTL9Q/r^ZdΉVLmGͻzI% U46mƘC?4&D)U[6Q&ĵ qk&di=o|f"0vz >(cDYnp}wZ%٠  n ,lx[)+l>$="J/4y|Co1,2akձPfAJko=!^XL?ؤX2n1b?<>aZ-%:ӂ5J>->0m> ͚#&LwIײ2KW<[HF:hՂ78t7I90yxenސ/ zӶ=9C#TuC:.:h.+%oRm%ԔUw,Q^NLEpɕzxVB:3'[ wD8ZC~/{Y\\5|rv;zd!X0 ItRc!|3ؾ5WTךR7:|(YJ\ڻ]YGrk;1Lv+ - $biXȎ--j3IE:UW@̿fڳ.<`wMF 3WMۿX vȰ&̾BpF%k7](0Fs+ Kզ=#܉Y~=jh$W9+^<[ .,-)['45/WzZ+nmeLM c6qюa;!c4fZ~?-AymL|KGM٦SU54"&ӗNH;l:9G2?n3Z!^D0bZY~~?u@?be߰VV hbcV$<:;uZJ5ټYhoqmZƎ@Ly -<#u%0mu0v󰻤siQ/^ߒeP\gvpU)Y"MHkW8FS΄IapP몉KWFQts[0)2BB3X[Z|~$H|Ri6 +B.cɷ$+m3޲pɈ[ iu= 3`H7hi6\Y>0P ooA Mh$qf\Q=4qiAC"4GلNw111Ue<Ņ.ROXWJ u?Cn>xZwA[س@Bg>59rkbxw^mAN>k7mmK?<–|!zo+Ea,R86)bUlb EV p{NHW!8YggNjƜ23䀴=UJ$`ID"C>[C27H$$Y )(%3lQDe)TmS[7~1ΩwѸs*RAHXŤ9;65%BZG B ]6YmߠBVAx?DajX]-1dnCH0#|Rj2-EKyst{V_C*K  a߱ƅi `~PeczR\.$]Of~ E@i{MfYR|ᄈt&gB g ^ṃJByYTʐO2>:_Q~QږX׺eLqpAV8۷PB[>12+ Oy)E5.QwZ&{H2X?ܲV׀*&mz'hDꉰ>T1m  yN}ɻC'HjEf T%  \An =7!exѸ[Du撧崅VE`'!_A^a>1n rQ}Pʶ{~+{ L.n sVd$ 1naC:²3Рo@&vu(Ógj9RgsI;Tȑygr¨h^geO1EY͘ي,y[}X*G݄#[Hޝ75➯V8ɆoIz6n찝Ѓc'7h>./=K?js<;xd!t!d$ȷJ˺<9)B6{l2\T0m[?OUwvz GS6;֬p}GM~/7MVʄh$'ORc:AV6\l"y;ߠ>A\īʰpKZلL@!/=7]ju]יkcn;-|x#.QvNN*f\,mVJY-|F'ݕ&m4~kQDˮmc+nЩ+XrUBYŘѲG2wD+̭]VΝ@"{ܜMTՄ+}1wRpu#Z#PhgNEWm5[E/|6C ܯ'/NVyPC f pzGС_#bAK ܣ+G{䩱{{ CJ_9^3%!6L77O"_ OEkS `}@GXdJA]έ4/am"(ozuuAz~nXq-. xu5g$*ͤs|bKkRֶQ\J\,]=7EQ.8H=3;̳"ȡQs'e\v_S|׵}t%.{7Fs ,nSvw&6Xfs,pX,ƆYVx/Jkc+~;lŧ*ػ̎RxQ7qhmx _uY54Ʀ#}`k}7:x Ե),RMM-]kHMH'߈Gp="ha_AU#H4,Ô7IHWRqU:REBWS0؞9GsJ .n>h4|&qb\8E8*=8:Yn x5N@v&6B?+rO@CSbP*۵ch(N5w|8NۭGVȸ?|qYڝq^@bZ#\ p̯__Kl&׏Xj.e>)*JOHDn; _۶P'QA7X 96i0tSg-z[Zk9N=.ȆTցxBn[΀ 둟v_Z4TZ"IWUlGPbIPb];ܴ?]^ &k G(:kgr+:ؕpf+T ^3hht {z=Ԯ \W K]ЯgBm?͑>!_2mL+=jJ-.Pn}Hno ՖDsr{TvB6fs%֒{޲Iv"!)AZV7s?.{xu_oqȾoA3_|[!tŐh[7_xoIx͝`5c Z3ȆdсHU} Ur WdwF zs Aޟˢyi+%{amV"B1voraKY 0H2#_MVk'p X<[^z\І?GDD7^|%}w ͻ laᗽg l$7ݰͭ B> ]SSO*Rk/uQ>{2+}UЕq4NsnM+xMl-G;tea~9*`YcW![swB2D#_(dmm0`*J&)%^:BόҗSFݛ Q_tRi61PWTJ8Gf65K^gQlO4SC o K  jg,9.XL|m=uʯ',$ȺLUe29/{Kוv#/d u0JA81lIIa8Wݕj*(6,[/dPKn^Ҹ G}zezrt*?67+ͥ<Ay3a$swFaIfe_n3|E|b1x'jg0'4R'L{Z4*A,W'mSӣTQSŏ/ y `ܯ{CR QS 3,X6^7V|mj{+]d__ R?2s_&[F"J%y:~.yz`@\ԚvFL_]S~qFxV^=(I]6~P1Iփc27Vmc;ފJjeD@zH29vww<停A'GC'23 g6X'ߋDpkhdj}=TJ:NxuU҄G;˥w-n!.^" #%WHoNy0q2P?cqxE3p$ieBby*UZ4BEo@%B@7%gu&RbBkcr7n >}N " l4dx/ L䫱\[ ,7QhkˢM`^͵nyZ5nB1B{~!W 6ʈgs`ϧJ2Qk[WM[v?ݯz#C_ QW>zx·Gu-?DǗBi]t+lU7pyv)̃HbXTkҽde/wBȒ=M?ujPv@Um|h*PzJfNSbe ,<;3L|kǒ6U="q!"SD#M$(>~:.9 2WNxy9K:z%eOP=111jS9 ĨWJ kڻEDyklZ饥ɺ 9Ԣ:oMFYtȒi|4 E|k72|b#ExbW@Ćj@_i1$T OV~,GQ}\MB,^.|wxQw]T^I2C?/*ڛ }sDoܻo'e)݇+2:_9ҽə;q~Ӎ m LhL2҈kCA*̃~ ^Zl軙4'If('@hE6OQ:G3YWY_R&*f#Iaeo}k&~@JuV..88LXfYGmޟ]oYնۂ.l mZBkxY˦P+ &@L86?ǐHxBv MUWU~e.u`8|?Vw+.I$wƚ̈( щY ItV1ѣCԽdT(ScVl9{n!d;.Xw;\7.'`sFmաNךZdR\R:/ &׺Y-4U Y%4FEڳTS0g5G]6K֐c߸Ъ=ܾTڮ I5~y.5fd̍/Uϫ "هdeܥ-NK*_}?@ gXhW(w^l)hUzr+*uŚ&Vf= Q-U?6V.#)UY~N>I]>ӳ,%EñֆW.HNȮG+!cPͯ~;\a^ n p}M;?u= @C; pw #jN U#H6MZklUm #tasKNHT+ n&鵕nzgԐ2AS.8aj4$G lBUƟ WڞuL2t)*|.u{؜5tk-')f-~}+is5uEp7І~]P~mv d"q1~E_ݤPDMwn#(r&Vv]b n)e՗J zX9_H9:`adN7S6`W ɔ}i>nNޡǶo=GRu(6Mi/owK2o'~Z,zmټx_KZ]&GOy.e'˷Fv=C ^s<ܵ~s.vL8Dvڄ25 }|D/-Z~ژ?+;AFܺ8Ә.f>&cѢ_}v礋5b N= Fh/|pkZ8A]3~>>HtݍQW7$-Hm{ ? WfMHN]zs~T? E9"/@, "#\B`~z+8y}~l÷Xcjr2/_M$&⊊*MeܯKw̔O#0F>_vfz:Ħ#f; {r_}]"TxgXP3ŵT;D'k>?Wl$V7r=2,j5|}&WCwM8N+ fYv4S;l߯|:fZ,ϏHNN^LGMK ~tvg/KDwܻP3BW Ǹݞ6.}ujElzMLL斗Kp7HKⲉ/hk{;dJ[!kߙ]Et{Yʺ]7W,6#:Y)]զ좼kocӈJgd[ ` 0kg=7F"q!a-۳/3଼\ܘj/B֍JK2VLgW'<,SU ^0w"Qj6ً8ѵK[&^((̓DJG[6¥BQϓ91y"ߛVWk,4f+Lf=xAA7.6--!Qk~0Ky7 &N9jS7kHX RT[og.q+Ʀ՛؜˞Kߺ0/kުRqx^J T h='m f4R/~(m\((-swES_r)ln>8Xw;XٷtvzRij̦3"h ov{jV.q5޼-O YBy4jW uxesDaM"W8n `yM-[+z]%9 xH Z[i^4Mп=}ir·4% 盕\A(pcLΕp([ew1.Gm$`h`xZ0~ ߚo.!)WyE|T>NY|Ո;CCPSb߯I[/?%7gҸfϔʗTBmJw1аw?gvJK?E4<ʚ0>]j R+,8>n}c7djRx0)2TIcI(.7j$k$pbwooeXKL븴e645YЎ^3ҁ766FZq6ʛ2֗NaZPW>ϧD$$6)Lx|hxxpx[Tȼ?](c3@4}a,Lfj?VaZ&NɨSs6ǜOyB"n!e^^A "SasΖfq?qLo^QØMELMڟ^JT|F}%IhsөrYkWH['Rh aܜNg%7tN:g;$fq e'' yk{.Zs=k3qÚ\n^,Vf3o^DUk ~]'rbtljwG[[[U#(ŦR'uIhKvTMzkZF("vfdž;s^֟ŷh uќ^ǹ>>Ft LZpA"ɵxVYYg΂EYT%70ևvooӵR1Im2`4F٨s` pt{a`aK+qFcc1oCx:P鶁@6e$@/?mΡ$9?!6yۗN5Xp ěB9J/ұ, qr$) |efqS4<yfmrdܭ"Ԇ&mx}PK =W,Rproduct/thumbnail/PKV$Rm9MD.product/thumbnail/2020-12-30-5fec1b3fba026.png{y8()Q([%K$d+(Ȓ}6c 14cݣ{}Gx~祁C| a f3*~X *qrSؑ}Y5k >QQR\9]߻I&Lv(ΘC k*^ů.MhSw7`|Nsth9!~ކ 1la@_N1C -R<H8 I hS8˞dQ)FqNݹsobibhjo:/oͬEA4VtR]βo/;QO23+Ahs#J<`Ni=;tmJ3qa=I/6$aݚr7Cڝ27`k,^fufgYx#Q>{a}A5u\`y edb/wYډ&#/tI DO>(3IKFrM5<%nfvAvE*o'ei꓇CZr.S$&:c XZι` r&08\VBL05o ?kÄywxֆџw^oŻJHfQRCu,$]Ao9˦gҴ /yTFR[X 46/p!^`c>f${ s|rwA+-$Sխ-q 4z# 3eh_Gx5Bx~O~Wip;TN%uVZjhधh~m8]f)rktT1cWAp>pG[ef}x*wm>yhn my=BX{wM*V~+##Z\̟YU풁+̥Э(EeNxm3Mv$ ^,T[\פ'*m 2Dd lA2f+v9kܙ%>?LC &Gތl;@OHKA( ‹"$WY|LKVfrXXy$ymm<:6 ^尓7 #rmuz qBN  i,3љY<=cP101Ŀî;n$ݽHZFP5ZR D13X3q_-Bj QĴf%ag.Z$z^Ut) Ct692W :-IޡjH)LIZ57eH5EDO͹bE&36LO#D< kO?_ s5,OFX'Q }bn474$ ^/ݥգ/Jޙ<'P RAd^༷3+- a,RnIh'N+L(,:Y+{K]`{-nNA 1 &+ rg^.%#c8£L N_O~(姘|wf!]=ŭy^4II@B Z_d Y cs#a~kLMÝfw#ۆ`ݓXZYK5Ϯ4->y]maNϺkw\vD,ddBj_pFDLGabMvJ 0<;1]A&ȼ9J1R[vV5gM-q_ F@Tx%6NNDfjN>0LN#kj%w 'eSfj(|qRqq5v?O}A_Ϣh')} sɍLkyӪRO1~;2MEq8p{m@HO mC*< ~_'9aa'# #Vї?u{k(CT@'Kj۸jؕ'@|͚ɼW^Ǡ_}|(C4:`"Z`*MɛDeZ\#]>W@‡E*(OΎō(c0k5~pSUx Xqv[}\0E=I@?bs*!mEvŲU0)&%J<6+`Ѓ@|z1Ek7$+N![g~d=CGn-vIf]&fB]H YsJaЕC> AjwmGFA;!{S5ZOZ\+z9GƠG"ԄNjksW,QTT@T/o3]mS; kt9#/imA!ɍ JNxnۀfRh>x= :E;~Nxdvn l9v{Xœ&lj%E6P(y!AAݱlfuw60]k4r(Pt>e4]a"~W",dGx?29:Z80^nאc)U" O)v$ _<|) xX/zؑӃ [ܦ[Y M#>-Ȧw)Ro᫭6ܾ݃_46 S<,S>:ZU(!y14-Xf'ϟv% .YAa `$,Jns5't W㆜}ywۍ;N5 Լ zeQd{7iA8`r |Քv]1L` KDuv4&oryoܓ SƛXgQyM;YJX FG/tIeߛf (EFěR픳MCګxNk!0O:K]1 Dzr! ^/vɕ\.ٹV)KMM9qف)𸸸% q?.C8+~~o׺S@=sg*a]?ß=7=4_pyJ`FyXg)`?,phXr=њ+'nqUkz]*诙a*[bbޯJX!Z1mSc,x7:uԋ}5u>rc ҕ9nT7|IUÂZ¬57 9˂m%ςpW7+1U^&6m""Fqjր}ZR6Q`;y3/t`>xN:0ksw> ^{N:C CF3] ֱ0Y὞?QlJan 9wg'g{lCBO_ "~\+9FJBoζǢ:ߣ埞]Ș;Ryr#~-Em4>闣kDh:MVrL`׌0DPu arڃK/4 i,ܻ9nлsE `&%1ρ*сzȸn- l$+L(+`X;ՓU4ਰ{F_pwg#5R/`XF@-s3} ga-iFӽGFAݙy96 sZǂkJ7> z a%Z wQ<n_o_/sWk3 6#l8In ɟb0t~X%! ;l0@j'kXEt"0'f<yLBUa!FJO8J箣{`gIɻ&!0C1z\e3k9̰LUG#@md,Ln3ȌXI 060fDbsHkgƘy.(WvE=6@Lj7Y=8ghԉUm〦,n_;!;Y40%CŽ4y䒫J!*8PU@!Zb8B.e'*,R`+0B_{pyPÕX@b#΢̲*yIӎWK~ XE@]=Є0b 0J8#0&+^ҵ|D֎%X3-`+i L]i_Px!_f@HxTqN^tcwX sYbQ$U8XodFm@5Xgd- `C`dU*ᜯ_3+kE92=aw]WIL)2kmʭ`8 8Rg"6#OEF*$]Ř l'od@~zCCn.tuAPUnw(ћzeD'L~ڑ~Z KϧS2@^gXJL=_O ~hx!ayiqۆ?{(+X6}?f_Qm;p {*Qݗ#~6; $DksЀ<BIBHP0ɑ%PC4ㄢƝ" 葛)hKBF9hh BDJ"eeV+G4^gЧ/β%2 CBwH0[93: z#HeDT22{C,9K?uPzT= &=8 ͓(̳Nߛ0ɴzB}u-yAlMbhʬ̔)+Ïa{CHU_Q{,L b8ɵh%i ;LJ߀"=ԮڂT>,vg7S[ة+åBY:{'kbFf;嫇y?g 8 dBps_۾Bam]}Hbm ÷rd'޼b&4Cxz^Y1aZ_}5wk{M;ϐP mAݩ6f43{S>迺된 S`o,=dUhrYXu@nW5r&tOԁdCrMO+1ڬb{zl{i9@qϐ%91=!>r\uFEg~?۲Jp)R1=e!(@ 5wJ.p^wdmCFT |m}r/V@I1SP,˽s0}uNF^I*9PW`<PljKv=}:oxUU[AI{ N4|tfLA r;-A) 0([ģquc순3Hk qp.>Q.һw+} u:c Ǹ6JZOFr7wi2B)58=f˦Gi¢R"ɺ5ދ/wvBo7Yɕa >E.B)q_Y)[ŝd;IM,@isL3pWa:cyE-WTB-g(N ?dudCX x6:Tvn҈N$לlA1Uu9Ekbc# 2/{r$e[{f;m`\+hUKl\I`*fIQuaIwMn98Bj9hʦȊ}Ф-H8b2;kۧ:y1edTάs4GlߑIƇZkݮ'&Jl 9+Y#v8QƊۄ|Oһ`r )w{ u3b:YN8Zs1(ĿI0Twu$Y7LQ6溹_on`33P;R<l\*%S .eFXeT'~Gr._!^5kRwVΤE6]Eݚ-37T64iP`Sx4z,2w#ML"% YfBd2& (^+$-_]W/A)CΫg^ë=0^]Ү7h*QPc4;>]xP-P3i3&%E;A%[jGx>V@*n<'W(Sfҕ6C7t1e'<{<6QB5Z5 1D!)JVseF7Aw%v%LΩ?|ܶ?u\9^ :L<ϣ:+yé{v$|t&Z0Z~Eh#lZðwxHSCf')gNQEtU^,֡7oő}r@#٨E_Z$Wȶ\# ΋t䏹*HC;ݞl͵qhnjZx|d ''oz/vơTu݂.yYtf~)j^8tg}crB&6f @Ou%.zʎ,Gf67d) 6ne^Mm D*G}f-9"ZP?;("_uݻwbK (ᶛ.֏D&=E4K0 Am/v@)(Hr}wUu91 !%a>Cū"O˼ʻ6Lђ_;3GuHw_4ЏuJWB4H{ܒ#[o/o'<. %}rQ>aj2>@ϟ20&y*g=Tc}Kf U4ˮ[5ڟœM[q*se6 ׷•,ҹC) oldnBAǻW0.Л(/O{ |@L?1c*($֧oK!T 90)G?am]C1]U<ldpܼ\z_֓*w;F?EJ,7ׄ: M^P-~W9NPd#uCV_D7*M"JCkPΓXɟGI G (ϧj)2&I@*l)UxkLT,b 2sC=L~UGaygV<;# 1_$&Y\SR^xPdA*L $.\)|;ŞI %)g_\ϸGr)<쾲JwÓ CUy9fj@Y ;x*.g3ݾgOP֊r^$*^$e0J|_6#0 j澝4Ev$I-L$f lRm{ڮ&4Q_' peښe;UIYr$9m(#F/:ֈHa%r,5CnXM9`d6-ӆ_I :f)ˍ,*ʕ\\crp,rGaov]= x.p.RAM 'GYΛM:LTi: >V7 @;9'馰Nɤp#XY#4+HJW〦xdPSf)s]uM,η3}l(7ITuf2bB*DqU}51"G_.]QFZZݼczn5@ 08ODWպo]@BQ/(9WȟcaLkn+ m治xykCI6kL>ʢE K3aOTRՑZ7*GS o|jIaG-u .Q]k9w7&{.+B{D9f/Gvh*`sV[gG|+f.Jr ud+Aom}m\ :~ f8鿧+uȕu(Vî\yg}5D8s}|d'?Il{7{;r1$G ΚLJ'7 X Wdb5+qF(r 8kVe)01X17 (׺e Iq^]zo׎$i{?p5Wa2Z%sy~j}&boK$D^vN],qnR.Ho!;ˊ(77JyG~%"Jqv\D,`g`4# 7]qwъb}!^k^ _@!o_-:7?Gc$.W btU ݿ:saRc?W*.! lto)SD}#w[n˼KKKV0Q+*>mx8q^:aѷUk_%Ygkj-&nB z%/!? uڒ$>{aSxc٫Fԅ%iiYs8 q^UeGN$F4Og/dpaD%hkhH7) .@dTwi=nfj;CdFQmc{­BOENq+sVWPue]gͲyd߳ K?^b\9\S+q!< GތxK^ wnY{>EHD}3B@1YUCj߲r8/cy:vLϜ8zetO @}S ĎMu*D?VoQF#qHӃm3O1azrq/=ffĻzm)]`=$5{?W@ԵbXј7f-Lx(D&k4(>~5QcǭڨU[C_'P~*imjʣޏh 8p<-:$O@( ʢ j2zWDu\NnF- fx#Xy UW'ҳ)Oml[uuMڻgڿ#1zOF\w`=tid;lX3xby[x'z0,ӎ9Awfa-z4u;1Aue;?&QựoYrf_kߧ|?WޓsЛ.EѮJbxyrW:N! Gul ~Equ& 8"n _lգaere l.hwUNU'%(@mGGG h@<^QP-]&)NY7AT+yMc0ŁL:.:R[[Ob.]1$OA3 't`룶DfpMOm=j|588E@J=;=Oh,eO/}EvF8glXYRi^$ȡ~46(tƒ_ǐ^sjU:UTS1qY(60EQMV]Aʡ}U[kٶSZ~2|ݍ{ׄw!Z۴I]!s Qg{o \3S{f?R4Eu)Ye;Ms,麿?tBU0qZa/LKj7/ ͖|ɴʕ+nX*!V&}HD qxEF#T?y,O[t4ku!N$3oBZ݃]~E@VV)*/\2*:c&>N$ZwaSx'g[H1ҤqE_tꙈ: ꌯeCBd~sƊLevPC>2RS+i煦SSe*_7mhq%ώ{>ޢ%,a+a?n2^Tp1`IәWO,P'=n??W%~P ԑ:4/ 6lF~&3墂=zx߾ŰIOAáuT-\1u꺣Ck.,FwrG  ? 󃟖)vYRr%MhqR-'bj=}O`OUɝ+ |m'Uԫ`'K). {V5un&~<,dcW;abT)DǑ)VvG+UcEAӐn3!AxkmnWnB^E: t$RHBQߤ_6tZ{$<EF̸^=x'`6}^GDvlZLO дg5? >86Y_k\In](8 k\"<Ș9َ釓4S Fxee9{4ҝaLM3jŪ Md|[<ҟ\|Gm F`rhδuLh]CeMj?4+T!=vvu$WVyCL]@tPj+}.&j=FYu?Ȁd[#_ѽ*ٻaH>˄}p9dBpQD\ݥ7APU;|nYq< %OdVRȓ䨁]w^r@M@|=b~P#xB Bڞ#@cRO+淼l8Ip~ZRG&.i+SՌxd3ݾ{rz6TCY D*wi mA+^\,m)S햄?;iKVazґ&)5Z61ɀ}kEtٯWw)CLm19#ae_rr|-4zlU6.}ˤ|%bf58 xQvb?uT"EQ>BZĩ5zN bvA&DkVv<jJNh3>'~*V F̲Sk ZH}*$"Y%3ˑU RT'%g/aBcyQ2ĬG]畝U)hQUN<]dq@ʦ⹩Q~f--3e!hZS}s?U83Ųis(L-&I:a ݙ >@]Mʤl4v*+66f0GMmzd~YE{"Y>_(}e'9N9޻ 5iWbՠgk-؊43lf2O<'ƅ%jUfkKU&5Si;X78&}%ΦqܟԠ353㯿X<{o)IKݠqxÉCeZZtR=Hsl~!ʕd(3,b+Lwqߪ^e|y/Zl"98Yױڠ}kޢӟɂ;ÐtԈeYm"43Ga Kq+xwVEtҐn87vc{?LƽF1oX:ʜ¯Lzt9UŭOM#/ A"Ko7a}0Gq 6 ĺtdaXzo* Nd س6Lpj}km7V6|nF_ϵ94.nxHav0#Q>63P\#n"sgtZ[SF1#j-̐/ꇪ*asP(Od0ZoK]3NPW8Y|StS2gQB-Cnޚ%o3^Bp_v ,3ڈ1gဿL ?.A5ѷlPKV$RH*@.9.product/thumbnail/2020-12-30-5fec1bf557ad7.pngi<? "/W^BllZEZl2dZN\6m{Ew䶻9̓TluY5E"-JgǼX$W#Åcs^j'yCŹxr6)g*dzEapmfԍJ[b=RF3tQĕU{mnB_ӟ5LUUT_ղi~H>N] a 6Vň ާ xFZ7z viTٯT?穢RPPP^kնTT1c%fFↆiWIeƝB6rf?Ht::§ ŰrUETك z7*NhFM0-b:-8c-Y>vW6,KUe +dM[[[ްa5~$ UN%lF; אH?, z2~ 7q}}i6? HhezfPYE*[,mr~e&dn;3N=R}eƂ8DVUANwr߄5{{ޝ. `ݶ.+>U8IVHn XЁGIU lW6y$Mʦw K_$C+48($Goxs D9^c (ݤG7dʏ,SSgbbPpp~G_&2ϾRiZ +ٜ|<jfH0~땹1~,91rVUzVP` y}ea݇#B#$80**D2F# sP˥ltY6ZvAkLD>+jHFb=_LN8k@_5|F4QA(I-.nN`{x}6~lw% 0tU .$Q'32m;s5&@>iQ*{ru٤ 3&d6G9N=ekQՊ\@( 5L,">`JJr-ߟcpO zc*up½ҖiU1=GoGpB,dwQcf>6=H7Wˍa:{-jxs,+w<Ų^ƙ#S1noRul&s'ؕV@r32:MqhlU*[V?Z@]^^wKwa4!"2f;]>(X z}Vz Nfpv%o.yxx[QO"d] T됨;}U-j@֖oR$pn[}5(㉗j*[&n ߭= >3,e7iظ^sw2WE ˆXMJNV a[ CQ/s8Km#V"֠הBѫST4!Ke+'R9c B|@N`QV;CGl ̰P`30TE44]x]8af ^hJU =m1yK f)e ٵ>-n 89Ÿ ?vpp؈t'MG./EhNː{.WJX ƃ/J?6#Ǭ/*^S_6SH1oP0*%ffF^TyTδ(e102('oם8{P5t9cLKww+jm}'sC %Ԍ"W35h$e7 |6DzQbJE c%! KHJə긛&']&Uti,[oʱ `Rf$Aw?hjkNWa7V;PœeWQvC>"eR"#:ihb5C)(d\ͯu#5GQx[A|U9-!.~9L5ԒntDA<@dZ=+3)qfDGpY:x ]0&ÀthL*0g]27+ȥwభc14 wG,-nlQ?h*l{zz F߮ƄWԻ@-VYx/қ33ZPAÏ͝@݊ѹZ^b7_Ar8Zf^+c}֪ww\;u zFxyPͻwO5lpsQ'ciJ'M_Oo}WfW>MacK =pf4] M;l^f\vRboL*ka#v)r98ùg=L/mpطHoi_x}y98Ǯܱ҇V f);2isAkggqX o`{D;mxiXSLE[aܵJQ^/=>tr}=ӱ,]s ExPSGqR0)f;oGlV_[7\ȳImWs8IKMe/+cuh<۵ʩPf/7lY(삜ĤyDʽq~N%L`cqC&nB(M"TsAoN(K&b1fG_,vLN "ZIJJ$BVN*Φ@4`(}#p&Mp.0s4cf|ϔ@r{ŃzFx܏vV)]^Y^n1qsto#1Ǩqx?" 0-`82|cx{wDZ9"q|9ƎV℄TБXME%Ի)j'_6ٴx*Qq.bJkSNB\9DzP]ݓ[afԻO!@t iii S/= Mw+.⊍a/\$jFaaoRPP V"xLu,+Uqs8d<ٌa w؂ʽ{}ùQ@NXۇ o7?;; ٲ%%Z# +2/b lvKPգIQtT{=>oٴ~~h]Ļ]sVN[e`3SsbcDaRx4[*|aD[hv4mAlwpn>7|t.,'g[5.7MKb: bz2AquusYsVˑ^/82{[bĹZ-SSf59߆ZE dPB×vOjJ'H'^x r֜}A,|N`9!&0`]J)=s il2`_߭*۳T^pj+cqB%wXL*Ljbz꤆:BKn` :.+EDz/Rb?^N /p0M5l4DH db)""B., {KF`;c1KSWMg ,A}'A6wf޺ic4HLnŸ5)WLrݳsR2&' c= \%WIemE%%*Ϊ`UW^~@ 2 mwqbA7Wa~`Yd0al\:xiȯfd[PYѯyli^ ihYcޱv_g,DlK!]`?* 1=ڿNn(gf9S$X~Ӛ?jNvVyF1PZ1v1wQc7#GAB;_N2(tֆcz[Nh@h NKEҙ)!ǟޑ#MD*ڤNx.׮cIƖv@iʤF}ڤF;+򯴜Uc7JBYߢ܇;Z?"oVQSHuF50׈YkA<߫|%Se:aa7k2:]+oCl$>cO؞ߦUl}a4,4,G~5c7ZC<_y&‘+Yh1d5A<ʟUPy@OTg+z,E2[tY-ӌ@wU[=ns W]VC?  y!Qn?2_T-h+1k&lvͿ #fdh9]TΙ͎eDUgLT@Բ.t Ϣ7B9tqY$@`kS4õ0*8e6@ x)i+ QN$\!HfhC? l ^Aiw{! d'պG?"HaUvSto<=N^ ]38# ~ynnF" kkv9ݲd_*Ҭ%vt7.]yLd׮]ccfڲ ,gX~HNH~29ע{_-QR<",$ܽP|UZE)8_ި:'X9 lӀ8[e~n&4 O囷V[JUב&gbŧ:{E<}ޓ;>06N#'_Z QapRtFy%Ycm!>#We' _v ⻖tMkG3>OҞ0rYUzt厗QY91eҚ*<ˣ}ܲ^1Uo=5٦=fc 1bJS@VD$vcU#qNsM-sh|ЦfA0PHeDqkh޽{I-i){?k5Չ 9c璏biO:nyC#/lJ(mŎC!YauswtWĢqYrEmRZ#v&;1X)]4LMDwM lx3JITz.1hl6ER# ?DH# qzCGHL^_D\=  ػ* 2D.}K?v~Le֩J&c@<-"BfGAf? dJ+YXհw]K˪2OjPjjb9HHI?X*$}K2 #7X Ԫeq\XCh[[ca!>Ĩ|-&KUc}|f`3TFsnoiˇmv#)UF {uv&?)|HmbH[T`0Pq vGԄJu򭳖Ki!^ZB] > f?{(%65[k(CS!U}N;,}Vޒ*F@! PEmE֜\q@ro\{} nDC[?088f>^_}AQgL\#CO 6s%jY51Z[Mη<>^xH 4aPE&}aPQXwK5gj3^;te[\E1Jב, ciFY2Lo~4_'H3555F-W/o8i^ixjcujpyq]H{sDyZM,_-ޮ(4-ʽʟcd*,F:qRc ]#%N!]epr3Xk#C 0t/*z ћdr9~%{q!3`Bׁ*Nk[6|9 [uX=yĮD< 9;4EQ4o6#3ūcjF|&j$Q>NeK;;J:y>^S~l%IڋJ(/gnBhOxm2s`yϞT2^OݕA4!C?m0yYe\>Ȉ}lO98Lr;q9h+WQ"JV%/DuW\Xc?UؘsѬ z.!K*}V{sAH7ⓓRSS{w%4u#^u xדv >'+_XlnzhW8I70`U+{w{{Z[έH9߿wLY'T/-|,'<Q@?^?DzmGJy,\rCňk"V/*_HV ȤtZX-%؏hi7o~Ð粖`)no=CjQKK3xaqϐM殷ZzT+<-sxs>QZ f՘ V}X3 ]__9عΉ@L9zT_,w\Sق@&I{/违(LQ[DJnFgkR %s Kcۛcɒ&`}yݠ5LǃT00,[JOmzqqq(֪ fa.U6ͮ2ݐ333Nzg3#\ \Ow6'Tq{:[zKp٘z,W>I'{<"rsa K42Yߣ#im UU}#5+Dɑ~nH_s0;~R-^WGOm\P =u\8 :7KSA|#w [v: d]^Ym[fYޫB#Џ$'`>=Z/Zz'-g]!Vi/sѷ5W#VG|=<6\cȩy~LO1d;(JT(Dz R+<5SeE槝u:tU.-V7@4T$ dB4>b&g1\q9nϥW[1@eM$_,'52e +sψάٱk4dM򐇞R9np,+8c-i) QD }| f iRr2YS !ΐ_ݜ1WL'**/5r"l\( M=-J}QKw(94qhph(ʜ59-A.k&Y*v5R{9뤮V<"6H$(sVNs;Ɛ |;\_5mm7яzmC=K_PKV$RH*@.9.product/thumbnail/2020-12-30-5fec1c3d38c93.pngi<? "/W^BllZEZl2dZN\6m{Ew䶻9̓TluY5E"-JgǼX$W#Åcs^j'yCŹxr6)g*dzEapmfԍJ[b=RF3tQĕU{mnB_ӟ5LUUT_ղi~H>N] a 6Vň ާ xFZ7z viTٯT?穢RPPP^kնTT1c%fFↆiWIeƝB6rf?Ht::§ ŰrUETك z7*NhFM0-b:-8c-Y>vW6,KUe +dM[[[ްa5~$ UN%lF; אH?, z2~ 7q}}i6? HhezfPYE*[,mr~e&dn;3N=R}eƂ8DVUANwr߄5{{ޝ. `ݶ.+>U8IVHn XЁGIU lW6y$Mʦw K_$C+48($Goxs D9^c (ݤG7dʏ,SSgbbPpp~G_&2ϾRiZ +ٜ|<jfH0~땹1~,91rVUzVP` y}ea݇#B#$80**D2F# sP˥ltY6ZvAkLD>+jHFb=_LN8k@_5|F4QA(I-.nN`{x}6~lw% 0tU .$Q'32m;s5&@>iQ*{ru٤ 3&d6G9N=ekQՊ\@( 5L,">`JJr-ߟcpO zc*up½ҖiU1=GoGpB,dwQcf>6=H7Wˍa:{-jxs,+w<Ų^ƙ#S1noRul&s'ؕV@r32:MqhlU*[V?Z@]^^wKwa4!"2f;]>(X z}Vz Nfpv%o.yxx[QO"d] T됨;}U-j@֖oR$pn[}5(㉗j*[&n ߭= >3,e7iظ^sw2WE ˆXMJNV a[ CQ/s8Km#V"֠הBѫST4!Ke+'R9c B|@N`QV;CGl ̰P`30TE44]x]8af ^hJU =m1yK f)e ٵ>-n 89Ÿ ?vpp؈t'MG./EhNː{.WJX ƃ/J?6#Ǭ/*^S_6SH1oP0*%ffF^TyTδ(e102('oם8{P5t9cLKww+jm}'sC %Ԍ"W35h$e7 |6DzQbJE c%! KHJə긛&']&Uti,[oʱ `Rf$Aw?hjkNWa7V;PœeWQvC>"eR"#:ihb5C)(d\ͯu#5GQx[A|U9-!.~9L5ԒntDA<@dZ=+3)qfDGpY:x ]0&ÀthL*0g]27+ȥwభc14 wG,-nlQ?h*l{zz F߮ƄWԻ@-VYx/қ33ZPAÏ͝@݊ѹZ^b7_Ar8Zf^+c}֪ww\;u zFxyPͻwO5lpsQ'ciJ'M_Oo}WfW>MacK =pf4] M;l^f\vRboL*ka#v)r98ùg=L/mpطHoi_x}y98Ǯܱ҇V f);2isAkggqX o`{D;mxiXSLE[aܵJQ^/=>tr}=ӱ,]s ExPSGqR0)f;oGlV_[7\ȳImWs8IKMe/+cuh<۵ʩPf/7lY(삜ĤyDʽq~N%L`cqC&nB(M"TsAoN(K&b1fG_,vLN "ZIJJ$BVN*Φ@4`(}#p&Mp.0s4cf|ϔ@r{ŃzFx܏vV)]^Y^n1qsto#1Ǩqx?" 0-`82|cx{wDZ9"q|9ƎV℄TБXME%Ի)j'_6ٴx*Qq.bJkSNB\9DzP]ݓ[afԻO!@t iii S/= Mw+.⊍a/\$jFaaoRPP V"xLu,+Uqs8d<ٌa w؂ʽ{}ùQ@NXۇ o7?;; ٲ%%Z# +2/b lvKPգIQtT{=>oٴ~~h]Ļ]sVN[e`3SsbcDaRx4[*|aD[hv4mAlwpn>7|t.,'g[5.7MKb: bz2AquusYsVˑ^/82{[bĹZ-SSf59߆ZE dPB×vOjJ'H'^x r֜}A,|N`9!&0`]J)=s il2`_߭*۳T^pj+cqB%wXL*Ljbz꤆:BKn` :.+EDz/Rb?^N /p0M5l4DH db)""B., {KF`;c1KSWMg ,A}'A6wf޺ic4HLnŸ5)WLrݳsR2&' c= \%WIemE%%*Ϊ`UW^~@ 2 mwqbA7Wa~`Yd0al\:xiȯfd[PYѯyli^ ihYcޱv_g,DlK!]`?* 1=ڿNn(gf9S$X~Ӛ?jNvVyF1PZ1v1wQc7#GAB;_N2(tֆcz[Nh@h NKEҙ)!ǟޑ#MD*ڤNx.׮cIƖv@iʤF}ڤF;+򯴜Uc7JBYߢ܇;Z?"oVQSHuF50׈YkA<߫|%Se:aa7k2:]+oCl$>cO؞ߦUl}a4,4,G~5c7ZC<_y&‘+Yh1d5A<ʟUPy@OTg+z,E2[tY-ӌ@wU[=ns W]VC?  y!Qn?2_T-h+1k&lvͿ #fdh9]TΙ͎eDUgLT@Բ.t Ϣ7B9tqY$@`kS4õ0*8e6@ x)i+ QN$\!HfhC? l ^Aiw{! d'պG?"HaUvSto<=N^ ]38# ~ynnF" kkv9ݲd_*Ҭ%vt7.]yLd׮]ccfڲ ,gX~HNH~29ע{_-QR<",$ܽP|UZE)8_ި:'X9 lӀ8[e~n&4 O囷V[JUב&gbŧ:{E<}ޓ;>06N#'_Z QapRtFy%Ycm!>#We' _v ⻖tMkG3>OҞ0rYUzt厗QY91eҚ*<ˣ}ܲ^1Uo=5٦=fc 1bJS@VD$vcU#qNsM-sh|ЦfA0PHeDqkh޽{I-i){?k5Չ 9c璏biO:nyC#/lJ(mŎC!YauswtWĢqYrEmRZ#v&;1X)]4LMDwM lx3JITz.1hl6ER# ?DH# qzCGHL^_D\=  ػ* 2D.}K?v~Le֩J&c@<-"BfGAf? dJ+YXհw]K˪2OjPjjb9HHI?X*$}K2 #7X Ԫeq\XCh[[ca!>Ĩ|-&KUc}|f`3TFsnoiˇmv#)UF {uv&?)|HmbH[T`0Pq vGԄJu򭳖Ki!^ZB] > f?{(%65[k(CS!U}N;,}Vޒ*F@! PEmE֜\q@ro\{} nDC[?088f>^_}AQgL\#CO 6s%jY51Z[Mη<>^xH 4aPE&}aPQXwK5gj3^;te[\E1Jב, ciFY2Lo~4_'H3555F-W/o8i^ixjcujpyq]H{sDyZM,_-ޮ(4-ʽʟcd*,F:qRc ]#%N!]epr3Xk#C 0t/*z ћdr9~%{q!3`Bׁ*Nk[6|9 [uX=yĮD< 9;4EQ4o6#3ūcjF|&j$Q>NeK;;J:y>^S~l%IڋJ(/gnBhOxm2s`yϞT2^OݕA4!C?m0yYe\>Ȉ}lO98Lr;q9h+WQ"JV%/DuW\Xc?UؘsѬ z.!K*}V{sAH7ⓓRSS{w%4u#^u xדv >'+_XlnzhW8I70`U+{w{{Z[έH9߿wLY'T/-|,'<Q@?^?DzmGJy,\rCňk"V/*_HV ȤtZX-%؏hi7o~Ð粖`)no=CjQKK3xaqϐM殷ZzT+<-sxs>QZ f՘ V}X3 ]__9عΉ@L9zT_,w\Sق@&I{/违(LQ[DJnFgkR %s Kcۛcɒ&`}yݠ5LǃT00,[JOmzqqq(֪ fa.U6ͮ2ݐ333Nzg3#\ \Ow6'Tq{:[zKp٘z,W>I'{<"rsa K42Yߣ#im UU}#5+Dɑ~nH_s0;~R-^WGOm\P =u\8 :7KSA|#w [v: d]^Ym[fYޫB#Џ$'`>=Z/Zz'-g]!Vi/sѷ5W#VG|=<6\cȩy~LO1d;(JT(Dz R+<5SeE槝u:tU.-V7@4T$ dB4>b&g1\q9nϥW[1@eM$_,'52e +sψάٱk4dM򐇞R9np,+8c-i) QD }| f iRr2YS !ΐ_ݜ1WL'**/5r"l\( M=-J}QKw(94qhph(ʜ59-A.k&Y*v5R{9뤮V<"6H$(sVNs;Ɛ |;\_5mm7яzmC=K_PK=W,Rm9MD.product/thumbnail/2021-01-12-5ffd2c57af6fb.png{y8()Q([%K$d+(Ȓ}6c 14cݣ{}Gx~祁C| a f3*~X *qrSؑ}Y5k >QQR\9]߻I&Lv(ΘC k*^ů.MhSw7`|Nsth9!~ކ 1la@_N1C -R<H8 I hS8˞dQ)FqNݹsobibhjo:/oͬEA4VtR]βo/;QO23+Ahs#J<`Ni=;tmJ3qa=I/6$aݚr7Cڝ27`k,^fufgYx#Q>{a}A5u\`y edb/wYډ&#/tI DO>(3IKFrM5<%nfvAvE*o'ei꓇CZr.S$&:c XZι` r&08\VBL05o ?kÄywxֆџw^oŻJHfQRCu,$]Ao9˦gҴ /yTFR[X 46/p!^`c>f${ s|rwA+-$Sխ-q 4z# 3eh_Gx5Bx~O~Wip;TN%uVZjhधh~m8]f)rktT1cWAp>pG[ef}x*wm>yhn my=BX{wM*V~+##Z\̟YU풁+̥Э(EeNxm3Mv$ ^,T[\פ'*m 2Dd lA2f+v9kܙ%>?LC &Gތl;@OHKA( ‹"$WY|LKVfrXXy$ymm<:6 ^尓7 #rmuz qBN  i,3љY<=cP101Ŀî;n$ݽHZFP5ZR D13X3q_-Bj QĴf%ag.Z$z^Ut) Ct692W :-IޡjH)LIZ57eH5EDO͹bE&36LO#D< kO?_ s5,OFX'Q }bn474$ ^/ݥգ/Jޙ<'P RAd^༷3+- a,RnIh'N+L(,:Y+{K]`{-nNA 1 &+ rg^.%#c8£L N_O~(姘|wf!]=ŭy^4II@B Z_d Y cs#a~kLMÝfw#ۆ`ݓXZYK5Ϯ4->y]maNϺkw\vD,ddBj_pFDLGabMvJ 0<;1]A&ȼ9J1R[vV5gM-q_ F@Tx%6NNDfjN>0LN#kj%w 'eSfj(|qRqq5v?O}A_Ϣh')} sɍLkyӪRO1~;2MEq8p{m@HO mC*< ~_'9aa'# #Vї?u{k(CT@'Kj۸jؕ'@|͚ɼW^Ǡ_}|(C4:`"Z`*MɛDeZ\#]>W@‡E*(OΎō(c0k5~pSUx Xqv[}\0E=I@?bs*!mEvŲU0)&%J<6+`Ѓ@|z1Ek7$+N![g~d=CGn-vIf]&fB]H YsJaЕC> AjwmGFA;!{S5ZOZ\+z9GƠG"ԄNjksW,QTT@T/o3]mS; kt9#/imA!ɍ JNxnۀfRh>x= :E;~Nxdvn l9v{Xœ&lj%E6P(y!AAݱlfuw60]k4r(Pt>e4]a"~W",dGx?29:Z80^nאc)U" O)v$ _<|) xX/zؑӃ [ܦ[Y M#>-Ȧw)Ro᫭6ܾ݃_46 S<,S>:ZU(!y14-Xf'ϟv% .YAa `$,Jns5't W㆜}ywۍ;N5 Լ zeQd{7iA8`r |Քv]1L` KDuv4&oryoܓ SƛXgQyM;YJX FG/tIeߛf (EFěR픳MCګxNk!0O:K]1 Dzr! ^/vɕ\.ٹV)KMM9qف)𸸸% q?.C8+~~o׺S@=sg*a]?ß=7=4_pyJ`FyXg)`?,phXr=њ+'nqUkz]*诙a*[bbޯJX!Z1mSc,x7:uԋ}5u>rc ҕ9nT7|IUÂZ¬57 9˂m%ςpW7+1U^&6m""Fqjր}ZR6Q`;y3/t`>xN:0ksw> ^{N:C CF3] ֱ0Y὞?QlJan 9wg'g{lCBO_ "~\+9FJBoζǢ:ߣ埞]Ș;Ryr#~-Em4>闣kDh:MVrL`׌0DPu arڃK/4 i,ܻ9nлsE `&%1ρ*сzȸn- l$+L(+`X;ՓU4ਰ{F_pwg#5R/`XF@-s3} ga-iFӽGFAݙy96 sZǂkJ7> z a%Z wQ<n_o_/sWk3 6#l8In ɟb0t~X%! ;l0@j'kXEt"0'f<yLBUa!FJO8J箣{`gIɻ&!0C1z\e3k9̰LUG#@md,Ln3ȌXI 060fDbsHkgƘy.(WvE=6@Lj7Y=8ghԉUm〦,n_;!;Y40%CŽ4y䒫J!*8PU@!Zb8B.e'*,R`+0B_{pyPÕX@b#΢̲*yIӎWK~ XE@]=Є0b 0J8#0&+^ҵ|D֎%X3-`+i L]i_Px!_f@HxTqN^tcwX sYbQ$U8XodFm@5Xgd- `C`dU*ᜯ_3+kE92=aw]WIL)2kmʭ`8 8Rg"6#OEF*$]Ř l'od@~zCCn.tuAPUnw(ћzeD'L~ڑ~Z KϧS2@^gXJL=_O ~hx!ayiqۆ?{(+X6}?f_Qm;p {*Qݗ#~6; $DksЀ<BIBHP0ɑ%PC4ㄢƝ" 葛)hKBF9hh BDJ"eeV+G4^gЧ/β%2 CBwH0[93: z#HeDT22{C,9K?uPzT= &=8 ͓(̳Nߛ0ɴzB}u-yAlMbhʬ̔)+Ïa{CHU_Q{,L b8ɵh%i ;LJ߀"=ԮڂT>,vg7S[ة+åBY:{'kbFf;嫇y?g 8 dBps_۾Bam]}Hbm ÷rd'޼b&4Cxz^Y1aZ_}5wk{M;ϐP mAݩ6f43{S>迺된 S`o,=dUhrYXu@nW5r&tOԁdCrMO+1ڬb{zl{i9@qϐ%91=!>r\uFEg~?۲Jp)R1=e!(@ 5wJ.p^wdmCFT |m}r/V@I1SP,˽s0}uNF^I*9PW`<PljKv=}:oxUU[AI{ N4|tfLA r;-A) 0([ģquc순3Hk qp.>Q.һw+} u:c Ǹ6JZOFr7wi2B)58=f˦Gi¢R"ɺ5ދ/wvBo7Yɕa >E.B)q_Y)[ŝd;IM,@isL3pWa:cyE-WTB-g(N ?dudCX x6:Tvn҈N$לlA1Uu9Ekbc# 2/{r$e[{f;m`\+hUKl\I`*fIQuaIwMn98Bj9hʦȊ}Ф-H8b2;kۧ:y1edTάs4GlߑIƇZkݮ'&Jl 9+Y#v8QƊۄ|Oһ`r )w{ u3b:YN8Zs1(ĿI0Twu$Y7LQ6溹_on`33P;R<l\*%S .eFXeT'~Gr._!^5kRwVΤE6]Eݚ-37T64iP`Sx4z,2w#ML"% YfBd2& (^+$-_]W/A)CΫg^ë=0^]Ү7h*QPc4;>]xP-P3i3&%E;A%[jGx>V@*n<'W(Sfҕ6C7t1e'<{<6QB5Z5 1D!)JVseF7Aw%v%LΩ?|ܶ?u\9^ :L<ϣ:+yé{v$|t&Z0Z~Eh#lZðwxHSCf')gNQEtU^,֡7oő}r@#٨E_Z$Wȶ\# ΋t䏹*HC;ݞl͵qhnjZx|d ''oz/vơTu݂.yYtf~)j^8tg}crB&6f @Ou%.zʎ,Gf67d) 6ne^Mm D*G}f-9"ZP?;("_uݻwbK (ᶛ.֏D&=E4K0 Am/v@)(Hr}wUu91 !%a>Cū"O˼ʻ6Lђ_;3GuHw_4ЏuJWB4H{ܒ#[o/o'<. %}rQ>aj2>@ϟ20&y*g=Tc}Kf U4ˮ[5ڟœM[q*se6 ׷•,ҹC) oldnBAǻW0.Л(/O{ |@L?1c*($֧oK!T 90)G?am]C1]U<ldpܼ\z_֓*w;F?EJ,7ׄ: M^P-~W9NPd#uCV_D7*M"JCkPΓXɟGI G (ϧj)2&I@*l)UxkLT,b 2sC=L~UGaygV<;# 1_$&Y\SR^xPdA*L $.\)|;ŞI %)g_\ϸGr)<쾲JwÓ CUy9fj@Y ;x*.g3ݾgOP֊r^$*^$e0J|_6#0 j澝4Ev$I-L$f lRm{ڮ&4Q_' peښe;UIYr$9m(#F/:ֈHa%r,5CnXM9`d6-ӆ_I :f)ˍ,*ʕ\\crp,rGaov]= x.p.RAM 'GYΛM:LTi: >V7 @;9'馰Nɤp#XY#4+HJW〦xdPSf)s]uM,η3}l(7ITuf2bB*DqU}51"G_.]QFZZݼczn5@ 08ODWպo]@BQ/(9WȟcaLkn+ m治xykCI6kL>ʢE K3aOTRՑZ7*GS o|jIaG-u .Q]k9w7&{.+B{D9f/Gvh*`sV[gG|+f.Jr ud+Aom}m\ :~ f8鿧+uȕu(Vî\yg}5D8s}|d'?Il{7{;r1$G ΚLJ'7 X Wdb5+qF(r 8kVe)01X17 (׺e Iq^]zo׎$i{?p5Wa2Z%sy~j}&boK$D^vN],qnR.Ho!;ˊ(77JyG~%"Jqv\D,`g`4# 7]qwъb}!^k^ _@!o_-:7?Gc$.W btU ݿ:saRc?W*.! lto)SD}#w[n˼KKKV0Q+*>mx8q^:aѷUk_%Ygkj-&nB z%/!? uڒ$>{aSxc٫Fԅ%iiYs8 q^UeGN$F4Og/dpaD%hkhH7) .@dTwi=nfj;CdFQmc{­BOENq+sVWPue]gͲyd߳ K?^b\9\S+q!< GތxK^ wnY{>EHD}3B@1YUCj߲r8/cy:vLϜ8zetO @}S ĎMu*D?VoQF#qHӃm3O1azrq/=ffĻzm)]`=$5{?W@ԵbXј7f-Lx(D&k4(>~5QcǭڨU[C_'P~*imjʣޏh 8p<-:$O@( ʢ j2zWDu\NnF- fx#Xy UW'ҳ)Oml[uuMڻgڿ#1zOF\w`=tid;lX3xby[x'z0,ӎ9Awfa-z4u;1Aue;?&QựoYrf_kߧ|?WޓsЛ.EѮJbxyrW:N! Gul ~Equ& 8"n _lգaere l.hwUNU'%(@mGGG h@<^QP-]&)NY7AT+yMc0ŁL:.:R[[Ob.]1$OA3 't`룶DfpMOm=j|588E@J=;=Oh,eO/}EvF8glXYRi^$ȡ~46(tƒ_ǐ^sjU:UTS1qY(60EQMV]Aʡ}U[kٶSZ~2|ݍ{ׄw!Z۴I]!s Qg{o \3S{f?R4Eu)Ye;Ms,麿?tBU0qZa/LKj7/ ͖|ɴʕ+nX*!V&}HD qxEF#T?y,O[t4ku!N$3oBZ݃]~E@VV)*/\2*:c&>N$ZwaSx'g[H1ҤqE_tꙈ: ꌯeCBd~sƊLevPC>2RS+i煦SSe*_7mhq%ώ{>ޢ%,a+a?n2^Tp1`IәWO,P'=n??W%~P ԑ:4/ 6lF~&3墂=zx߾ŰIOAáuT-\1u꺣Ck.,FwrG  ? 󃟖)vYRr%MhqR-'bj=}O`OUɝ+ |m'Uԫ`'K). {V5un&~<,dcW;abT)DǑ)VvG+UcEAӐn3!AxkmnWnB^E: t$RHBQߤ_6tZ{$<EF̸^=x'`6}^GDvlZLO дg5? >86Y_k\In](8 k\"<Ș9َ釓4S Fxee9{4ҝaLM3jŪ Md|[<ҟ\|Gm F`rhδuLh]CeMj?4+T!=vvu$WVyCL]@tPj+}.&j=FYu?Ȁd[#_ѽ*ٻaH>˄}p9dBpQD\ݥ7APU;|nYq< %OdVRȓ䨁]w^r@M@|=b~P#xB Bڞ#@cRO+淼l8Ip~ZRG&.i+SՌxd3ݾ{rz6TCY D*wi mA+^\,m)S햄?;iKVazґ&)5Z61ɀ}kEtٯWw)CLm19#ae_rr|-4zlU6.}ˤ|%bf58 xQvb?uT"EQ>BZĩ5zN bvA&DkVv<jJNh3>'~*V F̲Sk ZH}*$"Y%3ˑU RT'%g/aBcyQ2ĬG]畝U)hQUN<]dq@ʦ⹩Q~f--3e!hZS}s?U83Ųis(L-&I:a ݙ >@]Mʤl4v*+66f0GMmzd~YE{"Y>_(}e'9N9޻ 5iWbՠgk-؊43lf2O<'ƅ%jUfkKU&5Si;X78&}%ΦqܟԠ353㯿X<{o)IKݠqxÉCeZZtR=Hsl~!ʕd(3,b+Lwqߪ^e|y/Zl"98Yױڠ}kޢӟɂ;ÐtԈeYm"43Ga Kq+xwVEtҐn87vc{?LƽF1oX:ʜ¯Lzt9UŭOM#/ A"Ko7a}0Gq 6 ĺtdaXzo* Nd س6Lpj}km7V6|nF_ϵ94.nxHav0#Q>63P\#n"sgtZ[SF1#j-̐/ꇪ*asP(Od0ZoK]3NPW8Y|StS2gQB-Cnޚ%o3^Bp_v ,3ڈ1gဿL ?.A5ѷlPK V$Rpng/PKV$RWqbac png/404.pngUeT[]. #nŋC݋[^];)Rݿp?1 {\SWVFA"@B   pUB>@0((2(Y Q5wc巳ӓg;/@(f,*r[a0v@CituI.T4:zI wo&kkwiNwYT]{w9h|V*Aa}&LQrg{DH"<4eg\g;\dt$qcp9+$hDa_@<`BW%1 Rxz63mh vRse3u = ] ] V&\&"X.<O\>p4G[FBOt hɀQ%[HgZ;$^X+g9.%,1q).V,B$+lre,Ct:n۹(j+2DbMAT$P#5TFN  WANMOm1cH5 *ppKg<`nq,ϸq]XgPjY-*%pǬ;G< qIÁ^OFgҏYϯe:z;OAFV>bYt4B!sab&6:)㌕R 8Cw aQœsVv`)ؑv_;IX٘?ƏLJ- A%7pv*Y/lMU:(N!9y, :~qQoPaJqQL+D9Tއ]DPT7nɰh?4Nr_D2m(2 k,hAYxGF~o(`VOU |Ż_UH/=ITc%xEE"޺ riI71 c/g0!.ևu"[L+K.wBxIS'\X{mQl#y2Gq#pi!8w0Ga$A h_1[t=^j5VuMIqCQs ]ܰ0x~ [zup[; L|pO4!9kE8.[3RR%]q{vokm\+`>#**Y~M 5yx2[Dã˗0Е&T%V}gy`xS&> !ECEJ%;OV7A2ez,^8fFiY_n Xv0RV'/م O6:l?w4(N/)0ݓC5z}5.sU>wUSO6:J q<*)T!.li?au<^3%8i {%AɞVpϓ$jEBV\-%O}%Q)Ih-9'UBufG`*잒`k=M'[Wl7$*'8k;>K_E3>;QC6}>/ƼiC_8tu)XI.*%MN< > $Ymʙ1Q H_>תcyWNtML]6RY@aXkjU QSqQS2他Fɨ6.A8mn:EDH"B(XoI*ZU+jn+T惴u}:1q;=c|wkN &# 66k ,޾+3,9#jKa jiѭb7ki:ɈD]6 e`"JfMt=ǧtYCԐj;{.H8OQb țLC#C-1M<#';-9pCU2zYu/-6݈ʈ>Võ޿kcԴSPHBQ&#?i$0ȯ`A슋hy'RrA*ƐnW BOUK\B,\9#(.b ZY<Ҋ̢/&=yt٣rSn%PCb嘗+oENчn;|%ѳ?<)h Q_ f[v9c=5J]ad@_cs`wqE|[>F^80l]h_3-BehR|"V~!'wMoSKr('x i $_13 6={Y U 8* 8m5ԠaY8]&Eݕ.dQvCPX=533r. LQ)e;Pl1,zFLP.]QitMr{`HLy,烔5:=Yrjt! [_jZ?DabW9@{cOH?6ؕWƒ_]}$AOP֫%9' "P=K!9ύĄ7;Tm?sb݉ѧ96w][i?ъ\琠 :4e[&|!y@LY*9]!k(pD{ݦ ue%_uF%l_CPx> snz&v lMk@^vU`O_H 2T._zjXzލ,چ ѻcxj3;uU,v::a8|u.rbwt Gֳ78 ~Ǵ@H/I:OzN.p ~*^K7Cf#  αmX9 1l-1Kff] `Vb=!YҬ`-6GuR1К Z#9&N {pW hC^Z\KM7c -VԲa.@E^Z[bt[7iV[קߓznØD;d ?LMi7$ ة`9ࢀĶ,ɓgW8B-^Obm̑zFp|/q M럣X72$M%fT]9?+f 8m"wNb_ֵde(>3e쿐,:W_E_-jAWD moklV ܦn4mq>~ pl$e_`6 \ "%ţc$n1'#fr$#Nn<&W6Ӆk?Rg?Z+P!ȣƬA1ߜ^JbIO%a;~Dsv[Ӎd_5TM{IBk>p`tv-ADi_A?9ZF~vIN;  vυ'Or:VRӏ 0>.MAtق}uwm9e@8G6 ?[4*6= I$hyò[ !SJZgcgA~> ‘=-g/x\t30ص܍`+?(^KQ-* u e26"z~ܐAw.Bѡ1hJG}zJx\`Z# gl94[7p/$%ClņE;{[o+uGѭ2G(mw&n#UWpg S{5*%F{GQsi:9En҇g$;Za8_+aYpq@;ņ ;,wPl|@"o~lEEk5U¶Ǧ I |AwJrF z2ܝj 4i_ⵛ {j-hxz(D!JPC ܒ=C+`P +ZNL[T&UMAVb;PZMZs$8pzRǞ SR{j PFCesÁIr6;;5{̪̊\;);MŅ$|դm+#+`}%!3bR\cLΫ @c 0E_^cCտxA]y}%9A$P/QpϘ=HlZv}i͛^ sJSd=%74HpY?5/IBBѶ)e79~L\8ZЛ'445g:"@ED}w7:-["choWǬ8w" B @3y4}뱒8mriēALSWE!_6ѷV{ N)ygG;;UKEJ?j>n5wx(ATq@f"WZ ҳGPHЧ4 [PXy*\}Qfw+1zg2q@:"@tGiOnQQؤn:]@G-!/C4H!_ģPŽ1Q2޽Sk :K9P↞:pi0ւc~-EdVK]4K,F%ځ$>k**2JA" a=2UD|7=p:Df+n`>V;<Aj24|3~gՊ K( /Bpwu:Sl_.=2mRnݍCl..ӼbY@ pRV[_EW}9OీWrG*"WCG'xr+.wvt̥`KG %Y.MF+kJt&*ci[^oGmLt F'ti5,&=F%{~1Ezw^-IZ N_^E|p#+ !%d0HN'J:λJ) FȯᇰɯqmQn k|i?I#;  W&/zL8+]5>Nt&HCh8Ȧߩٷk:<єHu&Q _}4ՕQjg*qiJN0< X=n5/G$08sfܳ{{>+ 4u-2V~ ; XMB+6WhݡqJ!g{a"NZ6by|*᩠-x+wW_ӡL?>‹TQZۖy& |6@Qj|>;'Ź: j+n #qgگߤZ3ύka}g}2߱ #dH"GqiqIv ia %<=PY,6^6H;Q(BqVCc ܞ|@[Xx[~GJԃB@o9{j7<dLƛM07) đ [Stg:Nj' MI!!NVwɳ<<#'LIܢ,2+GCNi7W0XW0a{&2T[c51H0R괟b[Mv= 7]!E֦(ZͼlH^Pq|~}НFQX=5Al1@yBB`϶e"{&hjpf]jÒ"r\ߜGYP P6@#E@tc$ k XzI3&)x~bv91a)T4q`M& ZN! >!!p¶14>{#f'^uJaa%aB"1&f8k7{E8s-JUR!}( QK "[(ۍ=a$Yj?بOf5퐖8[x!(ᩴv#NV};*Ōa*6K6Hїfch+C }Ԏ-|eJ$3XV5\jw/ @K_> 5|en|ZsuYp^ld{; D!92Ԡ%m ;\ F˯SSpoW LѮơ5ĶM0uH^Hf+=Hj8zv2o`Sew 3-S)OL9c48j™)m)f7)=x +Jud :7 `znJUyqL%ޏr鑍 I@#F BӰoiGcK4^yU5mJ3~7ǔ4j]- bq覺WFܫe;-_*1bd Zz|]\j?rQo], ӔH˝g߈! ,ÏKGԻ>?y*rp፲W,NN~ fNRZ M*(|ai'/EkZ]CTdR'E<5>;-SPRކ*dvQgXшL܅D[@V'm^'誼k6y?zɐ2{6r)o/N6DmjIBI#|ty?Ja=5>]k"ۥSۛR=1C;:ZkmOk|KCWYzۯ j +c_[H^ZӚ~xKznq1rLM¸?q_j .@gNfm~ Xk@*~t[l*E%UajBS;j7z'9s)ϹBsȧ#̆wWj>":Bby׍)ܷ3c2k=h %Ϯ@V_:j-LLR NކúA枸Ȧ)4e ;rClڄ$Pk_o{vm⣃bͱ#N<b v7;6' KN~Z(wA*gҌZqQa._ ^, 8YKp;IՉ}E0`煑bw0/m5 cg# ۹g(IjFukt᧽~2VJwGV#@5xF_!Fc(5ttԓ*[s=X(qy'<}x76ND*L 7Oڶ>q|:سRr+--D=FC6+~Tm f|)M++漎g${zZKg}^lDx,X}Dlk5}ulX07~zlTN[%:W.VT ]Hߛr)b=G!&8 _6P\lK8yt8K["M+Z`cDC~AGy}'jCl5](ݺm!:q$$nM%|nt"qj&wɔZ-kU b T `Ov<g7d숟9aS{eLRQ zf7b!8@6&1x%A%s.Re}Ǘ.lTq!zJ49˔- iw)ď)/!G?u-}>aQ.. ;W~rTPJG'Qnn[mć{S粆O=LM]sM_@{I]k;]lLGíCknB?{^qfsa; Mu9; 4;SӲa4O3Tͫ8QXK }\6;缼+R: ͯ&Wo/Cdǥ7*<90꒚0udy  lL[ɼxy&l7T4G+ aRM#K)yhf_S[tKw܅1=<;r.ɏYV+1 gIⱜv5&: wښ:`hɌ23_깵m -'Ҵf|'z#¬G(z6I_Ѓ#a6ݘ̕bP ? q'}lvDFUOrT&¢.hH޹5.qjgu ^ \o$ˁs}R.䉟i9f6H6Dп*!xw Ӈ͠v"Y_%WWRbiC#}&2L n ?{(F)ߊitM%g7&ºcQyz#嫀uJT꒫2S`Z" 9Fl O|ydﲝW_k$G]YhJ:6 {w#t`Ѽ$ $;Mj'ŁN.^Pj vv`q$ןڰ|naU`b)p9zM% HF#Y@kv A6 CǚVzO''{xInQ7|Reڏv%O&gOuHzAsBw?(#BeAo5غ b"Kgۃ*Ƀ\A=!Е{ÅTgއ_GT^N&mrᷯdME/u, f:d>b8i)KObS/95`O]uayBjoZH @8G =5?#iQ$]|mA~7jӹ^՜NĭnEa\K龵-nW;J}Žč$j)~4,p}-ۮ HjiK]R/RLg K({W|'Rmֆ;GsXvc(  xKgڿdXt- J[](F|S< gahg `]tE׻ I],bV Bm Gu²prZ  O{bʦJ$GJoY[ jTB$[k/DB3?e6Ǧn?IdyAiS1##}mI6o{%ֹ-`SPj/q! f6AZ-\iD)U5=߯Mdve2Ɂ\;C7RMJ^z%&b-8.47'4W0J\$?O*1AurbyDɀ.^Q: =i]7UM՝ЛW[U_# ӚPlW4/$]3+o ئQDZTŸSP$ 5k*Xԣ9`D2;?6ҙFU .iBN\ZY }/ O`k,`.p{Cu8c.鍀<Ã&d*(rFUppO5R . M-7 kp97?mkǀ?usPbt&oJ2rԽljmBBϩ9 rn)w -PH77GkGSB/ ԚųV6_`S09vC:v2o]e,L/O"8r` lK`xL㜷mA`COg^ FjA0<%h.(LS+o_(m}ۘ} ^9$Ao|v+zU{Ԅ\ BlՒX%.(:~R6'g耐H8.4adO1#F'dPeFQKz[8x=EP)^sZZ>:Z9Ȇ#}mҩQe°e[i9Ol]9?P u{w~׀Q_c]Y`nI8> |WqNI" ,ōw Ab0Z)e^\Tۃ iLQwd/,1x(vkq{֤ۯg؄ Ў +A>ehI&wJxۑUKhtY]}rru2;Ft0bU.fʢ j+d29d 3~ iy8~ݰ;K(V3eEqA<Yb 1M I5x+/}X(-=& SWKho)zZ?ydx ʢ$%.OMviž@#i6B vhh3)^$Ź67xa]6vAw3\Zޫ2#G*fV*K4 B1)OaRȑ|pdhJ%_̲y] FJ7zRmNetVPeOUo$lID_ U:Pc^=4z#s.mfI^77)Wh:U{:p?OnjWU薉Kv)%5ZO'pv.?H,v &w~p~#WyOٵ79fȒQ*Mܠ@'pSi;l-`\+x{˲]TM:J^/rPԨR6D A F, ;H/v ~!^n^$S&&gU@QAd" t#IZںsOo Jlm߀z|aǙ>Cqmjmr#@dr2V}O4:LY:fv1- qaveDx7-WuY|E!޻SUHI!AópIRP7/~/9$ɍm= @(nj z mIOhhW(M:#(H/aJZe1wBSwb&ЍB5EZӷ\} v{AR)$ھj^ X$ݠЋ8%3  I$+__|t!d5 yh$srCY6Z=s;=KH|R)gpgw!,K*^i;.0uqXI5K6 < M"s I\sO^73"_1*ަ;2KP=ֻo0q|H>M p,byA}K τ"_顊n/{vL"®hxbNC: qY:H:4C՜V-MŐ^5Gİ{<-l?(u0w pX`Be(aRnMJ͗iI.㳩hhM LvoI@mרA~lߺ QZ4]^_6*AW$ؔ~JT oBE-;Ki"BU'uF& !bͷ('*s:IN^FFIڛ??#=U'ф/=s_ Viqy$hWy D?얔fVVWd[z"պ6!َR&BNBhG?N*U0U;0RT4$7VY82 ڶs)s0'I LAD&TAoa]fዜ!;׫ەdo9->ZSz`LP2PZEY ǒf@K2sq\IL8@I-:Gz$Q%s wHOAٗB1([4|:σYp ?m8'arM G1<ߋEr@dd Kp΢ j p.b?a_n.G c~Yr9pU(!M)njt!觹0IVRJX _Ty#7dG/A'$e!Q*]0K3o]ss}>RZQ)-|FĖei-E?U'Ҡ8"=gQgkQ|>OV[-ٖXO ~c~o~eo%{Oʨj |ȯ s0=؁'Ha.,l]ب]h;H*HڋJHm{k1e'a2 !j{qc"8{Dᛏ0xT6L5UQv֮Z\=MB/%Dke9r+׊B6 lJ.8)D+7>Um6Y">i_eχb~v?mn0^hi^% } h9g7|&aka>k9"tN u_GWGKqND:sH[kb8≠ҏ7{ntJJ ˿. o(e%?~܊ig/{/Jk%=O|0Sbf GEhhگG&]_iTEПyblc}w`KȊ賥H`"7c:*z5΢} =z /,?Փ!שz (8aCcDb|'i.݉ ="LF`S g5zϫ[:_PzY>Үm2{dMI_%An C'e { N(wIjP2Rkz?Ħ}>tUm(Wi[W,s E=*AMIozN)`N]ao5{-J_cxn^;҅&ôtlPZo B}#aPb_g*#drM2_[?oqmT FZ߸,uױ?IZ5[QVKVFCòn8oiwYJYEǘLrTkst -@kIu}oBO6`XZۄ]CbNCaCʲ]}zXBwukZf뫆_v[2"cjnZ|%>GwL(sbѣCT7 RSq_%V{ǜcUiH϶vЉvY7񊼕3)Nmѷ NcT.I^:(gv)sa8%5-`X׼Kf;C6A2 ~^_N,׽Y_ Tt%Jn-XPEo_ua.N3RIm>E#LԨ3ErPeبϓ)Eo5D~ q^ ǟ%TOWYVp(صdj4jU ( N. ޵jYeٿߍ"(A5zra|}C+ACq,QÒJBG5{-7' eS7'Hԙ&7G$`yl1Ow+ugӣ v}'(ZTQT:t`$(7ΖJ]'95/;U=1j+|J Fat5qbp6/vIou~w)b+C ;"x Kzje^l#c27/j'9UN5Z ,MmV9:ʌ>UVm>1 OsCI /F{cģsژG/WS7 ~Y6bNh\[a?!6N@K*Xb;=rJ/ٚh3YD~yRI%4[V꺡2!/BP@+/F}ÇHe =C;TdveBL[Ac{pf}Xt-Er?W4[vwWK^ΤO)x":1#x>wcwb=T쇄bef=qM#Umu-v44$U2iE< l0ع׎.qL*Zq_fuH^Ov/mg( -~ޮ+|v! vieyv<@P/QW&^o0e T`ȋ a˅'X!>WթoDmV2Cj%޺t󓯿SVh~hI!LV#1c˰-$ʐH9q;i̅+~(q^D?| ;峮s!˲g>B~g O1 5Vх甕5}Ɨ&*? M:~eNUjQSU^(U ꌗ{j{đ‡ʎāR[Bޑ渁)G~rsG߆:amo $'Fj1ipc |;]CpSM)R։.nM5j}#G*.E/)Y7  2HR;[ 4֦#.I՝t"~gWpTO=ڞp*@:=A[j<]nR!b߭˃sth1|^P>5>&>Xay.e0u8$jO Zаe[ŧ0dh-LFW ogc\1g]|?J6w1*)TRwfb(B0{T=kԢŲc/P]c|gPfVi6rd'g}i~U8k<Ո"r&t5<}QyEuڝM17:@4}Ȏ*=N#7jר77ۢ[⵪PouTH{($wrO -1tS<@RCN/S,l|gʘ*g-c*JWK6L|!\'&&7gۧ2i0EVLpQ[麎#uLwN>OS.r{A|>Is8߉6h꥓iB?5t*g( NKk)Of<:}b PfX Yu[0jhpj.g'.KB?"L^~B>/Wlnj{w,2h_S7K3RRZDI mʝ/ekU:.uԻ\gz 6˙`#6 o;ŤhݖO|_8P҈b*n2]AR@ݛRC+ >1j͍FMgcGAW6#8.@$*ktb9a('6@wQ] _ThT}`<Ă2g톊.\3Qa9=߮M='_M-=ow-Me?"m%'|MD"=IPKŒE3+@֗+Zꬉ9Ϋn˻7b9P<'?*qP+oWwxx-S^jP`NTW3h(c-A bPu½4i~$B;_v<Y6[BRW3l[Ex3vT=bt6>Bey !1X9VFC^ uKXL#u#yfT {j?EX3ߵ~[U@-QLc=F&zmV7mWGfM&QjpWK&+*MQ3îې.b׉ ׫iAC1wiL^Ci12nHg~[nh!@~1h6̷0˝2>(l)ci.t#ˣp2$: vHvݪ_UK[-e<*<@`MW"'l;9M96G9?ǖʊβ$go ѿJ6..0Ã#CUQN dtw:mM8Zg[׭*2AMhrgRJRJeypsRmQQT)GŅCA&T❢2\4bL(} W`N>`B !\6 nV׹k5Xh|[utʓM@S8b70Ӳ002HЏl*WFr0IrƮk)6@D'ĽbXEmW+?\R9w;J7#{\CN2 2UP8~ }G@z;X;ZVܣ?}jz656fer oT B&1NR;ѧlmO8-fߜ~&V.n?$a~X)eč Ux01ܫH]_arZO=N4> vZZ~l=sҏ)H q:e ?2B-8qK@2 jDl~bG hTܫ쎦}]5R~=Q,!/1Q)&i0iyr /rYqe_ғa`fgUV?zx 4 pL,R>:>h }7vq6If N jE:z}O\]^T$ ~}!xPƒMl7 fm` ,MDR` (JJ@xTܟA3`C](-IXygU(rҋWU8i RY|! 33Z# 醜g9 rb4_tX;;VFWX꩎#K"BOu_l8mF`[{;NxR]a}5NHPFc+R\5t]h>Gji!1ȎPrQM;dbVܼA_`G6ΤO$/-ÍDO}Dշ^ةͶR|{ІvR76)h>""ѣs2&FI2E4Mu7LoǺob+RQX-[TJroG}R,B/(φ2^tu ˘h,Y]ŏXC]7~R2GK~*|' TLˋDAAcU [I{11 F/x]£M]EemT6Fƅ=yꟉ74W +Ws ^,[8D=!ޮ! G2n4AԞq{|}sNB<(d#&/WSDkAh.Sv1փ_zӟKOH:(ilR l"4a`DPTMJ{X]#^w?7|~iR߅Bb W`v _N{uKP)5Y2i߿m9ɼ+v'PY+C[f&&I |k_Ι;p2%MAlBguc(VA79Ҽ _9|eAg .iV{zό'﷮ l_ʥw$ 7UY,>qRRpB=n#7+͞qQ'D35QdQv[q?p&r FaQۜrPޱ^"Nߥՠ\XŒ ʽ~i|Z9?onVfң/)7CWգ*+WxA)Z~GКݯhf/{kf fHdCNc}ހCX )9 Ž;P<+pU\=2~L)ڭ5مr^]~%asOOyq~ \ ,eyz%v%q~8LmJ0B</߻+gupxl_S %JcዷjUq"}Bzd&L/tWxaiѿ|-TZ(&.1WԷK*uٿw=]_ U5r r'tywYAS׍e̅v?[_r-gZT`WdgPMΩm1@ Dc9n2GJ*=݉sњEad:o{W/4x㙖9->T@h.Tԕt=E+"Rs:~^ !0u |ݻ$(`u\_Vv<ʺtt=jK g 5Jy7}+ar޷uG`OeOz0foc&v.r/MaTDkQxBh ENcs:u˧KƿxBDEY=5T6Ͳ cM|IO|Gh~_!eHE=aey‹x L":Xe30 j@eNƖBc_iELdIRNJH0Elrf bnxD0Pؕ:(ឌ@{ UeTG{Z̸7YY%mIRZ|71bj8Qyo.JxFJ p ?֔}d+6ÿ\ϊLsNO64mVNRy ' ²t7&V lڜů ,u9L#녜)zؿіgnN+^ڥ !> 3AyG ޽fN 3|?Ï8MeJq'' |SXbSt6/]Mr ^NF'^x/ԮZ,,ˮ.w\]h.xWGݴEwp\Qrq5{ ӫqNɲz㎝9U5s68ᵺӭ9&5-I@S%5tZ~QfiRFpu7bM' /)Y8vgRGϤpMK0%W'͟: ȒJjN6%m`[Z/,JQAUK]0[KKh]8ߍj\~^*#d =+X9uË.t/ׇ.{,:y2Q"tBH9)/.iZZSEjPIWGcy+w[fEٶa t7@6UNI#oצ#~LϤrK%~jZ͋*'bEΰ[Љj&ӷāR~-jlY:L"MzV :tfg)$6EB8ko܏}`jߌBZOKVe1gric|cc?IWtxك…)n5>+y&0N5IF|Ud/qCn;F_a9wN} 8u5;5Wy!ݘ*͓XFh[sWQuD2 #Vx] *گ [4 IIr&`0Rr.d?A8'.6CE N%L%>Q(65\gJ  \? bbUQ2RYu\+b<[Ĉ7qS^<~٢E1}4$ؗc}_(Z"bKļ3 >.! (qGj0(e( ([BPsxʹUe;g+{05鋃mvhe6VɫE[@f+8ut,fNh*C'f}ľ kULYߑ/KhuZ0Jwv#1e>Z#H˜1尖-Jp;p&U|0I+!=gsKY"G.纗O+Rٓ˞fK4)]0+ꕏ tCv6kk'N=.F R˦kVzVءu-%\f|GCxLSU9Y<Џ/w**1HYnT DMþҠد* S{]+SE Y{78B`^}*uFӡ;v=M$Iۏ(?,^#,654%_@+p"VIYs!z3jZqj^2co% Xہ-/_=2*TÉ:p6Ma96' :;CגI0աnj6UM=gkK_l.} D-{ {'~ \?R: y=c<ύ,v3)oW)7vv |+[UpdcƘ",m+3M5EOxLa'Eh+G "@},7{=>,Z(E*j;y/a<ӻn@7iNi.oh)c}vJjOGK#4䝵áyT2K]%fQ?:|ԂC+6gabazc\ w&~HGFY)3vq?4_PԒ 26$"O^j-k͑r8\d-7pm23F&,/5x:,GۢSun9Z}Yb%|w@JD??Y(/ 1:-c&QYf{pRzz3s?jw0-.}֝FH˺yY׃t8$zP4NBPj w&RNe ܔE^̢JkPMs▲4#Ay3B!\DlZOFGHD; ZmJrʓ(.N o:WE+oV ]x*}|_YC}=ӦΛ6#9!=qxz&O\mvC/˜a֎jOi^_2rһ\S2Y?.\u;Y+JMn5$O ӷ1vYO>ԓ9.՛\rx3MsVĤOz qE%59dj3-*$=uzxa{nզ{QP`h?j|zSEO%x6@"jf2F~RksPȪy765}5z뇩{sXFB40Š̺VX?zzG6i?IW&;iRR:'U'`o#G?LKƝnYD 7 .eoq@iLΘP&#umǜXa Caf>iO蒊EOײtu'ի(xg'#g%= yb $ũbuVY'67ZHղS3cMv1qD督H& [JFhy9-Ny-,>2u$ #9{6Qӑ oވtz|Ę@ 6lޤ13TOp%{x߾ X[tڈMOl&5.M}A?w#KU[R\ qүjC-[V!:Ҝ P3)@]S;?.#ٿ%+J[u3_؟6/ֺ`c瀩׫a^ns8쓦L"WVF,Vqdg.q{!^Ơ7Qc{YJݠX<[\?/ WuyA߳O a CcM})'4!p˩pn)b:MEy6)KZNrďzA:50P>o%k ` :^33`%;=DcФecc&Kg5dP{l0uuhtWe]6ؗ5;E(ƪ%X-!!l}X33M9tUg~Օi΋ϫ*HBj(C={΀hمY3?03 gMCQ ;u׿.5פnxn9JS-$6є(ZΗT h7 Zdw_u%G8e1g/q0Z.v=sB&zUThE~8,dY y$l|¨)XwVE 5ĥ ƎU AQ%]~Cw_*̷}i)71zl_aY= na,v2Z'u#u'wv%`!z>qBUV9wc塋F-V'I>=`封oB+ *}W#J \:9$q݁=xJ_!Emz;`nh^ G| r+.z.u~n$xm'_RCGg;Cjycccn| g&%̎.P~OH1 Rwu!MU۶Bq ve]8xך/7:E#u%COrGG΁$;{s]Х*eYBp%:q| }IRUU;Dk-gsF)V&;]EWW; dd4phrkO9t=T'9"ځ )Rqyeu cvd8h=X8Ctv۠et Ƶw[t%cJyoy*8wH͆7S?odMw]hx-4MDŽYHp&KXB*M9HhyPmYp\6b:83BVJ5[Q(l3ji3c"p香v\KJZ_20L@K lY-q ]|hH+^ Ly p.GAbI#xo5\&;c#'K"T),ufEۨms[4?@];5S6֣yc67JmV/VrΩ--|Y I$<UjpknפoRLocHۓoE:?JsrE ϗ_ w2"qfy@Yz8 ''RYob5 7SO?+zBI4<.X92aN+9+yv-?Srlnh3楳O╼˦>x! (<:RKrj+=  @ #$1e (+%zƎ|O$/*њflbW,gҫP1*^ݠ={:q49qHpX%w"%^6/'YU6r:f>L$sD0rY gph(;sDC8%16`ΦxJ6կB${{˧ZI80+t;BI#IFި) GV}`5f`"29̱FyѴZY o8f<щ5ȏ(1d,G7 }qo bӄ:7-+_n|YO@cFo?]Q9:ƫl`i0j0Nm&Ş+:-,gwot|)FXyAџ$E5UPչ0+C}L^ %3vB_ ?cm Bƪtn6&Āh'7?{mHey֒Vz2_%)L!.C-(EO @(јS$Tܽ| V .[^׍[収vS^,Yqcӹ3( . @A2Jf%Tji_,┆Kc~ Wv0@BƏPzX4|z:wxQ$HgҬڟ0O\l6iN@ à .CH㼞. $ɔR}?H]y!1PPLi$/.SFp/RFe|{? 3UmYCpȒ<1Qޒce"Wۘǭmr_`L7f2%F‘B֏WӛXQ\̝7ߌWHfi&MCKLAw{C(4̵IW|OB^++ӧշ; J,O}g(ܘ՞_voN^&kCJ֬Z0QQ֞^^)QB;rFj-{Ʉ$]Ֆ ,ilQya4j+?]=_Q``klH{leEM NM !Γ;[&}hćS}.OWECؔUR'uL%CQbTkL^uϰ(=::tzɺ2'?.M'/Im-hݞ{WOsRRK~;% ܄~ڰ$WӽVOpd֡ď jZ oge>'65)X[<­$7裘Mw6:p);گAm] g=Sbip=~*a&Ө&DgRt~Oz#,S/ Sˌִ]x]֣0׾g9^в<}>{$Dqm/2}$78lB㷕9^iF0_8R^w/,Ėr_a^ 8]byVg8n"R3+hʛ*P{DW!O=2juCV +=Im-&e/s3v\>_݌-|G9`ASĢ-425`ģhT2-kJ&\j ɨ/*V^@ޚSMd01YkD<%Y-^;a,+|,;\r7^d834$O⏦$&[ILI{8+j~boPP OBeҷ͚ڥͨӗ+?7(̟y7 `<}i N_|ϝ4vvkV_1~=\2 {&VYj|1JHHx%YN)O$Ϥc%͇>Tc pqk[%[1i]*O ; ,g12 JdrGHfj8S{rIb䢵dtv'QDH*R=n2vɟygRSK;rX ISTRVfg8_s/۷^d VplsvËf8}AHN\c*t UKFͽkWNmi'Hü"!%\<9TKR*ZktB D0ֶhܡrNt@: )b^q#@.7Za퍌Wiݒd!=;)y_1CAvsu5۔fC\X`{Սv>N}bUNiB%m#$m < ^5^^3ETL|@PvJ;|'r Pcg426Wo(-spKXlQ\ gPW\k J YLRg>JuƮaq٦C 7F:VLc0NHN,:%I)HocpHROM#h?O:"Xˠ9aߑDobqB .}hiNôySV-&=`X<s@et:dk/bA?o@~ǏB@[rRK`k(o ZٳJv WPBdYn bMڙugT+'p4zexw|TP|n~(v;Hh=:9p}n;2JXRXiiH!C+HK.ե=3C3Hn-Q1Yso[R%׵F]mB̾T~?l|klblgI!a`*82}$, 0HA!*om6?jAy8,ǭ"l(IFP /KP4E621{S_J:G>rČ+t,_yr[ 齼dsRyq$ d z"3uSK4kϖp<H]$1"+{;N2)DM[+a:Ȩ.rs_*L^c44r7Ozj?g~KKi0xWZfo?iA1FE 2ssI:4`jeE MEZП޸E~f=ͯ 0 *BSdՎ~\*_\4{&- #06vwFkJh{5S͵5=F 7X}k`QItɜE$ N}ӉN9V< :X aqШ Ƽ{#t&2czn"RuSa*4OPGIwvJao{*,ͽҗ50=% koݒ"&$cA j Sc'&Ъ;,kU~"0(eld&]-fdž ;v*1)#0\*bޫHn%tEQL"hݙU,B"Ԡi]Rk^otIctډ>עd\΅oz `b׭v Kr; [G/YGgi/R34!n$f]7ySǝ,ou ameӤ9W +(a\][.;_@] 4Lts;8;2,R+V_^>-}b HWAO>a^]ꀼN?MKA 6kBqݿхTR a ^4^e`&9Sq-i'f'C; dP'>A*]Yr#5e"^..2gդGݮXլv_^~12Yv]ۂ9}MQ M} P%?T:̦:O)+dL&h (!i^H_Ҩk#fm%hjڡ/OB%:S~Xwɵղ:olȋ؅E cy"T຾#(3e= )`ҳq{*395LZVKzUAP[ط~AkPHjN3r<519unfwZ? ۵Zh,5\6"w&DDUzxݩܶBWir.+Ȥdt_of"ETBM}& O"glIм$_ክn|sX5mݍ2\К6'łʤV_M{)8VEii}<@C77 #dƉwէso߅TӇ8 4/St&W45/_U& A5wWy. #5 ,\Vö}{'Uvp2!_7pq$w4rusֵ)3/+Ϧr-fBe\EDhD{}i@i)R~0$fwˊ}=eՓ*-5]qw3sMqk8ao? (uɅ8('/*- [y(xo kIQOVJ*6ZP+s)p}rѰ"M۳cW6mHS%;?Ue3rP.W9H7q_v=:*tvDljF L &#;vjϨ!2Z'~q"S啐d˖.[ |ԱS:-݉cq!"Sa}kḆ:f5 {%j\)<^|r A,EviGήZ"tFѫ +#v)ɝ0Pbso@ZԔM=,kҜ'JS/عÞ,?lҺ«_L+YUݔI,rE.29QB\4㽽ֲz{=G*b~\?Q|M~毭h0@- 67$[`'PfdUSzU~tw8 0tfZ>:kDDsvTJID~c0$iuo6NGBvJcԅ 8qQ"2C`jqU =$0j̎ikćb*w.ñieʇXfn* u]5[o-1l6r]-\B7DVҰ(ZIS% fdD ^=p\^T?U^Kɭj o [$ɾH|<>^>sv Ȝm/V_8tP9|ɶ6HBj"+z\má.o -]';)ZHªb\ InUhWYzYr(+ FLvѝ{.fXue'E, xJY {CLMN q2yM3DB!.`杲G=͹Q;N< =c{3WӤ4Oئ/4ֽz9BvIhN@q?qKG {6*D_=B3ܐ 1.&쏟g涩eƲQ_؉ٲY.MMYYrmK#<|=5?z{bYO_h~K\l _Ǟ-o Cx1;,|*h)Dej6'C8(rXB!:Z]-g{)WA/do7膙$ׁ_.xlh (|:"ڰ0.(mYOƀ/0SNOќjE@&s?- fCMPH5%L?NEsSa0CWdh^Xd^RlFVN+`캔*oM58u 6聈@4Dv.?ʒsueKG} ױ3,E%sMϚinMYrQX`=DX0XrK-?'0PTM(a"áyc 힜5}-턫t%oj[\)jV` О.f۔¿%auflyƚ-u Y)?OG_6>3"Pf`Pw`s->ϝv@Z,~9M<;]F s+rhbqPڹ2#!8 &(n윹kGR |ۼ;[Y{꣩[ňO'^&hMv&%1So`52l5-cu ϴK0FgbM%ϪNRH!E!I«q"*?|ü?u/j }5/[Y`r;o'EjGjLJ\~k)/WW| fn%[7'(|?}5kÓ);=z^ύ8k5PֱẀUOea|ގtvmb ߫ (DZa̪^`%hSe0saq;p/a<\`a{xr{N4:D$kF暻fc]߽ ςr<fyXG{$lHI)z;9O˲4<Mq`hzM# q5V{na:Yi[Lsi‘ ՖEH0K]b3Ű"I6ƧfKЪ'O]o2sDMlc?fJ8{I.,;q ʃ# `K}cXe#'jؑ;Zm8 햋ȯ_3'\ AzY劏zPPgBMKNkG僶yrkαD ֎[j*ŏ(WV}jK5L97lZ` SQNF֏IN+"^socOmG7N-Z&wl/)AB#ƯPY֏ǑU=gAGnv?b,?ƶgt@9ryQ#_?~("˪5oxWƴkX Г~/)$-__ӭd?r uzwXO--(7"Is*qUH z?EFpa5ˆsĩk4C䌲0ª4}> PJ.^Ecd>U K 'HdQO4bO4ǍZSj^ou8]07䅊lcFN]^Ȑ9;[rmJyC{Hw/'[YpMjy&UJ_bU@E9龀f:9mUm;c -Q{+dQ^Ni@QR׊Q'Η8f'j>07Go>R'Y:PwM"\YKR2^^MJ̔B݆ 1lbs}x#=TkdM&{4`9LZ-ˋ2 *HT*adp+(5Z:JFfdȾ~< 7zwi񅲉b7+Qe veuw;ZT?L:bԕnr.gs/! ղD;+B:e:LV<Ğ`k'ߜ=-4[ ԓ`kUP Y79?RNb {֊2&2>Cy&0ޜ |]pme\ݚ\46-njKMgd1N/ Btaw>iR4M>Oo7-ŧ_-1T,G^G)5zؔ$؍3i ȏj;a"E:U"o4^Y%Ҩ5<~s>?@<î?Ghd 4ל^h.{G?߹^g~wb[@*ܦ"۝0ԦaDx~]qc0_ }.Ȝa?Mdj*$mkB$F=]A:81j:Ne"ea 3%w4"^ g䍲 y?i <~6Mn^f0LXGʝݩb`s=즥ʚtq}qYHBݛYWaN9s=Uu_Eż/Rd$%Y?/CN$z/j??¿wb%QeL(6NE! W!gS v1+ަPEޣvȗScANnRQ 3j`}X02 mEIzl`#H|v"s*SpbtݛiIT;a1 \S@ ?bR 6H NKM0d,ˡp Wi5D#d,sJEKCt%ˀd hIk@7iUC4Rވ:E3$%&gwXnY9G^ot!%$$Msx1ii}b\@8e'ԝa]˿DԮ\#f{0'W'೪80WM׍cN־01_ʺ#B1Dc7LpưsժQMk.n'Bѽysii$kuubV`q-q̚.N3&D s _kE;Oy*qiCYsQlQ @'? G<^! CM}r:Qu<[iKH[{rO?vhEl)Vm3‘7Dnp.+WePnG3ڍHO;cjwGt\FwhT# {62wG/aW[˜ڳi9CFVNOtmhsՀ4:`<+4n:ѡno9?2\L$w n.wO߁Tlb{ i:\[ߞp|ZP} nͣ{@t0D87@^GxN'ų0yFgmAoㄑ4';xzsY}Tnޜ+u֘tuaG2yufRy* "poEOqUa^F LmҫqAV~qeW^v= $"AmqIb-~,y.IoB[(%*3OcCws^vsto6:ꏕZ=̓w*Tu۠5<Ҧ&~ނ5?ְ͎1W;.r\gHf.BT&". 3oSMWK7P2\U'6{uVYuչy/N$+’^B1SF%EyݵN`ŗ ;_4tvvEr>ah{ }?"KO;VM ¿knAT=w:వ ͟hu1![|׍{z%:R6>]-PB,*HJ$!n޶б#ǖA;՚/{]~C=f"Ly_!rz۪o?PKV$R9Ppng/apple_app.pngPNG  IHDR|%sBIT|dIDATx^AOUWgƶ+IEb\?]"?릑&݋Iwm&mMeq.p߽@|'<;9Ϝ9x[Y}x&Ee4  lݛj,lfڱSbE$ ,_MߜaSVdW::XYܙ1]\гO'رwUmWWmnf:Q^ ,<nfUou+y΁ꖙ+UݍSp8 ]&"P 8 .3hVpY x3(?dqwp^Jo"2QLB|f6M_ߡXSQW*l@pJDXۼ}g v^U'\F"r)tsdO,$"1̖a&:, i}x#  0!l9hʁ*/UQ!"߸jNyO f]|J| Y/aBFH0,MA!3l&"/ ` qX&; M9w pݽWt7ܳ)t,S*@a"\I p }wY;oHEߧ|Gl.Uw',ʵqQ9,ԛ?Cn0"LSTӮ*]`L ֽ< SQL^bsP(d2#L ,JԮD61N+C]Vn{jyB 8/P(G6?9HhS5OjMV2Qjm u:G#)["_d3ձG-"x'>';' ÿy"0m8L'!b10ϔ fXP}9fgUEcDn1Z8\<1 62sb>!H9h !Nr#$=,&Z( PT̀!#ZNv&BL^ ̓xXq\aV^ 5kK|]a2_DB>3ҹ?y-g7H)P>H-ծSNìǗd"81qcѸck?uUv1"=D=zS~ MWIL1M֢2Qw@NIPJL㷰8;k? >.y٫X/m.~<1f؛a}MySiu#͗Y1VPp똚E_/uxꓟp'36c6|j\Uȿv  D%A?L"<EΔ.xn"69K18f PSҵ> _AMs6` #P`bZ6\b0% 6!@dNouK*S|0Aie,lyxSs&tfVkogȆYfbA#aRvZZ] .ox0!+ b]"K˥i_l'.F $Is&@j6C%"lux^d '2/{ vk>*KPTpx/O@}xS{\<95E|ݗB0& N5:ܻ>: x=#@TfW (ZJQ~l+Dni/37qav? pk.8B"K7`Be2>D78*2 jy"ՂLK0q`'J6y挙FH̃%4쳲sEԫh<_;mɽz-zyn&ĠpU^Gc_fjq\dZu˧I#Mr<E $ȣysj6e'@vZ=:wj+a6zãpoгGz5A 5M%vM:pjgyo))EE%wZ i!.u>V871}C! \ A3%Ϟ_Vz&IN1`;y[EJD-yD_J%frDT3ʰp9+ȈKjv idRPv<2Ӫ~[DZ$tBDƷr/j a;Lȱ_jOvSAԨT.ˏxq#](  GNT xG&L`ی( OKAԺ1H@13!by)8֟\/wfQ!:{`,@A]M>g`7RDWeN]kzdbL(~ux@`ۈ 1:Ce/Ѕجye~?T]H?le*_ x/Ͽ#9HH aξ<>Syt~`;#d0%5 uIgN% FyHG,ϠUs:ߪDĠ? ̎A(ˍ7_o =vP oA gcK| f,Bq#|wx%m@Eh48,0g6vx#o!kI0V13d,T$2MXCO4o a̠ړC}8y`mg3ފ*S'%ɠf 7w- E0iHeyX{8a?p.lq`::"u8濻9p5p`Q&|?, -K0a$Q ]Ջ >62hje,9o/0b9b3y :O}뙓$ > -rn鎚yFW'_DB6B%1d~ՙnI MTV5< &.ήnIn)KB8ӭ>HCj~ )HKo/WeUGMLo`r$cn1:P'm W9iql+:0:<U{HIYs4`&>`;t*M7R`Zg3<&}f%kJ[yX's?ntˑGtLGNe#̤ۘqQ`RK0Sj<+g"ti&`sʃ =X"U7&ͽ0#.)[FV t,ұ6 } *Q|Ҏ۪x}]D~`S7/,r2(g =nk%0=f0ݞ[`>/*S3IlK!]J4QCKς^P^h„8oԽ?\lb/"áhq=mx}y}s=;e=8\ur9yķ5i󙥤=m*_!y8=e7Ocj鍌}1s[1vmK2TPI 0ʗ]u;\Ep=, Bʂ=}~v C;[jk@˚}R]R)_nq% l>0{Tϸ zcY@vu8kSdlʪV<paHrŬPקf=V6&T|NV*Z)*ߢ7.2=,&S;K)d SKwg=24#"Pi2*#@֑A{Y.ƎJ/ mC esz{@TsӺ3׎gbd>^&$`|J`ʗr03׏,pG>)P+T \yQUDxO rmLmn-Hfgߟ\6f?Zd!:O=p ʙ3mz]AA+qv6}j-ιe<%G ȀO.KizVOĜSYq05Q"gw`o!,sBhO!W!i_b uΗiA9f";8!= hqjՙܩl$4\ŸD]Wli;xW(DahK㎓ejgVsg3,qhgœ vf 50c ;'n~Az /A TZamFz;j$tLN-_쭕B 5VzR5ҡ JFq:8Ƥthm3@'H./un8Y,+1Z@Â6< J}%aj<-4^KoQ:)dNT8gn0K]݀a[d Cjf{F@pvAwFA{Oݷ4%?q۟KӤ7.©nSc:_ \_@Llfh' #TPsfM[+J|]UkhYW;U5Y ) O,my[x( I$qInh`;bND;]jӢ*d+qʭ6d}P^ٍ:Ǵp| ƕm*p^z+PWw׬xfA ̍~0 Hj8|:,?fa%g܉n9U #(7VdX ?W)vͲe1_/Tx۴"7Gu BQbL!SdNθ^Ǭ:uU#8x0hmy26jq'ֶ߳)#3;ƟiSװktDɬ FMꈣ0_)$GRnv#9[b}xV"}?]sTnA﹝ xcH6HaӑA; (֮?].^'M_âoVC [ cHf,Tke鸉f\Y 1X؂@p0nQ &/.0u\ R@~KqY rJi^ UY3p™,BiԈ8Y!k. ڲkZuvFéjyMO8 p&֬C@D( NM h6# -F;3&@!MjU.5㹘cҧg%L+MTD:&ٞV&ɍ99uKWC %V骤CgE,"!E1ܳ ۑİDPC:Yc̭;u%ɘK.ãb1k%4 THyP6M *S@.#Ujj%X_{)K_gcp=Zbnu0LHΡ"ԇP !K1[N[:a!|d]IJLӻjy9bavW#4v?JRQT32-) rLRxZ<};\:zJgs0߇2Cɼ1H7/T~@8&fݧxevwڅM:锡pp_>p&{C ><$YHi=j7KR&Ab+qR!W&&+OƋ98}z/L m^ 9T/&C(~\5ѵ># |P/xS_ZPU#M2߿2;Xþ6^Aפ\.8=.LoohjT66d] ,K +ӥJ6bO_q_43$i$׻U3Y8R k{zL^{M"`<_!Jk[O3O?5x; vSFH?tI} bl ?MKtM s1xFqyF斓t_KBX3io ZZNB"}z:W{YkzD+vMSR6{1rѦb?JE{| -5iWbmT4 =>_sۻbJß~r94[nVP8!:;E+tg餮t3 wVnjIl$s:mVg\䎋n m=XW'JոֵlѓJ쎅3Eyߜ]jIar1'< E_gr#Ӿ/V^7EO?d16,f7W+-_+Zjx' ֒@PPoeL#k /i0w5vD^D]Ţ٥} KGH :~-|gᦸ,T 3/jň9f[* $x0r \'$d $}޾ژǕL|"Toxv/B"4WsM~kdy=3 2POjU {gffk;quiYaikQAˌ H2 5Q5=}SREֶPRuquuէ~r&9CN; a\8SS""0. lTɎlQ_[+' n|zPKFjƒL|}٘A$׮E¶\Hp~r)dw4Kf:V8FY!% ]'>x=Rgz˛2fcDޥL" e]^|4lj#DVϑST: \VrZkXd&8k'L&7bGeakdTdi7e#̨\^Ƌ])d Ӎ l^)j:KŇWpJ!o \dgTj-5MG];Oj~V?/"> ԳqC]+y_¡!هDtlR`&E*\d?7 1lg.eŮeX!]3אoqeE+-H NR[JR RV8J.H^:V)pOj&E4ytQ]N:mhz5ZM)ClXA}tUT\]O2- VPa$7-aF$M&Nh-?iX(a-i eV[DDX~}n=㮐?zTKSǐ(Dq;2$xБ6:&~pW[1aEHd9ɮvN>yF~ryRMU8iVŌYTB3!7ѷskjD񋂘P^obm| ˳HIuD,_oȭQn śˤf}lZ=$TZߋHž?{|Vsط *r%{㎽Sjǯ9z%5F# !  zHPNlyV>5R%ͪf##2Yz?B}r sJBXb]["6AH#Z5Ùñ=uqr nY -qeISA,;-z;{GKYmNRǘFg{aTcڡ> ``t⊦\y{ Hw뙳۶p4lw}'qqIV DR|\u]>)_jȶ]flF|{"?Ɯw(/phSORxt!@);+~]?Ho!腭D=5q^K\VIdKb; PoU!Z# WGp=;b]E#W@+DK ( t|u'XBcM48\,A}lm&LacMo=gA7p(aFf4U:2%m&?A  ;>w$v>^ ZD7T+^/ǖx"xT ?ChL b|k[`e!:d 0V6=7IQhda&c7p_Pnsd6tʢ.-g^ < U9|ON?:lr?;޵fڬ 6$r]܋GFwq0fL D"~ SYkql6įȉ(9j ?;5j<+Cٮ5bv7UZLUЛqFQNHfopXL᷌?Ɛd?-=. ݪr %WnzOoWﺹ4Ckoo柳fVǖ?QV`B{ ]$\tU,Ft4Wp/B砅*L'G`uOڡ ]gG,=fE=ίZsnϣxHy_M|ͥP4;TS:y] yy2*!FDwGhz''KW׫c @ӯl[9Ə7Ǯmz=l^^obxsJ?v:q?L QOV~|tKDS;{9tۡ_n 'Kl-ڰ{ldt-U?^p#=[j_}R%C}´.BF^_՝8 |ޟ*KFS>3R-,K'P2]s˥aE:qW̷rdMqw~;N72R;t[Oe `d] 闽+;,Q jKmm*Խ r/[.;>An8)D>"5M$6&1c˱R-ݡC\G{th<}ԎE\l,;ېjmy%Y j15[xdۡ"hmIt]Pk<*zݒʜSbԮAGz\yĐa\r2yn0iFn{@aAɴ@mؗ^fNg:9Jn6xS]BVCqEjҵ}"1>21Bn~``QvʪEz.ء[d$oLT^ f`5'魷4>鬒$Q4 ,uJ[ʱvm/ƛa8*zH~z}f1QyyYGl& -0kO2y*? (~T‘Sh3oA^)dXjȤwFJ~Lwzo$!֤ZIkZ"JbKP  4 GW =UL]=c][քz42KZ^%І"?H{!6Ƣ3nCw!v zpy=cF0|_ {\rri6dLAdXDp GQ''q3P2)JD}͑\?5!C^@̓z``ENpǝ9ʹ)pܖAF:rmi!tnrY=M:!@'5]!9[Ufe|L?5/e r$j}: O}Z/F1ggZh])*__ ˕kt&+S]tBjHA.il|]1 ^XcT""r"cj>Myn .a$ֳ ? UԲ2VwD^J;A|]2h+ Դ@-Q~S̱ߖgSIc#t\tkϚu;SI:M=";_zboV%[(Zۨ} s=IRg1v0F2ncWƿ4 F_ ^h06+}p;6:dk[cf'adUUw1b=Rl N ?.O&4Z:E_N]K#3w pLHj]qǟq95Aqfՙ?:% &6͜]",E~7x"v붣vMbWO_ÚŽݷr8͢n:/*EU B`At^MˍJ6-B2S)q UZgl7z]v>f J%o>k| v}]neBx@G`BTϖ0|IEˉ I6N+3k-ɼS.C$ on M ^y* 4o(CytHE4c|brIv~nj{B*fUWQdkok/unB^LcW=?u- yvfY$ 2V*sm2Rl\cm2"cURm!2[ K}1a\3_轱Ҝ* ,W qm3P}T^k|z][-bY[l665VP${OAޖB %JE<89^>ЕnNj;{noe!%uIh&mj0 fT~̿n'BTf]`r)fQlEg(uZgt>3+ eyI(b$e̠z^|5ީU]BYx=mՙ`Ad n"r c!Tq+HeV gQKvT.jDjxIׇ`sau|NI\\S?Tǚq F}ʘՐ[SX }`&8a>!YSf~oKkRE>FEGQdOhl'U^dK3ŭ}_.1/8iRm1~q74ibZzzڠJd[7ː1UׅfΊ4(gqn䔧U] {/^`ߩbmMdޜ;Eo ,1b"Ss\J7v6z)%XXoƪ&NwӮ`grK`tN ه !ڌ@åϠ-E5,GI/n دc|je6n|Nz8BmiNKՉ4f>+cEN,}eSx1@ %X_!Pp$wh˾xuuc -; CSӃZ3,BGUzWʯXI$ovg3}Wi6KK.+7 %(&K|hO}1slg>KB95mcL9゚}Olm;Z[~`VtNPu{L!ZߪdV'X@.UeEv̥9 >' Z!)H=1z]KpoRqRfNr޿ӈ.֗g$v"3cH>M} 7>6hVc_+G5 fԞ{<w<ʄuu_xYS9{̨ ]eA :! kۖg?jޭ >Xjo5&ΉAlb盗ge-!ӫ?{_O0 %_n'w#Lg}%_; ҇3aʭMG?0l JfG޲A0_VHSZonOu֯E|['b$&Kܙ7|_rx*Dx1AQxaWzzo&7KIc ,?4hJrVù/~`x OlLj Y~[Hu]|XsI@Z_Ԩ]U(Bl adBc߾m*7YZg% $=E&SFP~Ӷ ,1"cP8.)WsJ鴎 t˷`^e /W⎏oZ҅``NV9 ng+2څxYu>^2\县]B(YQ,)x{Zkuu;gF1bzkaj1q׎sh,<7Ġ1BK,iu^C!3b܏mLȢsɴv7̋?tϔbJѺA*=Ә%N kYmx^"zZ2kk1K"8)>G}oW^E!wAhoHB0ѨB\t);ɰJ}|{MyL!5Z)ZL<^ħ߯6E :SywQ}IS]U7Eg.C]cMk{"GK\{xC Hz|U~uGgR&\ |-q?vKXQ2cJS˱vkBg>^؍4BM:e^xgѰraܸ#=`%g~nSd|U #=s^5;e|zw}X_^߰6-d)ةx.|툻/y:e}]-字3nSlpI]}@W0L "rOeWbߩJchi؊nJD@pV|DzN6@ |^  @g%Ɯ8injcKw @,uJϵ3"*| .I5<:*CIȋ-ޚ²@GůA) # cE:K͇o:xW'=?&Q;M:)eם1'*}W˶sP`1tn/q쐗[WMh.J7w۹X{ưWunԕ ױ>ZB.Xms&+a ϹLQze8lwZੱ5-ܦo& R\zu <]k K}݀̿.|n&M<ulw{.)j2\?{ZaH[1M;=KZp0"rs\AiCxQ?)':Q*0?V1qq5/ .|V QBQʰ^؇a:ϖ~EIEqʯG}ɓ4V*)}Q8ƍNL-n(tҋ8\4-h]^*Q ׄnR8! ;D`E@7fv Oj[J k#zcNcR>nV<?tn1 s6LOƘLԑauLMJ9$:֭r5w.=8S}x𰸟7qYry_k+lc zzncNs^'3Id|`mלwhb[sn[e+Kuxu@7S&+ =:5v)tqUmҕ2yZꞫOn14О7ѹnrTFgσGv śŶGaзV cYz-?p獭 ۬nI!svcenbOEyAH=+_X;\nP2Ǿ.~OypD)JC\#NޡT&$oƣ쵐sw!a /PB\EoIE"g5[W:5l3>II8mlQiӿ"eAuxoqUfm*|2RKpzmm] )燖$KE$o1-òB'׉ԹZ%ؙ#) ‰zrjxF9?L3g/,9`AĨq޽\Yy\ao*u5>Dq3X|u/q/s3KN_r>fqZbgRnqujcSM;;Fƃ)_a!fi3:v\ BQc_K9yULuT3ݚQHn 6zJ6JGHk,㠨Ӷ+u|"OI0G.j+FxuG.#( CdM[3V87%T oN]bOEaʸ2.;}޶RTbe!E3ιPx5KFon[| \߽uAYM5xHTБ=ՏVckIK u/y1CG-\W/H<^ͫW;sc듌WUs "qi^16́@BZW)+yX)[ +w1eղ_;"%X ˓u'|X)͕@ [¨>M 8kbz v|.D7sDj0(^UFD~;. vt̙jD|=o(rE@H.a *\" `kt$]qe6E fw9Vi4)-.N+$kkxW:^~Dj+u-i,I-S#ܙ"n,\Oc.#eNJ0u|hūn|>'O;f>_0]:1ԫ|aTskqbuhhM? ^9L!߳Nv CӢWa7V6Qڸ++)Ǵ A[o!6MR Y\nJ߁1~vCf1Ao?)˞ke;=KxoY?Du6S}EC `t_j xSxn.f^2Bi.&۴?P:IC\%㘸֜VHLXOXsBUT$'nEf=>J c~RJ,˜wn2r1lX*_Dc͑k5Nd[-41oGzZ@ Ѻϒ| 1vO1q:eԷ A'fV7}oj{EBkWÊ#WmY"eHXd߄,6emxU<:MrZ …+rܽ(WUQߋ ?4.MU$L+9TP5#pL59S_'C3譪o~^#L8J1ɜ|i5 ̝ hL,γ5~|.*]޵QbE1LYc*tnsW`Po$?7$$tLKr^d xt+G2s%iz_iC%M&G" *FzNad<e4}&ŔaSf  R >/۠5K8kᇌ0 <ߏJPf"J"%FJKWZBzֿvc`1#hz-K"شlaOo|ë%*u"88j>'AN÷3, ZҊ|C$&Y2j#M_AJ{ӌ6RcP7߈x\/BP۾@K: `S(QnHC7auaz<O3߯+wlqwmWL 2W|"]4^ɰrG>!b.IM$X<ӶbyWFf4@߅v-NUgJ"fktQ $+r;q PhB/:D3W,^RdByj9J%ԧpTQ}u~eUŁlen6=ܯB`BVиFDzǽ/E/PGxb%Y<욻 RX܆쉽Z.h-ۡ p{k]IJXHſ!eeL;aS~nK1X 8?"QbI϶cTz& ֶ̙lR`\8bIA >yX_ؠPOnbي>SY-?H`zp ķL"Ɂfo؅@-]k]Jxq%e_w&z_>9HIfp6l~l54% ~W@\M̂ rXa6K.-_:wJ)f~J}b^2P|t0TpVl a_ĝYwG˱U>W}9FOAMgʊL 5/,9Y\-w? Ash\u!6{zڽ)'%YB %.6gŞ>K$xj4/.j,IJ4ګv)QUl @z^iO5n7R\̥MrmF.e No,r.y;埴OH~Hz:leH&+ثMŸ-frJX7|Pj rnVSB3RL K%v{սȺ㕁^ͰV{6sy90 N>P;O{GJt͊TemKPy pNUE(G41^<= 3勉iWԓV'ewty}~tKG(UW%Sa9CQ_8%uM83o-9QF#&y_!+oK#2% !n*1Yv+-uO, ղ 0}`)m0:?.EQ)gi" M4"o@f40ڮ ^etDytpܲeg ή꺳i\uOFo cgpT53)cloJēʂ gëPhy ^/IOu?=,^U?x.ƶΛ${sR/!êr~#Ka,x"}ȫ2Zm9+~O:i>mWKb;2W/M Q6JypLzS edԓPA _ a@캧Ⴤ2(s̗_5M`7tZ*M ^S99/C7Y$w;̭O 4BfXFm |kA+Dۥy1pX4V85r /m3Mst@^t.1k, -yFX?W;>:HcJ ƦM$Nk5J"; *D_`Pr9vbqPaj128Yq1q!M}Y =Ё`/,"dʑeHZL2sg:wA?Y3@P'{0J!AbSDA^m.miH[8*T3sqon1˩pzP;YMao{C,M<}# b%,"cBC4'+ ҫJWՉ$t SWB>G/%fFAUu/.^ z;E&NX;`,=)("QQZ u؉Y|E%ys&'ٸ%0 -3{XzLqcwww9ia`(#v:%FwoWBYf܇9wU'-)°))z Z[jH._{ݞ[wO\^uby[ZXJ\<--]P,Xb/|.Va Y FKw6`"RNy7 i;HVwRa::pJ.vK*ʿYEY!liZ4jd p02Kz9ƾ}趍iDXPBRЪy녩H#$)@Fl0E:rl4<j>qo$[U؟FVtlqFVd򾉗Mpm@[_5_07˻n֒+T*Oˢ JŦx Alf0[<21BЎ3Ep/!kT8T VBT7& VũR5y)'Mڞo272!XYRHTSJ(n<0_FH?5GKHL0 4VWr5lOlEfČ`eGf9ҟԸ,Ndcw']Qhs>>C;g0K6:C+3% oWu3lZ6ңN=OXvKC1_mXkǢ:y@CӭԍI2%AstwjUUdLJF8kό>7~ ,r~7`E ѫ<اRIcqE~\R]H]̈́@H[c:l65lzqt^N),fK2AೇQ3- F V}^>n&~RЦ*mHN\Y\055UW؄c7:5z @sq=-C>C̌kN5qyG4aǸ;P@ ; ܷSB.e3B\(Zb t+3)#wλhֆc nfСrAX$efX}Ny$f8$Z$woC F@ ;l2OjtZd #iˆukR-&J %Hy_3xf`hڴ/L|j*ΰuPCI$ ڮx2f蔹D$1YT`//Hi][$rI \΢s|nj'qZi;[;S7 Tg, Io ;(ꇴۢyB`x$]!< r ɍ[:Vˠfɉ8H'ԑFK-)72Ї;dlt*CEK^HDO;`9^{|iU|FK6ׂ:@*r6MW3/.p M4[O: e8@?L7hotz {eU;.g{ji-.U fgj _}NCy?LN}zaLy?h.sU X+Uٳ=Ar}p"knHvc_Pk"nЊ;sj&^꼈1m(k w0_x@Qc]xP/U.KI.ۭA땩ܮWyvOj j9yk9j]WJ\xܱR+2.*Z]_IQ YV"'(<7,3/Mn$61ED9`3q"41CC(۝#t?4'3Wri"BMeC(d^JcvJ') ۅB͕}+D5\\S:ZZ=esYR)ܹ%`r >ƴ-QEz3֪֨fvR9YݏǠ#+C/_"Gp l=lRqL^cQ˹!h*9P.ҪΥ^çg!xit_ZwR`[OéK PE n k sexS&SR({۸~%iKNDzAjdtjxR;ᴔi@E7-twIHnW8[ v4 S9q}LŊj&4tN/HfD/͠?Bv&M³BKaЅFX$B?ݽ}à -X@_ o+)픉򴍇BsnS^Hq6(8uuq`q[!YGB(tOIF*Ew^ݍo9}` ASB^TrIb+0 3w]=mKh9 }'ɺeѡ, 6X&+JZӳ[뤽 a[m;TA$}> Qs_, 3o&$~E( FEгe3hsb?]dqBb7SF>@J >El?*_y74AbRNx ]3m ipP4N5ARFe2/74@6+.Gj'efX]4)AgW }O_"%6":1iiST4(~GǗ#JH6}4Bd?Ρ{; rV}uT hƯ!?'\Hyc`M+?+ՖÄG VI~ v=׋u_ 1YE{,سz )rcuqyEJИ$?=7yktȘ9kΫ`Wn'7w?C櫙٦P,P_Wz;1j4zz4|`|>MXxeT߲Cw*P;sֻ}Zf/jm & WdY0.@id/X`]z"bjF)Ǫ:4M%qú 3(rwk:#?&:"@qJd5gYE;6ʗ'gWP2R`\\tUka]9]hapl5/K~=J=9EvDs=>`h[;mЇkxM5"IJSkf _zuN\G}A~V4Zf߹/kqƓz}w//Kh:hI R?<[keJRƢP`7@%l^uȚч^a~˱=YyLRy'f#k-# ,M ep 0JVW`@l[sfͨ9&k:\ꌥSllnF BpMY4y/?*V:6T8%{J#!3:̏c"ʨ\j!~m ҂ޞt)Ƅ(N-ӝ#[TWU&6y[R I"`w_psq0lx6=Ŭ3@8-N;M 4flJI*W3I/zy.Bm*NݰF'amUqx:5 p~An흯z iSno 5;fu$0.NַP4M3uN#a-9.ҫsH<_`M##~ٮ }/ldBTT+YXd_hh0yxbUi;!\,HJt)emSF4\ pB!D4X;B=Xc@μcoQͬ>qq,x"5,K?8^>,[5cj]GkA2IM0{(ot`?/ NbcR\m) \T?*exa(ukP#{W4@>M kR}ėV![v8$֡[)KbG=TNre,U:)mkSQtp*WPW7dHC>r3*?0יi8(MhxM'5SD;}y6;b_n$k|Zy|w/zݘA-1YnZEV{|xiD=朄 .cP+5uVb+J ߚDRCMAHwUk;<"AZOmb =rd-4J7fw*/̖7MV 5G٣Lװ*ԩ^KBZQ|w<K'Uy-WY劫˯"1*yjø*F!b,`Gm>̇Zv7;6R5?:bw= |$.9LQ RauE1%% "/P&Tb!A`!&R Xo |2MD*oÌgX@Z.[yG JMk6*?w ?5YI SH6xrN}]Ʌڟ w HAHR9SU(A$&A*(Op$l6E?aGӹ=(V};T|VY2C: cbcwzN#9wz- nj:^H#?9ҵl Lǡ"fYԣnjМYTNTvO&VӟwV@CYI,A/vFkPTqs B,D{ݍ_Z#*$; ΂@>>ڞnb/-A}{$Q0SfpY%"j$t)cbow \|?‰9*C'qs`[۶"g麄!Lt-K" )O<=v_4b%Ų.D"dv\Ax@6t{+ݻvt (lp,y㳣"Ve꓏=i  J@RA%s{DHS,Vў.xu%xM,x~v1TW9K!Ao}E+^ 0ݢ:EYcɱ 'j]xPeAJVB|QL2dld :?)t~-)/D@(T" L [Z@71WpXs!h.Yϟ>W֭?[}.@%MBud!8Ta$hKxgډ❦>Х1}`̗nB(*kڃ ᨺ諡>lO-ϟzMs 8Ąty jY$[f^R<]@5MՄ@~ԯ)}$(ߵ7#*2Aӕ$q}E~B50 ~Hש),ڑN6&X^~zA{m(+dEawBnQs+IFt&ZddqD]TNoțm'i""A\/BOSWG C[R `e-q695V:,|]vЦL ђG%@S*#3({hXs͐(a zyާt 8YaYN&J:bEͬ}fy@~VE6WW|)8ً,B-o^)||u:9%e@C8Kw? S85ȏ34fwMhl q,Ik]ھ!@6H5L(gCExiHޅ+4=(  Q#XTVF?S>ykl!}1lmIbKnʖsܦ?Gc0=- Y}|} 99uED]EΦBeTr^8A!qtP}lU^b>#(r7Y6 ;*\: Mj=Κ/fMZ S3 RGnsh&@44mv5N~SB $'>]}tCE p?bGc}[YfS5c*#"%e,?:ݍ, ۜOUtz~v^*5*O2~5gG5[nl+5}v D;Nj24zxԤr)sU9_7J xʛ).jkvcIFp.$*K)l|$7&Xjgw=n[d?C v\s+FE>lyUql:{ϫ~p)N(v3yM^ *rf8zײ,"mьw:}.q6{VN}n מ[UQ99P'4}(},sx1 %%c-`KŒ{ Y-W( Y%{-t[*?F r="}ZB~wtq컺UdOA臑/ߞ\',l՝u}fAfy)O剙:;RɞZ9yZj榪|baegh~\q?eՄuHM燝?P>@x93寋 3J/¿NC/eHBBBEI nʕWeHwܣ3WpPcT aWU8Dp^ѭy3;r.p'< [x'o=ܿ^#?ߊ=b3A'Sw"g-sgGIT%QN1$ƳXJtT!p1lȂD̿L/8]B ƺB\Q]"w#ϲ$̓H á?ip ~diK]o^ tExgQsw\>Xұ!.PU'';313VboH譹t99a!@ևkFUJhWزD΋v,d,Ժ]D@q;Æi,c 4D*0= Gm6i~aSPa-R|gC/>/P\G`Ҵ<D[B/ ʔw!W>jaDh{tE*D8NыU鿥 }M\d;[G(&",ngͬt8*[PlQдt^r?;Rcf#[H<)FFm@z:.ĉ(x%{]uXHmZ73*7Wr4R+'|rB,d,ǩ`Doɢ\SA.x+Օ|fyx<{St:78d E"[CoKGna-p Cш+QTt,.O_Ze_}I7]zx v>3/DΑ]ov9 r z뀨/\C HJ Cw t0tw|߽ٳ+Y'"Op;_m-Y_<.w1H Ў*K}Vҩ3sKE3b q wAO}+ nyq| 2^e"~{o$t])鍂u/jCD-/B۽SP7 j[E=B[ s-}bL\ ;͂,MEkxW`v+Ke7J3o=D6wN➑71f݋{H؟?)ޝuq4AWe<ОMmi李~c^r}˃*XXW"qO\UX}kgOy[aX&Dhm"9X $|[a$̹΋$Әp\GQ~K /cYi}g9|حͧWCFlFK[ӷJB',#(g,ն!/f_{{pm 1U)2M#Tlw!ܦM+(`h.sxz F# j!פmK8|ǡߐl=藁lVer3Wb)vώVM:Fm/JC ^[mfO =T@XP6KTsm^Y<-=w 7<0 .5V6mGxڦß ;4l6W7NǯaTj}_FF=|hKXaF+0ŢWEPKUaL1x&oE9-Tk/qʲ[3H4.WcO%ptڗf7i&.峈fʨI\Mm(O;B`Q}?:_kRNЭɎu%TଣM׭Dڔ \"Bӯ$:f(Yɝ1ќd/Z1k4W2d<=gCסxxd,tof~%1R 3':x<ݢ1 Ғ {8UEZAun,*狘2 XhMQ>mI-5)C1=Gn“2)N@ )5hMJD.̓Pny71# 2'MEvBMuG0+p86Avvw5!In(lu;k8F*q=@C& jSewKilҌ`ӟncXj @J~CNGGv}>o_8<=}|>,&W-I4/6pqc1k1&>Y+JhfGվG:Ιidl"$ɹ魋B<# ;Q*{cmo2 S^n]gOqCѱk_5f͡4A)K Lq&U8#&$;j_6Lor<+h4hejAcP+[p~_Q:wA}aBI)2M3'axWD ﵨ0v\B#cx»7ݫ/%F<oci^O)(17J LÍ_G(㹭!z)#LZMղk;)+^ʳN*m eo$.<%yYکWD%qL0PYElLIocX?Y]!Yz}+a7 P\q=B|ޛi⟣d^Iw;O_`\=ΖoF ZF;e\-IZzf* !ycP^uaQ5 dDQ4%5lh$z<%6 6d:Mw.>~$nr-x+jp 7ApSju3}^ymX›[ze;>_QP swv>z E-ªbDoTRmCs RzKX>J~S2kߢ7n-Eǔ./ BiHPӞ_[5oQ"{Y-tE,byq}Ծұ81l9>p@ZU&B%D&,5*p-&ڇ2` 焘4(4lfBM_Mn\uu3א&zIN֖|Ctq"< #c g{Q쐽LJ}--z9) YAѵ#WE-bcШ-˱FZ1G[ 빶q6n ]X7?*Fc8UMMmh'VandƲO{DM*f*Ȯh+Xc XM!ЯRsyRu 76:7w&7{Rh6HHu[ss$Yk3d)/-Lo/4Mᒲ3qO:hV.Nv12K"}0oygON !Pث6p Ll;Hd1҂>7E _@a7:s??X~ʰGA+b~DsV֣lZ"~V}n_OK?Zv$^!5wkT=شݷ vV{o{$aTFrR4W7ŠS ɲ(JYCXUv<[:;y54OQiy#$W xB>2 _^jS_(s(vV<]mEK1q}]Ynw4h+fO4_̜? IjwmfFG^s@Okuvj_cgݶGnq>g Ŋ%ל!%F"!J,$n:Rg|m%R<ԥiQM_{TSROQtRWXD$ts9dVlz,{u6J5S;7KWDf]Z9^) F`@qn+hUϲՄW~cD cXF.6n)oo;HQG_8-wz T Irpٷf촄N"*.q(9O4:N8;7WSzV+Vuagy\% A߁yU?l0.#NzeqE=?ɩ;4e݀(?wʧ^ Co|L`Qܝl% a-1 3*C#՟'ΐmYYg:3>Q7r:$e'UǸ!(t7NeMTqx'Q%54:x:?jבHe U0]#T_):[@XQyqX RI9Ѝ֤d$p uR4kHRmiY6kʁLbJF?w4"oYmH4na4ϱʉ=]*Aes߿10e ,Ond.f.;j \EFp@ASf0N fs"'?; \"c(%}BskQm 8G~a5~wGd:2>/RʪEcUlL:el;şE)垻"gf+J^- וŐ0] ϘkA~M9Sg Ȍl z7;SUϽ(CZirJk L'PT5?07S7Epɱ7t7䤍sҲX8APڔAsf|xJ'ݥ̏;nM <Jt6P׬Mwzw,r:nFbm␱ ?ڋ,TCr|KKp(,Й%o1S콯K -8Z+>߳i KJ;μ_Y_X] /Lpxn#ݮ;G:$lʆR 4}zx~&E3'QP'}.ǺbaRhy 8E/؁l9V 2+{4ߣp^rj:B٫X:2/fZtᢥ [dW^6e*ɿz$DnF O"k-F#iMlaywL˙S탓Fޭ_і}Q_NgfH}U^=oq! dfKC+ dAvPa~,\zݽ/m1g9hA/g=h$Sskb!ǯ/Dud\#C~S#;^[8K(A-4'-*kV]PF*؛w\c{HxKW %fօk)~{ފTWWNyW[?y[A L*6'!YWNW[VQ%Y+|LRѰ۵n~l>h1TGDG,$e4K|DV]զAs}OonXCgh{Xoc@h V7Oo%qWzZ 6H6f$G?"h##^.$$cddt'Hcl|FkoUx!+>ޟs5Q7E/u^2o6VB@мP}!ɫ|OlIQZ_KF.aB;L Gczwv9[U'xm:iY M7w,}) ~1?ȿ*974'S<1pɿŠC+$0^J=ٔhNR#YauPF| lKZd bxfihzV;25)9#+2b&Y7#QzZ^Kc˟ EE4\!FANM)틌{hL3NR gʽy /:/x1ax #%I?ىbOV&5Ő)w mXx{D󃻟ҫjm_>4BB=X]*R铨ZVFA|ӰL__c pZ' CGTq9bBE+lYUh4Q -}xBPj 5u[zk`CX;2/RB}+B AVfPM L[İ %1( }hHMLy?e?_NȠ2|i7IЄp+j@> ذ G+rQ5Z@&T®?ɹ4chYЌ䶧nJx/cۚ,1Ku鸰9ꥸmjE I_ +*^Oi}B])ۥEKW&]LLaLon%wno +^VBB 1(p=?gs)w $zӯ鞄Y  ȇҢ2<"Jp@G0W* v#.yCP0o ɒEQ^C2^t{;Llã`x>$E# X3."|6jBFS>5p%'74wey·KOI{wwN=mࠌWM6j}5>o{ 4Gol6B؍Y~Eԓh#}rI\2q^;,CFǾfƠǠSMrBoFp0Vu*}YYĀT,d1>z7h̘뒓9FÕ&Pd<>!6a~l&LO=>ӛ.G) v ӑf^r?ưaLR^/{H3!+a螒}`*AcJWY0ܪkҋB?[\o?9g$T jQmKMHWf!xb8OO_U4ȝJ51xt? m-]β<+\2+CQf ]1\4x5X#x}r|_$Lsfu͐зZR`53\]SXpּg4X($^˿4gۺ[+Op Y# MxKe./]M^t7ܯ -^@n *=<\/ 5mdԥT;ݐ?©ncRMj/+?L5!eEw1ǙAV2sGp'\;`HR5qcIZ:P `s{wQS-}#AG9Ht7F#Q1h?n.ڱ+ydt!Sß- 0W<F˥+Ag(Qۖ# 4IdT;s=WU;q zc@qW$ 6XђY(>$"S;)v 4;NKY##:\@< Ar}/}rdjoW4߯g;1_^gX;*c+aG*`c,OŸ|B^̬pmmⷋe̖ (P|1SA9NhR*l-4? 7K 4x~ix0f M69#%yNMR1qwkRc)'1 hܕR5VaU:m~AG^ӎ>M.a^mPpF|H-wVq,Ni0U'GA&2JJP~NN,Ŕ;QMϻjȜloMQ}J2"(J*:{(Ў+-0 +2;mn@LMf{#!DˇW; YtGhBywy* T,jJct!R?ȞtY0N9Ŋ`ltbNlVPcff֌alp.Y,|$]-~;ho7cBp -iȯyeIđ7Z*GP;ģ">kl~u:vXcfX܌m|KR!XHh {q}SoK=+@G`q(FMv L.dz|}#NhQi4>]9`b}HWшQLj)+*,Z496Sb٬8SU7g3.=hO9=R>ԕRXXq?vO574m-qK@Kx jVʹ~+}"?pffmlzscio5j;2~jR^<_ʽȒZ[Mi@"82!hm蝣%+lC_C<;\̀KFN^AyJ.c 0|&ε Ixso_o f/$půTUD990܄Xt%GVRnrͱa1K:'">* B >{^A%9YjsѢj:^tʏ32知_ScMZDB,y+ *)rq Ĭ'G4:tش:M[$ Y:3cB1k$^&Oh7>O)l5PkT,d~1-iC9x)&˨4a(GyҒVFn>4du^V*Nao'/E[сSvWq];7Z~cF ̄c!5 2~ t>E''lY<*Yˏ~@5bD;3-(.ɰsp͔*ZU.JCDjp$/CzB?`V&#|&7+;([Rz< w-x@pPR-Һ{R#̨NclԢ5B41cҘ>8IÆ4ezљJ!9V3H0uR$P'ߖ'Qm zo)15k֋%} *_&#MfӤOkݠϺ|BbEhqM}OZGT?VĉNc0mnm Y"KEruj?Ҋo$>54(v@/˘o[&Gh(c /hZKkTߖi} tr)橚3F(رS2ZMhW䙝@i05#<4t}If ~Ra_YÜTHW aOhϷOvM%> ýIZ#[;פ`jʕt˾Xh/"ݶڤe4f:j&|x> m*eҫl9& UHU=~ŢDWT-W5}15 6<4>H0j\ .~JJⱲln[C{OZpb+G3.09< iH$U~9Ky74,5 {h)}$C%jPVcah YjeZDDҍJL']==5dJ%t@Տ$&kЂIV ׾l`ОS yNr_C|Z̜䱟+{FzTy]qiAo@4)W{T|/| nzԇfjua܌P^\5_f@Z":HVxq8V׀`I1:ZWQGEۼ0YxV`Pٿ)r֫J쳪3^{Qa j~{ZؽܛH]ZYx"=iS~%ta˾Tɝl;?7/%;>P$XJvc6uj T'b&8N OIz>!bxIQ-eTr~C!G*R`BHZ9#J::t1zi5yڭ,05T\=D>cr64mb$U+d74 "m|\a5ρ:/%4LGنf9N !~#So2ӔE_9ތǞ蔔+ -$ /MJLɲf7C>^ 8īWwww zs]=IGCE̺/|}Ol"11&a` kQul l7*/c)3"F s$f9hތ^H,bCWZwR;.|zPNxFOH܈=;d'b=nYQAC07NbJ50=mlfYU._Uh5$uH0X&ǯsFWz%. zۻOvyG" ȉ4]e]Ze].2UEN(ob>~cHO6ZD3l>ɺe-&w_%: <&d5 I8̹C'ʄ YDiGl ͹ ]cwu4(?2GVA7jv35u*0nӪ{XG޶٠3$&Ds5b ցUTPd mǥgX⽜ShN+jӋw+ x*U|.+ 9~MMQH3p vQ[itn/ 8 (>jЭ}#2}` vQFvB  \k!ʐBy+0@tƏ$}~1CSP1&"M }+ ;`2F2-:d9s!Vb!=>J8R.n|#@DE"e~4>lb@.6C:~7 Y" : xCPFw/ jV㌗nX|˃ڧ 5ʉϻk}pN 9r!x {EC7 ”O6"!A*5@αvzP5V. +XDf+mN/8r0Pص@_|Q3/IBi֭4'O"+ z/'9KTg@,%bZYO>+i77ghdX3"qy+%NeM;$MkʨRz`?}'R89ъr-C{$&9lmVwM>fWTwΡ \uŞfP?uBdGK$b5x`XYZ5s[(]4/ fmm ݓ^^4CfmČ_GNh+6~D~:0otpMJua ˁ$$$+r818 $u83SSSЀ$-{?mu*f߂h(ϻ} |p|]S%88[=өI2;Q#GR#(!T|w1A0V,N1H(eY'2w.VDD6}4"].9%k:ASD$Yd:U}k!㭶ä7{u?1 aFQtmG00L)y}7rኔ d@nڎt':|3hI{ecKg%|`Qdx&I07LJܫn |_U iIU3n>ʏe)׈PY\(-pv|G~7i }\^dqJP1i&?3J;bޭ"vRW.a<Z÷R D臱?jn<I/QJ R_{{?Z@Q>#wZuiDOY7a韇FČmQ唢$ GՂ#wx5 'f@A[g?ã<7Z_}}XƇ)Gbɘ|OEW7RpS$U։18ȀN_f{x ѹZW2 M+M|FO-Z7(?0V}~G6um40|s@t/ 7&e6Dذ̏hKͳIg7] >~+kKؕ,i6 89`~F!͛E`e;%Eh`ρf@f77q_n8r~'|.T`Q ܊ξ2p'^<0 .sͿ+J߬2tXF}~|&+nEMF)ZE=F3O1ifo?lf6C ޠBY"cf 61 o^9شMr+7μJϾR/[67:.}Kn5oA0|v}YTYh9fr > =J#־[W8m)'6 x#-5O̴J.sQ ;"现%Ҙ77Y EAϩqj]B3 Ꚇ: n5:+ˇ7ӭޠ=eYnXlk&@];LAbˌs5?^w4fY1 _O97},L <=ޗ.Pb5 w7]cX[ӧۇ8{ZǘCf!/D lmOtt7iЭ0Qh8n½]sMA9lǧ_?Cݺ3ecr)}qtvZhBB,V(09y Ԛk|ހOYs8o(]O^ʑW-ݶpz=Ú\a}7 F*@E 3C!n"*||1]߹ۭ*D\0. kXښ=Rأdx@jC-wԵK/^T|V O~.LlF;XKl8S.B$~q]DO4[wkXZtOu$m!YuG5ld0~S憢~߇6!R^ 5s;y͐ҟe\B:۸MBy(y-ްη^ܣG"c>FuI9pbVTagf&4 붟~.XpŖmn4힧ZHpXycbn  y}y@v"ɋ襲/oc>1!X׬ Ŧq=p`# i7Btܻ Bkʸ敗Goɜ`ƣUuB69!DUH:""#04d3pz- .A_8p`Ez VB-Ci,@9]\y#8/ 0jhuöң$SCË(M^ ȝ hCVݗ@1vgr h9<%+p^ 06H~5 ^_ D=O3\j9Ew}O6VT$u#k~eW?KpFՂ ZQznͤ9ѳhZMr cxx)],,GY5fQ"%%TgkXN#>!W~h+ %WB$d0Φ>u_Lj>lY|t㠐G1Slo"~@>ϣ\NCt-.Snv,|QyU`?vSᒌQ` #*ڿc:zwgQ`΋jI!w4Xy G_}^mN,3 ,;?:`^QSH(ԙZpaXPN#kj9XG$ F&-ϾitH2haQ孥0+~0l],thνmT}fް*"Vxs#P!@wz83u~n3'3 Zחh`$mnl9w' /.? `n4HrY9@#'pPt-aCdyKaa?f? \)DxܑZȞ/̜ z,BK&COy@}m ^ 7/XfeS-7 \+uY3Ëyd<>1Wdh $[|8m%tӀTm, im!uPQOQjcB요ڄ;qT+h'xrKpnY#' ANۨXGe?YdSfטƬ:,A8:h[YJX8I^!FVAB7׆3J+m ⧵9mqHF#H֥0L m }"n,I7a[)XP iTU!PBx2Ŝl L4,(*w:l0-2Zd>͋u\}!~z]0*3%6K*.ÊwDK},Ld_[ խ<1DsΈvwj;x"X.<(ٰ!#{n U3%ڲw%vw'^kxrƤH.c6j|jwt',mqDnj=mW' _= C|L8(|فBV$m kV#D9 (dRm u4n,ڥk%)NpCBqֳщj./0#WGY'5h:mr8MiTKv>bR;4fݞqBz)5: s9vPVTJ?lkbzÑu>krXD lwljv&GѬ$4 y.jz336X$UN1xAD⭃@ǻPj!ԯM)^Kqt"$rSS03 tE/S f|LV@%.qvN\(]#d(XpR ۭqj܉ xZz5~`ظ.(E]RBR&lJ #F! PFM]҆us¢2٦rc%/5't~2oN'S>>1T0n_4?:'IM2蝑iӂE}aJӂ mJI=>]M*Bh~YkCB4x ¶Rp{9#Cu/D4y8ͫJ>}4􅲖RUPKV$Rfppng/delivery.png}VTT_3tR( 0:4*0tC  %=1* 1% ".[뽵]k{vth9i`xp_Y H<5%c{{|mC3݇~_MV)@{>LX?ϚG;u~+SBuqHgz#K~^1яt=du'k~z=\8r')5' i_Ҋ<ׂ/ (Z ;!xJo~frOZ.JġnOHX5Ue4..t+PvB"G Uu(\eHG*J軚IJ3#y 5da.+03q_-0[bf[ZFHlVqHyP؋.hz_R2|I@6֢s]jٟݸYJWExb K:fdfvn5'n<}ofڢq _b\Թcrwr4W`Wћ+YQ^i7D2\!?^Gn2n(dIo%RP:ch}ߴpuI>fNv[@+sd"Y\4$W `SEY2U=+c5cM0\[tā>d"73@ypGstY1G0U ŀ' WsGLs.Z_[B eV.3~ڜ7xylz;=t Fwe*x,>^V!X[ ]g\l0 />:{3_)qaש :NOmӖo3 xFX;bv5Ϻ9 )Hqx\4f/ke]vEd?$Ddk$3!CiO$˩ O3sx%HtEF}z)k' ^GITf wm*#^Y(AFZA0}T8=ud(V`)WņGS' ByDg)<1ET8x1$ 7$EWQ#v z ]\0]0o +a:Dr6@rq8N% t-pk<H9?3 q<)KxETs]3hA+YgaN+) vȐ(Je*V`o8z=uq,?L. Deϣan#ʻ=( g;KA˰[M7Ŵ/4 A.]4@;TTO.c s+?t|oѺ;ڹ OMw^x8c@SS= vZ}O1xI`C`tscH/ ;S?yc8XkW'(/9E^ȥRwϭ xE^%ԃjW6)zd =*OxXG8cJc#xKg_a[2c ue?qA-2wu@PowCN?@Z>Y7(j; #e;~tnd.Whkf6~Jȴd/_w!vj;nEeP8V7]f hq&6@q7 9wkjsDFڻ"vF1O̓Иe~]hjgn^V~gFBy7n*)nwz+Ӣ8裶6נámwk$uwۺr׊naG)F[wy6F߰S (F9%"E9]j꤀ZxfO}L:] vdʵ_cӈt0K!GdM %%OPT"UXwyA ʰ$g6tz: TiǘFbMÒz)”#r7R4ί*'K?Dy|ֆAp1X(g6kOb_ %KqFX^5HP'՗Mذ!8*m&.x*w%S/}σ/JF=>5~8 }V"r;OQKFUTbde im+btN6g'%(a|MɧD՞ K1 D_eUŃF#w>ڻgh~/ÊIS__wmpRek} MAÓdNzB0 cj/eb#)IyMz҃zׄs)ֻX܏пŷ̚Apȵ0K\{ /ZbO~=0-;ܿjzpdߜDnUW?[ Wr0vM4SX )|r9vDglڻ[Ll< q$&z:^|Rirэ0I沈9B౩$9>Kcʜ,g+yܚ+96w>o{hz!7tQZAoQ&";}׉-毠abf(G76cTfoXN RsFyd yNPťC$-#S/3xX|̈2@ܔSLWi<ү3gEmA_ [S4XRwoKr1–O2%ÁE{~diB;0=ΕKeG C A803Ujx5k:JSe3p؋6^&k\7sjp /OAs%wp[vKi8 6.*Y=j(J(Bžñ3r#i`>#tr{ctŃ!$_/^EJ ICs>dVj(3r&w(F%νT|}.]n\~w5^OemY2+*y )澒ˡ[fh̲uiaa+DV9Z5]z6mWF)!v>NEL8-0u۠Q=[)<m ^Ouu'󆷏=4PN.qN/GRGm/R'0uՏ,L쿼4p;il_ Vc/ Xx͐dFjSxZŔDbCi˲9EDsw" zdB}Ot\'{l;FuVOatV \x\p٥臮dS}u[٤sR?[@>=0<{"0޹M7FrN;cgXڠvj2ՠqdH8<&M+#)P{JŒI/yo)5:f~qQgQ"\$Z['_5+l?mg_HZw$ʵjl 5V^o[QLlx;0Mw#^.} ;GHw˭ZWȲyN{mOXx> g#C`QB=}].edᜤ|:esnJGG?g6壖SI_CnٰCgV噷Bd(קhi0~&  +t{Dkq Y3| uN\rkISCcÆ$|hg1UT Sl^Ө*q*=qhP_NVKOQw݇xn׻5OpyYhoIVY @36"C-13+jJE`7|AX|칎Fwu)8@uCYOmH4;7b$⮪r[c:ULjC+.컸9ix9-/-63jű:l4 (% 3BύTKP]s33bvKJ$73AlL;CyYڗ&^ F=07k/ĝ}Aۘ%Y dTbµyA74 d}֧7Cv 0'ݐܻj|pTOӡ[4N;F] ɬEiI F5~!jhLt.#y4]́;9 k2aS~“x1g.@=-rT"%lm^3Mam¯KL2AKILφّB h>% d;@:8u%}Oc BP'I`* H+ECVM8`Y4z@A /4o:&(-SelY9@1>a4D+ɉGG 3* p-`JHIW8̡bSҒ) hJ`q\W*E!ifa2Q")@BaO,P9a0i( 0H): KD%ZPQ}t!mFEa ZD $h(`YLMjLRfQ<.-R5V"`jӔ@aj hn"XB:2S`/aT" ,5d$ tN)УRfGJӥb>Z CU$`?Eat<Meh "!13lXBj\$D\u$ p Mje RL0_bKԓeRcF49WUr(rL ]G"jOLTDXD2dM8jra$i"H*JlHz*-5Q%j!YD#!L4X!4* Pl '#'*-HC`ZJQfKtx&x*,dgVC$e~@ !է̲([IXz YQ!]ӔF␍xϷ!2(" cFaЄ!|+LDˣ`dEE#̠d kph$XN' lJ@O7i)R^Ad#FVp:39(A|j"Īi&#ɏbP)H&3H'l1V&s BA? M&5N:)B f3_hCz!.JE#R E$&L4Ŕ'0Y%PU?$jMID$-aJ QQD'dr1)LpX%2it-@C Dd Z Q0@`j TD) :dS@t_ Sx总-QDڀph h"MK!a,&`Q2Ƣ!9XE82 N`4&.O3iHq?`_ςs[)RO׈ÿih/,(%mCá"fo`?G]4m!ۂ F#1 6%"j0}16#6 $ѶH'ظx'X x):FQ,#Aƕ!1tČSLlMR1,ZHJO !FD&JRmtH1MF0NbFr84a2ÅHmhs(,T a=E%&bhN#Ȉ* f):3J(E$H '˵dJiu:AC5}k>pjCKalZ3)8<(%Ji.Ϊ,H$K'aX`Y9(  $H8IHLs2BgAtURӥ$˜dtjx(LB  c$ qUZ@E$S*a5u@37 eۧ>="QXtaz )N@# d*,q@@[#JB`пlol+ET&  Yckc0 JRS` BFbB-H꒰-N׃`B Y9ll@.HEFqHa[Z3 8r H%-b V&<Rm|DtNPGӱ@JG ZiN‚St;iɈ D4"TH?`:$bD"SVnJr&1 j8)6 6%XR +`\/Q1t_gG%At8-XHt"R%PX(Ѷu&+ Kt*2x+݂MGX:PRSLr )ӵIf*!^ C)H}2ĪM%b O(jLBMQ@3BHP-C*ԃPIFm}ZP(ybx2 E#|j4ۖa%f vsY'C!tKPrVg3UQ3gXJx`B@v47J9]JPŠl[ڶIQuR~hl? 'IeG'8gHW,jրJ2#ӥ`uߢ ?CȁhI?B(\ںgyhZ}Kg0F K?![G5pb> HmCH(듁?f4> 0=Ob8 L  BAHT$`'D IeMr. IL4I԰#- ayp}Bfr-X>MjFقR42jG!s'ڌ5@ +SR@lS5i[nIDB$0 (Vb/OXMd.G#2j9 FL)`!D@''$LGHXFɤ0 < WJ.J(Yt t fЍFHqN $h6&97Mb$FBW%(r"D4j FʷJ0]azɒ^gfQd+KAD= AFRpi$N!$2Uez2B cQ$1z0l#;du&pJ (Ed$(c@t6 49׳ =e|-3JӘrʶ r40 "%A JNNI3HU(hJdE.;1ȗEZ.b-2Pg#,O0tR<$RIoҘ(.1 fVt)iIta%,6Eljt*u THNiR9%a`MtGG \YI@NZH)W ZXGɐ`z` )NPHQeS*)Ҥ\YֈU -&D i&Rfb\d` lcs1"'09]h`!Y:^ Ar %ڬX)QD]2) QV\4d1p' bW4׶iYfTL U!#)" UT˄iDIQV-F"xi<0΋2QD[Et #da X WBQeۈ4 ‘@cR c  N MJU6[F0m2MSSNfЦXғ84J2x[΄&@nS "H% @kƃ6?1hYzUYhT(6D2!!+\8Fbi|p e2 R%RUQ caKNLS1&JRph\.d81x&U(HakA <2UO):4R%",'[`$'E%I\V-E L=,(8AԁAhėE5D=E!!(:1ZDghJh9y6Te sATPf+>m#"<66N&b#%h"d1bIDx Bc%QZbϣ)5oۨ8La5m>Τ/ \`bȆ!x3EM4R4yb8xc=>N)eI*8NXd$0鶶Z<LXj{}./N) |+)R*S2˔D13 N2@ kHGh(B:ш:ɕ)<TF xە!t6SI$ti VT#`L 9רeAdxMɳx1Ep€=[.61Q:%Ym;)PE2H#~>ܾ91:R&椃f8 3mq3K۸"QlMنo#™qȡ34mu -dtZzJy gI9M8@i/o9jM h4PgS4d[c$ )jn#-9O&-#\- _SiFzNo;?mZ-6c􇱰Zd1`$%H-hh4[-!)RE`3,7[ FB 6yjh ̵H/3xF>TP~ypQ Cmx!H$,2Z,@BX?5W] ]Fot_b{2Q"og"'1 _( Eܨp "`p>h*!Ȩ"{ptL_տ1hF O/BIlb^MW=@SKD8P, 3K,w&/X?/Xп[za(a&-Uۼ8  o0LM,6 [WB@)e|=Oo#wT?R: zUJ*N;?OumAKߏܓl*= Ovv;"Sk*QOG%p]\0 <78F뻶~~.yz#`GBsc/-?;6m}y@~r?@~z_^R m>B/Ɩ_a6ly-,YlV[>HiRl/}mU"pt+7R[>Җw3[>.SQfF LcH?ȢTPxzFV``ɳonlG#p_R>>ef}oeNS ?&oe|n)0ʂvlrx˟~A&DM(OEuz~}&(m᝟&D~ 5"H/Em~l87Ck[Q 0rv`n}R(.l@Lx6Q}dv:O`қ%  B 00I& 0 H*`,,drb@9 pP8 8 8 <t^z ac7.hC(vt9v;nbv9vv;idw] vGڏ#Qd{L{>~:{kO_igCu;9rPPpCC_G89;Nq$8:yk k88v:s4i)Ɖ$q8-s۩M.gggoQgsmO8p~yРA>JdlPj5`Cs/ip̓ 2%%%EbuYRrKwW׉S]rׅ]\ϺuFs-p[WwO0w{}{  2duCʇrȗ#F %?tڡC s< 5lְavm.Cce?{{$yZ4z}oQdu Z|}=f)ccV98Xacc3aSGih(=t1c]4>~ '%'}t33Wϒ^8?w< S/mi:|yRe++5WWkE]}ȍӚO`[ε[/Lyv=-緕1ޱUt{xxyQcWO O~t-y:g?!rrQ!46rC&- ̔LN洛W\4ҕ9N #NIu,e, O3[i$/ "ukGKCC)Ƕmm.,Zgx*Ӓsrjt҅2.aCeSA_/_iD6y͜Gsf@/s}UhgpZ 1dl BvE^:urD7n^i.\x޳o;_ p}a_EX0"ؑo|wg'>̾fo,%ɬ}҂Ջ8@h ޾ ήKȖ-f8{>7#2y6&0ў @XS8ڋ|EĠ&}^nIN-uEKPL)O>?ofe1利@wȒnu n w!^05,7̛*kVl^iۇyxd{Uq#u۟̽1b\`9XH;?^yf]PNO.XHYǟCvBDw;aAO5(To{>x5as9?Q!ͧ_1,aa9孫W޲Ԇ3{=E}vjT?ᖃ= CɞpҔq 7Kr7V:׵aoAik>{n!?z&YgS JW>b6n}'9xg?ƞ8ҦBہ#"#we\xDlu/^y\))OO 50= '9臝l˝:fZIm;ۛ13DΗ?wwKӎpg%SK?˚3ySI#p^\ǽM!N}^{"M^R1)] +߶3ɴ}{ӼoΕ_;n[p<{U̽]̊3T|M؞GaCʢc(3-/]T:;G4z\ђ$s.  8qqNZbwc_*B6u隋 6:'U!>l+4Vu Pyi9Ʒά};8,l޳M5}Wg5>]h*0iZ{<Ƃ4z7,PpV8˝߲.uf"G`Xn9%f/sr9Hx{=m s\]='u9R*w.5{ Yٛaib~gYSж/ IGXi^ԀDQk=Np)7]L}LGF?o'goV0>{(A@؋C2}:3!?m\57xs gy-;jjٙHJ$6sa/PT=ci D؋G`ω4l}b n,[22{@ܘ cSϔ&IsmfA<V.:EZR9~T[ˡmWٝcP4+{\b}䬷NssJrȎ=n ϸv <+jbG|o?qg,t:`h oFƪ'э3n}lcc#_߿M=%n_^撽d<8x{^;o}äv: A7^ۯn1 xR`庌+N!Ґe R3u^soBrWsZv5>iئ2u;jijW|.-rd 0qoGhY~5dJgnLY{lK hU͘\t~|U=}%ȮwOB\ce<}%eiii۔ہƵkaxc ̬n(cJT [‚L-j_[RP7ݚ_1iՃ&!ؿy1ܦrw%yxc5kK}: ;Ej:OXy\-<ǎ!K *kbV3b_] rUWׇ7ƃ}~yxހA[GށkN7$]26"`7EGGUMVGvݍ8O6Q/ۑVKj =Jhe#'ɝ2xQ uIlN= Rxyu`1ua樂"mx'B~({\Y0WCXT>;qĄyJ-}4׵k.lx(|T,{)}ψHGA0ʫSo&oՙKmLWh| u%21IyCV@ᓽv(U4jh42\:}[Ҫ Owi2xEeد^`bΥn_\BCk7#qvy+9ف`+_kiY<س55;=BfN zasrhnO=k l!r+G-N,$-~y-Y ZW^Q S.c%o(LŎ I,&6Mw4)DP.}3zeNd9HY ̙{ w@9 꿍?g΍;4^u,nK.0;yh-*i*!ܘM͗&\ÀU5& [v[Iqo;#^A/~fttzHö y~C}`mxM]Da%*@?t2oyE/jaJmc%(oۦ7_yt+K:<,no}Gc{GdQmd6BHŞ ={;żJΗgfj|1Ša9?]vxCy`Q]gyWƵq7qzqa)3FJjK%/{iKR~΄=ᯧ _pvOF걘.u@Ɣh(g]QWG Vv>=6115~O꺃_Җ{w߿"}PEė̎30U(ٯk7R5ֽ:CVK@5CU'g[.m(1hY)NS֊=#tίFŖ* 0n|hw·)і6UК>#$AÐKKϻm9u#JQBCA`;3Oc~&ɏ}%Ғ_FZ{ʯ&l|v#XS2WWϷHdo?bLP44~+s~#)/i[CǡFcƁtL"&|?^tQmDХJ>{kPwf﹬x 81[.'Eyo׺۪& gOxlnwkđ;Lpgh4wC[y4&z՝V sUeslyhmXNfenISڕƓ[3kjE鬛4QcREmz;(}|ʄoL'ՒqC{&yz/}%w~HMln~fַ+dK6_|bz j鴔ӫ޷w P~ snμ1GVZ:.yY8aqSm)RK=]n]i<ܦ;x:7GԴGh_E~hjaÿ0oѮ:{mo{ٰ6-/9'')>$=7vۛ^/3%W݇dJ4}Zi}r~ >#6(=}F%>Z՘jG9ssKVg,ivjK x ߩ-*8WOP<ހHJa-] o6\Ju;H:~Cn*?-88VXrj../FrֻK׮?#@cmwh{Y5{i]1eoB[/7SXPbyL.ܙqѱin@ p!{=[<$ M~X{\=5*JMEţBvWɃVE肪*7 z j/T7]L#YSR2rZ;O"".y>|(]~lYCpv9㍗`8n>{]fkʜyOڬ=`ٺ!'_:*Bf+["^~^^[~ ,j_+.Z|mso/A|AV1Tuw-z^DO5;_,L;q\T{BYYF,]rt?`UL-ݮxxU\ܫS>vl5]Hi=΍X>D '?I~n)sU&\?9\<#>((,bC5Ye} a_dpdɋY>Kݳ=^rr?!\6xSOf.np6~{0v K>yCQ~'6[~bCr/]z4ҧLTs[t kT jynT7Kᒾ8Ң/`Metƛz̍piמF-9͏_\t_(u{gΜD>Nvr[]23u z(F>uq9iغBfiC#]VӇD!$s߀mc[6z{S-faI(:s,w~mSܪZ~elqaԌ̜KUD斵w^!!/#ûϾ(cGSNV h$)F<ߎ X>̥(m~-hrRRGCT{Vn%x"dR+&4}2uNȹMC Xװj:y яY8ʓ[B/2X3oea#p>ụ/v Xx-xZ% }}JuW}G P*䛢(ظV|􋷵FVl?..=jޜy3ANt9fxo@COKBgػS6eĚ؏c- ¢ E=KLk ݞgL )ۦWn:rOsZP՛0H%{J,iajZՃeb9ySN m=)'k y=&Mqsb7Ƶ$|F%sj]uew`=uZf}e^оiϵ:Y~] |1-DR }|:Pti>cDD/8(r 3aeǫCg2ÜUo-J}zTҿ~rm" ܷM{yK7( M^f yyMWK?\|7>"T=].9_9eߕg^44~q??W֜V# X05zAgw9#E^8ťĝo>nlM1 Q]bӸ;aMflf,S3֜Qٌ]W| PΨ _|y4Ab‘ˋ.tKr{].U;tco Lql/Q w֬m~=}̽n7{JUO/7<&\PԺ7מ3MF3vrU0at| لڌW,99%#U%>]i|kiv4_7 ';uwH!#r{jn@5}*ri> 886㐍/iJfUF wfݟV0q\q7*3ƇH?d<˟Rr6`C+֞&ZvPDVDbm4fȎ{ r9r?z[0ôGM}uz0|rU]z5 ɿK1sꏝk[03h} tŭmo|Q㯼Op%g\t8c$ rvI oe~m_[i]nfV}okKP⵱['od2aad~)鈻vWό:e#a/NjL@{߲ަWZܗּ͛ѭ5't׬A9y}h%{ ^F|Co@:pzI/|F;Jq5, n0] z59wn;Ò3C+dVlI{å.m&q<^{̀GWLZ.>$]Ἕ;&`av ]%m7`Cu-pUw鲅/;m9)4?d`-jG~̽ p4t&e lڕOs9$5&${k]˳nv@eGGn8[E̲_v_x5C 4"JטIN;M^OIOcg7֯ju y\W>K]L{PmԜ k ,X)>lՒ"`yi]jo< ߞ~ˋysPNǩ.m0q_ծ(OhJzXH g|}-(hηշ|몿FM7~XՠF9zJZ@h9ׯWuYl0ˋiCd=N2uRNeMHY3O ?c->dED4ݳE'fS?/K^e 5eUl7=ȚtOUZKP/寵El:`/5}rUA7ͪX[_s'[taYg %_Ӻy$Mi/sy o]7YRcW=.ݺwHܾ;_l׃c-'}/P'Zpse>6"'c]QSvka]4y?}(^ũ>!NbOn+![%M3-݁wsu=;0Z"u/?r&?m'm/T vopZ$ڿDXtM{x@SץWL;[Ҋs 7 u2`Si|ػ' rOK}bp%&Ln0_\TފjB5ŘE-yƯ ./"5N-_>cz'`^䐓M3e/@+N/ۺe"j|1|${NZI6e.W<-i"f캽;Ԓ|h,Ʈ+-XIFyյ&(ۯ.:7E~MEjh rє`͍7_>fj"߄E'L iOޏ}7{\gc :zo`jo=l}<æQ֨/>]=1{wF6mמ*uI59k2#k׬~1KA_V@MUje'=5$}߂+0{8 g3/Bu2dP;~:| ȐnJZg^=8&gaLUhXm|eABumKwB^HDaKed3{bswiFВ˗/֔tsKGu^<9ahϔ9 vbmA8SʖnŮ}Gm) QGbV|v~_2H's5_cmtuR]o%ra{ZέZ_s*Zo/uz@quV?,]7coӖc!FXI!?wJzS>߭E~?|yiCߏ]8ޓEx+8Y[S[/xṭqi -%sݢ.Q?/O@g"WZj{ٿ}Rd4e)iD_O^V0^wQٝ+W6oWk{[ -7\ewO^I}[K{͙=8gS){rO1JO/9`uZ}[{2eޔE3S!" Θ?%oʈ\Xs7mᇜQN ߲cobpP p!_W#zzrmv|`gZ%z[R]unmXU:{ٸMwlؘ!5oW6yΆVE;8}@ͩqRE8#Tq{[@G˟c9u>s !jN߉WE{esMKG){v nC۷3:^c\lZsdܖ߉u"_xO]<z͞yjűgjHoz uDgs"6bvD&K" ^㎪+dތ Gi ?p׼(?׳gfi뻏C5W9w5=ȯ5ly=:W B5N[RG;7ќ6O%]qsI?Оh֣nK-~4f榎طW}4+ Xty^AWٗ}xGû_>,~יHz%fփ[7#K62͘[;h F&v"NBTx2ySwQ5{1TԄ)1xP~g=#|бֶ b<[bޑ1&OqϋE=EtuV\W׿rG8.9k.:9;|J\ѹ]e92隁UkT,p̳Kd53Hڛ_Q6z35ݼrSIzʡC?<ӌGrQ3b'Z²%!XR\kž{qD6ü#@\P蘶5YUв^{|6Iy>{s5R!Ϋ[$%wٻ5cfKUw^ȷlm;$RڄO)XnG2tyف Ovxe7̬,n1\ );+oj=:Jy+C I˯6&=L.]Xw.s /)G9\ʹۙ*C_(a>3[ԙ"cJ{_ؒY+%hKC"a3u`-#yGsz=9`>f#]=z+7~S@hTK卡+_cSͯ G}X>~ТѴN7t֦vK,YF<s+q]Ȭ¸i6{N =`ͤ2=*%|݄^]V[F,ŕc~cW}^^Uv}gM)/Y,=ĥ/=-~}YnIi(kY y#\~PhAQ[Qc%ns* 0$w&#ɟ/|9e$6GSr,XLKJ {`>9:8 9K^ #[ *e]S I͹klW%~IKʮKom{zua#iGҒ:{w׊I%@-$)ủ4s 3',[U)#~{2Sޭ /GT.B׻s=@tߘ+ֆo ~Wxu{W/X=id_DD\=~ɵaK<'׎?`.4#y9ϔ <ζą8_gvoo)~OM!=ovgtIH~J,`,UDlXqpVݠ;_duO3G_;gߤ`!n<_vpb&ID* "ݸa-{W~{sS ~sΦ>3zB]f|08Lz>^2i Gj~jp׌߀{ms-%,ĬI_)Oz9FI㾥mDzxߺR>hO)w<5TcWz|5}ޢ#ד_o(F|ĜHa "x=/ゾ-h>K]>cmsBg5[?HDչozw͞odu}h'BHs<:Kmװ=6I_CmP>{꛳i]K!Y͑Q]Uuas/-֓ icjK=7Qտ5g`OWAO+^}nhi[&azʂY]; ZUc5#<'_+.!6l.gvڀ$LLkj>,gwv'>"&I? | RD~\2 a x**t7V>>Vtj;R+~:?{ڄ޽t}Y=gIwoݩĠ򺭲VF`E!1_Ld]g'uGɞe<rcAq75~wώtYXvfCnh\3T {v?$_%lN'i=-^UM=y7%l|¬û)ySO#&|@kUܵŨ)[}ⷶ6kNpjjK~8Uǝ!>ϽXϼ2Ȭùϊo^ʬ+kMrfnzS*z)y/{ڇqފݩW4ί7ltSնfٓqFQ +;U= ݽܐٻrLYP̝7>8,T}Y;YKnEduN,X>lXגuW wCjX~~tMN ěmnŏ[C14MGXMZtywD\>iFę;tz{ּǓ‚G(ZpАc5u?6_i_ygN9d >an~ʵA9ɘ̜tQH-><%e fw5lu#g&ؿvERcu+7tI{nW}zC(ʼT&e^3v4ۢ/ίyeiۓhavg=gPuӌL4 +H#!^5wO^,n-R}ut9" ڠXWx5uŷ-'Ze-$pAy#$U/lFF/%!wd?Ё M-O< 'vX6CM$ hh Nu%n:xªY(gtKF 9drkhJQ?9~}漰jȉG w)煱+]V[ۏ?ɼaEVo.>;pաAl>8.˼lK;{- ofDk|_A ;ĩ? wiKabƾMɤuH1yΎ!犇y!Z\v#ǐV @磎}|gL7o5rڮhF'?d\@ Y4lmnyfKY]OK2omni/ՊGo4qS+?Xb fͬ+nZQk4Nx uN7.;A&rK*\y=so7#~XF}?hǏ߀Mz_)5?Bïu )o|+55k7L٘{c%1m5㑾bG&H/=_x!F_ls׷Ɲ/A3Bc&VYw?V/X0$\sqQ!ދV;Wvq 9F:r6{M$^D3#]bjoY\\&d/Zs5!dY{?NA߫ɱm=EE˫òJ .u+0G=Tz%Fӫ9$&Oo~v O|v^Xx4uybcÁ9o_b&ZgrX|y6dz:TdoP/!h%u-9lP]z$fSwIO{śKz֥l*JwMCVAן_ruE-1qo7 |k90FVv߉zrwR?d|),nҀwgr4Fctα'[ْ?sdO37~hi5WDiO3Z6ܟ||G3z#FI!$n\0 n!x. gp 238}wNu?]Uw^k=ϳL$T9sI$ծ{2~c@OBmvg^&pQaY[l^ޘOP3h)4X>8}$];9ODn iI Iچ#]S@T?JbpvgdP7rt͟3?PY}Wcar1p)xhv>aߐM7p3Dmڋ)ԢO׍qzJYv*ٙQїLR* oLօKQ?z߫_q:r||GwBwԆ\giGW|VITRX]Dw ׇ$,C޳Mz{)dpk5_J\P dT*k[N5^8[~$CGSLl»~vh8_-_}6ќa+9R 4Ѭ 1 7/Y.3޲юCO4 j$'dׯI;1ie2kތ&c#>_GT"kȰOƦereZ0vM] M)_ӏ ]'P+%bakjHP,"Z=8ЎqղIx}55eUboG94< vNP'$ 9 % 3Etc1OI0<'ϔb4^1=P[B:;W 櫶"@NhmAuk x213-G!߰xe$srWR!84%+tp5g0َxmSz7'dPé,w)4X1wt.KN)J$lH7> +brs54,V̭S&w$e0q;l@DLAc~<](El?jT!}8\p\kT#@ImAlӟJ=3?LۉLlq.ӿ|B;C|/&WA${g.-E35w+UZm2LЃ'Ui@VޙGn&t kpswO@̛`n85ٟzBͷ=8"Wݑ_Ek# >Jd13(Aj\6:q(h@ڮd_8$Ao {PdU-m?xJ r&AB';B@CV=[Vwՠ ?gV[ꂸ:'ph,+&~KP7pǞfi5L0g+E?=&kt}9Ĉ ]>ʰ,fWz}G>ְ% ;3Xh&#H~JLl8 &Cs//IꟑvBZI(zo,_e *̫)u]S,})dD f$zo$ap\ݠz00em u[ݩ}<(- Gs}-eT$:L:*naZfnqT\. <{1.^\/cb|>H9.>6P#bM45+} 0:gԅb[[qE7L.Ž^_ +Lx@WL\SmT ]nn.82u{} )Pb6E3||+-9VO%f' (aIEW"4pWkL"b*zqZϿ#Rs),KIhS{cn+݉>gjpČŨY:[%ŧGS,Oc! >0I "(+wUPUT"˜()<%2Ym2@uңcZv |5sA@ ;'}j&Q%r`u IIR%[$}'lkPb}IՓ )7D#/l,f?$H\~=A-E_-e^5A)W"Kߖ޻},'va ؈?rTdIo뚤dr7-#56ioUs,TY_^^Ut]]"IIu i~pGekDB UW^_`fApF2PFxtZvg)̆cyjx)cjCcF+5Yi |u^Q~/O~9rژ:ddf0qƊnu*ETfo ]aT揀3?{cR"O,(O& ->|$l媧V?Sfr/e|f=*iq%ŕ2+P>_U8oml27߹[ם_,Y6w%♜k:؈g#äh#OY75 UpEpe~M IQr+-5X6r탖9F2^rAר9D?zW~pAv05E|$a* (RT<ta'3y9O0n&&beҫmB?HYij"3W9odYuI09Y$b;>WSx*_њ)O^,i—nD=gEφ6ZR}/ױto#i-b6ƱG2U/Xe-=6fn}| =˯E?Z^k66\">7fƘj][N }*@?8x2*Iuz<_Nläo%upYQfd'OJٛG.E!:f>7Ϛ d|R™J8%7p";0%! lP&>A#jb(hxo^O5i8`k TSj<14x#"j9y eA8 ԲJ"KwXCfbY^>UDF{rY`]5C^Լ|8UaLTUji>rI'Vhml2y$`N@WhoV)鉭 !w yw(ۄg?B^ aB_qM=Z$~Y~EU=ݸ;]JKU鄪ލ]7!B @Z BG[h3OzC#6{\)/!6  ԠFh*Cme<7HL<`)mS !sTޖK~*PZa O+?50CD'=ycSLjԈ8O6FuLNoZXlQm>R{<M*[?|̤! #<8fo7k,zk$!~dǍQNWRnHXdVnxʨ"|hvr7=U)vv2t|ޜ}{n9ym# r7.VFE)huIv#}܉ n hUIkn>Dug7 ;3U @~I7AZFVUšcX0.Zg.ŊG-jVTע[Vm!)Ax5⏆Cwˣ'ޯXP}&g*nhdi(6H|#Nxfp=g>!ڽH)!n״El®;D[#x(u8ONԴVf | tmw偘WDǯ$6)*7kݽgA"W #҅ Z:S/ț`$|7F#yVf6T)ģ"` YAlTopab=M9Xer.]ďl;U<4&sZǕM{]Zz-@YIl\p6&>{f63^t)swPOdK2/ /re 3~R\P8 S67&+]K{G@Ky_Gq\槽_':)!yp{ (Kqj 5Ɏra.z1LV%+q(*i4;.L|xN`ʜ1hW)@dvQ9t  {c*VeRftR"k=C|CXQC^, KR'湇7̂4,ċPQ<}R6#F_LWs _@ 0 ^ a;9:ڹ 9.?RFK)*Hu]]k5ċ/71oJ*qbX>{ei*B㳴|qi-Aki1M@a}sV@\52d-O*c/q (ЗXD,ֽ"C&Ndg,S}y=]j Z^ k=)m [ͷvs%/Ph 9jamk7AnߑIΨKJr871?6}pG4§ݛgS W?i%rw*/lc2$BKޣ7V9פ;(,hR: P׊o~1[>T[55SK-a0̪YfNxvG2د#mh'Z.їCSxY0"jR奩V'!gpT [}FM:D{Jd}@4$39iA.c,TAHj^g$ΑD:#B5# 9 fTD^ڌۻ>Ƒ 2KKe`|&uܬo7-%4?ZsC;ߤ-MhQLnrG'}῀bҬx)=SK_lzQ/,#KӾo9_Z[Uzi=K~#Tv  . ' T@̒m\uؘn軾!8jȶB:Qnӭ(fcc_Yw CR  :VHL SvHSTsrTͼ#ہ4Ҩ98K[ǖ3}򳴓 ~!מO`݅`,?-2&:"ʧ"/uq ޗbɸǝWBOC34[SVK 90\QO8JatMlrh-H(j$3?&6vno8< \ځ-26([bL/Eg1;R/f+|bd{Vvre/+Rnx<1#L=S5qHTt1;uBp@jz.8`Lt'UIO "OO3k<4mrFfBf`ɘ|.|w++mQLɶZ"Vc#1:s"20DdgM@jE{;)/vGu:f]kYJnM9V rX/vryT_څ gp{%[&&tX6;mb&(}oIxTS52;,NLeOkkQ=Ls+ *V-j: 21-͑`Ѝ\G>!C_Jj%hQ!mޫM;e5aR16bI$B5PEx@+hFv3<[ےlHj*v gmʶxz%Kr~G$|꟏iL%1TR| 9=J݄4rG@D^6*> >)M#;Z+R.&jCڑvI.Wpes2. M'ǩOe2&^&%}1 G1}l7^_M\R ,AU >Žw\hGU.9L:A'/Me5*+WJM~|F6ԢLv nEajomOJ2N~+< P_!TA۱suC);.Yu5tm~KV'ZY*s6r:qDa|ų|YDf! E?|Xe_oP!/RJ gq۵eH5&s^Z2D4XL1!7+ϠEupf֡tlA>wԟ=+[opdNfoo4%_MiJUoO=tMS?|oIɐZ ؈U-Y§ ֐ݵ@S}5QPMF=TV#یʏ 2\8ODrhj˛xp$S~mwe1 %{ ߟ a Dc MDNmeENWǎ۟|BWYo5PԿ%RgMf~& .D]eEU:Я%ŠDL_E^QVNԝy=M#pLZ\(`0s5RM;hoM#@VVd|QKt1&foSCb/#L3ۏZ!ͪ!5O_EZde8'leyuӇdӥ]uTgq"N:pԘOeAu 'P'DM@hBlcbtW$g`LtxΤgxMEN+M$C ֯>\=dD.,CV&3P%c9q-9)j ق0ZW?/Epdǵ2'w(wT=;GAERufH߲EH]!fɔM)9]F\i<3qm OL `jzXr=Th#IfBWS.hfV_`f&{Od Ѳ?\:.q4.cOD6.:[ ) :1H (:Al,A!]rn*(̦K,pndx/ 4m1(Jrn ]̎fFs1C2HeR<vўL*{'4_oek0 -]%zA|gh#5GN.tn.*vnuԦ!;{Xxbm^8'Wz&LcDmp8NFH;'\McH+Yԑ]8ď>;7n|]dBgo ;pf6v{NT7Rjڝ;wI~mhL "AhcE;NGs̃aݘZ9>vK7V{WimuRCQv®pS 8&Qzc4'%ĠO%Qe ̢q*U8Մab%c>QhC!CH.s8< ܡߡ$9{Iql(0Vmoq1O8EshW쥉e,K>۽9@ɠ9KdngTcSFߍ kRE-(f$Q7P9nEͣ}uS !hyOQFsB= ȽQ\nt |kz TOeT#Yēcәlڳ>[,HwqсacΤ;(pt[KՀzVeX~eSNO]ZG7җi$%AVUUq e!K!sA.s7u$F Ho2c_9LW 23)/UtU9T,ءkbGIO4+0.}SqB۽ȵVJahLgӰlP gJyr=y岾= 9b[T4 )%Ҋg*ۊagՓϬ}9$ ~<2v7#r^jh&x´j@ ,bױRu"CoՒy~7';n-Xq-5j<? {DtP,3Y%CV[/ҷ"mf-f]];\qү ,PXĚj Uw6vhOajJ5I = e^nsdPY1:]Ea>,.&u돔[9J៌;Bc 輪A df2mD3o|s! /5u.YN(2̢3ŝ(l'5^tP*Nrl ͨ!fCZ_&=d^J'/ʛ!>+/ДW81i4 eVۏIS+ #> Bikn'jp䙭LEܒNJM@G`^UClDSV[ٖũr @HZτ[@1I(N{Zض}ۥe"v䷍4X6I%Q03 f,e=Z18rCϯ-hQ_!rkkQ_0BLNʦa 7iQ^ZV _^ҹE}<"Їm UY9Y8ktEdfP=W`䭹|ؕwX~6IEkhŲM_hPƘbXlsk){Y>b>rm+?2HXы K .+c`n4݋C!b2hjg+Hqy7yxG_۝g萶^ʉ((i.?e&b&iT;n"-$?2UGo6-}4% eb5CvEmC`zHu]vK<(9 'ۃ'  Ki 6BjO<6{*]%Hv20y|7ei '3r16UDUXbg/rTSdMOef U(qhy z)+fj)S:(!*2/:CӖx"G]O #*_`Em?â]ư&A+4B qø m-0Hi Lf PQ,/"7.\Gw&v77XkJୠ#=̠돽B(Oأ:nPl҄6sO86 Ot1,/_}Rm']J8I .= sء?MYd4Onˠ\x%ӑ#[۞,0L_Pynr?ҨIT v<#||*2~Ds~+]{ED8_"n7g5kax}N Dxᗀ3L l!˚e?15un* D1 vɋđeh'>4DA'P)*#G9cfOLtnpwq@&ԭQbp7HO(I!I9i8 m3uF^rΜI/I Kfm?IaaToX簱E*LIF:e&  \oȳfLFs1&vā-F|Y;:ɋ3!In4>NQ/-Eݛ(w`O]\-MRC8_lbP q_! Tko_y[U$`G@юjФŃtwO^v#`剱wnxdUW UyW%XN^p3RV~C^if6DŽ&|C1$as_r<b Źtm4yP,\Rs˘kZ'YS MTv|Vxj0x7rҡO<]NaY-M#V̳u\jn(thYiח6ſ-1?zPy~|U$ѮU oQ)p<|"w `D\gZ\- \ޯz6cj"haΚhwtư5g3&Yn ^ ]¤@t󸻉HU.RkXec'A\y8jS<5x8e/_Rco7tRhs&!!bؿ>MP/BB &:68q.Aj gۚI <UE*{ޤmaٻFHm_K3y[oxY[+w Z iF+M;w1]U\ɲ i+jo5MO~e]ɿԆFNBl Zޚ9kqczO7Q]榶"޷\Jә2WaBֆvD3,VeRbӑL]٨Tۆh:sY*—Y|!,_ Ӻ OLes,Lo"vZ51 /Sٵ giR!FJt;? zEݥI=;/q+gOZf~쩧R!6ɦԼ`FDt5{̚byڌZĆ 'PH5NcAciEY\^悔^ ގq? b^iƯ{w-oYDOܫJh*Vxs"Lm' !h\UCCmfdKO. ;r͊|ƙ)C[2|!W[sdG;)߰ _ QF,)Hu °άKUyrp';Vvǵt:(dnSW>4H>yKu;ZG-\d#~`>/XqIeEyrd%;EjFga9uVT@ mRóe^H!9-kU Ý&]q骨wUe .2!\0t8Q(bkR?sH&llqJh9Ÿ~)sPٶ[޽}T =Tm?(>5|oMAo͸ې@X\ωrmJcm #ߢ^~bRUȣ0Dnp_gc+-hݡ_)CͺͺIbDW͂˕dHS0 ΐJ[*ή1኷&S:Aɉ*ZRLyV(бx8 C SJ d@j꽥kY%[gagUxJ5ݏfitQ7k'늬׎dP4`;^aAʰpPn\03zlTY\ Z:֤ʒ}a:O]o~%MjrAӴ5c6]+ݲ:13=X{n:E,rR''6FDNx unoK (IW6̺v%aSf[qw!.+*g^ ~moAF[yo b"eh5DxNrdO㰩1`yDHh^Rsme".+X}ϫH>UC+?lUA:^Onh/sY;켟R ? >IFfD^+QFB/˳#]ߊ&`H(g$urQ8:Qoŏyɩ#`|Ō?Y( [=)PM #Iƣ>3VD# 4FkOC֩7m [>@! z!qo!YwO쟵"<6&P PWIZ;p8#8y4?mBNY#z`IPb|<@%k%פXfp0 ?"ets2d~C1/lO)Rh$o*[x;oBa'߷6EO}AH߶cvvq[[JζeXt0G\m:>G殹D\0/8\D>\1I&kX4nW5Q+s Z9zwB?6u_Ӝ. V#﨎^*"Vt0>Se`0/~GQ  JK(aWg [ 5IP=߇}n:#V.(EHl ػb_!wQXO8cv>!^7+^3oM4&N VΡtɱe\C@$-?׆UÅʭ>q@2VAo KQౄ=nu$p|3+Bvs-/vI :' އ|Ɲ(vǦ t*TdscՑu|m0\9y{n >I> ?C{C  & kM|.0SӬ|mSQȫ.xg)D?mh~o~4̩XJ{iIɟN)Q˄%*mmaB1hg(3Qϥ@z}ڛCl."^/|m~M^@g^h-PQV}'&#F V@Q|j/j-yY22pl5_,G<0gCUFڏZf*qCiE+kG^Z/'gtlQAHƢ͹3ɓDKR#VXC Joj p6tDꆲL6E8c(Wi1mvKhEvpS'?|$ΖO9MEu B76Xx6t^J^0$2‘kݑ%Sl9}RH^O<\0w7,%}v /ZƏp.{HuJDI3ʜtJGf /794T(h^o1tm+EOw1x u O qΦ11Xх("mCffak8-Fe* @y `Ll*%:EAW2Z U/xQQ' 6<%li p}b2l [Nà2[L L|-`{x®AAG@l$HCg$н̪ي/̿GGwymmhY.ğBZ74Lԥs :WsddKHŰr=a~P(mNƁ CM;;GCt!bvǁXy㷛ۓtv@tPj!"#Cĵ3 pYfPd/I۶_U, 2 ہ{εS{^ݜiɋrc}SYƜА3qP.E[ޠWL#^ϳ=k'vE3ܦP$#2x/Kgy MF ,);0ztFE!p3F3lifY_(l팸M-͚u1ʱ>xC}#g+ L!U~'3xSj+pU< wpn@cų&\b^Emœx2=iCгብӨMA!T*w3q l4+ LEj\ 쥝D*z"M&+& Ƿd5ݯwN~{Fth!+!rkS_?1;`^ƔyB j^]/Prq~1oAoxû2(l灳+BeV>WO~~Ǩ%0mgyasT3?arH,ep̤?;]0 l=\ d0j0n5NJ̰޴4݈SH񄹴n(O-tBTqk0M3 2%_I O-G5ode6.CA47dl15B'$lo?qz/yp6Yz~?"XޜW3@PچpHRuV3D/UMTŷ1Ӕ5S~jxi{t@?`L^T U;9LyͿc_:daĆTqKQnDKn{;KAEP$talG"-MbJn]4 Bf=gx)Ox98I0jWlpJD,#j۹L4ȱtG(+5>%u"a73b'wA]jN΄>QۉET_zTx:W`2ĕEGYTK!v.Ϸ3=}If 8Q+H!׆N;Mf֍h:.&Y wqAgUk f ȸ);iTjxc?lʱf"z,&֗RkgުrWxgwxdMĈ:ou"Ԝ^}7[: ^U"ةŤzVU3YXb{Q([FL@,+yAMjhiCo;1 )kߗ %Ty|aUϴ܋H34c{(X5n,']G?W.n )a#,8O^/]Y{cr3&MoױoBNQݮ8;ߩvռXݹ$*:l:-2{EfǽduH=ɼhIoa8y&&#x[ rAhO?͇䡣qbW}gn\r?Rpjpq YRGmr-/,q4'VKha#-x!y۳nIqb*cq| DE{3RƮ-QDDbF[eJvT7לg8$ҤO魳Vk ]b, 毟=RZr݁A![7'p][]?k>x\(7yɧ¤ ژG9o{w5NčxUTw4A/}WEûPb3쟾,pʺ%kAUEtfi^dp4S: X)‡5Pl+G 0)D 炛W*AXM˰ГJV/}}_?gdP?FZWoڟzr|ޘ3"4O{Ǥ1YzK B\瘷mA8WVuol&J嘕TrB*8RW um;\t,{pE})a*ڤ546/;@cZKkJ\&.š>۬Ib<@k2hU#`MC\M? q˾pi+et320r ܩT{ժ}ܗޕ3?rW~0A+c m@6PK%.nMKvcR~"^1fxhzEBhj{,(3ةwCBtoVgBEI᱖TOF] =D馅mdnK\`,?ȳ7Mֺ5_LCh6r([j %ҴI)WQY%@5'}{=OnyqZɱ slVl"M񢸗 xiVWqXwsqmѨ2+>NRzsr8P*K~Mv\R~Fp 4'<{f;GʶTe` OOqpa|n<W=ڒAُν/^p~v=,n}*)mN V$R R캦9N4zYA&H (YxKn]@Z!Dr֑u|ͺCR/Ca6ɠ˔z=iҸ#y8Xl"ymvgFpȩR?Vls2j! Þd{DnH9xɵ6CC&LN>hfv#4_vTqb?W}c3b M\IVgt2S«X V"GYE:.6/ı}`a{eOљw~+yINlMKͩ]'c3wTU2գPy/+0LrEɸF%o^pgp2ψ>Q6ՠ5W. \5>*,"`N`|{804eyU"V0 >ضzm#BtI,$~>zMR7DE0#h8R b97<{W(LwźP@c6 +[EIpn8R|èiy =Dy( fL!G[]^םf-;13̜]ȍP.Pkt{'4f0Qa0|Ӗd;ޓB^aA^ws-Ϋ^n v$`w/ :jB#tVIkO\:UtӳXAĔ-™g&6!UsJID+% ^gs\!p‹)`i ZI8.(.&z t' Q!K"8Od>. –{gMax@̒oP -f{x?@rJ1ὥ'A dif 3kęj9Xuk0^$LF&.4K([lUw)ar%Z {t`Jr)/Vzky9%l9O(]z*U쮁O6^gҀA4gFA^4Ko.4̇\?_6̯bd3j2-~vɿf5+a>{w\Mqe:תpyffQtګ.SO"AfυvwE]/%L*㶽Q{_/ƅA/HmsVU} JmR(⨥-vunhk:,s-/@oȪMW\yM6=E$) Dw_?ao׸%Xl{3bŒp+u<$Ce'1ךy:oh/egsjS, 8uѯ"wCJaMzD,@]m_s:M=dƓ{( 6T~WmFDuON,YMm g0R9V!8WvY S$}w~O(x3cWdvk5$N.+}ߟGE^{Isj1/l6?fȓkg}uY ztw3ʛ@$-wՂU. N[<RAّOW#]TvS()!wLJu*-A٭oc  ]}io jYdODy9kS}Gp|a&@t=`pQ`^dG-0Y1WC0UJ ?/6ί ݿ3ŷf5\ɛݓ03R4 ܶ,⋉lP ||4N"PXh7]I@vc!%raٝT@ԝEL؄i?pF@35-bkU/ڮ뵻-*fP͔T Z=4c+QhxYNH]y.%3E(3jC&#E*{r#^=~<.4_iXIvcNO)@("SΦr:+Hj{LU.s{C^'#\>r!Gscuݢre~/~Zj.֔SVU 64b<]y D:D;PKM5&E^JCnw%̽E/bIhZVa#M#9rz7]qϓ-_38R0 lr ˙kCzR+:BGLqڏ*ŻH)qԮ.#QpA]>ye0VZY)?$A%P{An~ˍ&BhZw[By RR$:PqdDJςW  xc ueF'_D3(~ ä4Ph(K*^ۅg ae˒I\3?J*"]=G?9>弄s|eGrU ݴp|_/fojm}d2xk=Կ$CS_ll:ńN1PcLhG(i8"ȴu/𛼯fkV\¡]圸wjҳ ԍS)p%ܿzF!$N*h' $(n4/f ]&Mu>+P\@ äʁ)ꪭ..Ĥ&Qai^agغ/F©]+6%_xtNrFDpV9Gͻp k^kʙ?\t(L)1.Ӥ˘hL{'숵黆"&\wiϤ5:`;Ν~_5u0: QV݃ޡȑ); /i"Wc[v,Qd Y'Ļ-fmJzAn?{g5C5zs BȻ7Uklu'g|Jn!;%m ,Lm1 L4Ȧ6Jp  +8pxԢiUhQ4Nm~c-(akЀmL77E.YBm+`]wPLSw.w;WE,q\ٹb:HE/ZЩb&]s)qrrwH=ӡbdsnzG!Q^YLQ&(Jֹ`?=1*^\('SDԲvIKL*jrof(  4;+ 2 ?0\/;9zZvz7bfSRz 3)-}nik7_:gf,Uuv0!'";S p)cm!摱cOGb&KTC}gx\^ikLLNJ껿 ID8L)1|ynq#'CHI٤|.qX[v4L:\)ap銇S2 Z'`|͙v}B&!-ݍd~v*9E E_3[083cF^2 ^S^*?;/{͵q>æSăU*5IUi єRw%U;F1 .UqqoV2lqy\JjI"ȐUUx\hwv|M'l/<16=y#Z_7؉%c;){UVM3F\ϸ<:N/5G2]*pI-0Ca? 4~xW>%8r7ӎOǒ޿71;Zͭ "O8mx9/]v&bM\ tLh;?wcwJ7:=:$^"W=Bd=Emb9 A>SOvgk,Aqg 2|?|3gi%چ뗹l]^4q-,n&cON8rp5D~KoW ]>abxirZvǐOj Puu-aО#} )Iu0_Z"zx[fH@;^1 韉 Oa5RUe/ ,^XXke^[.fi[\fn[e>g^#s?6( wfXGON5{G@dC=# 9?`v1K^OF)i67I[kQ$#F$- CB;߈*yRG ҆r웷g{m!}!T܌G>]MK.ꬳt*JuQx~w U:%[[1_Fs H"M>EIfhҽuWq*c }ug>6N3ZAd>Z%>P( \VxRZB1ƺaeWO|ӟE#EjgXB^u,ab۝x82408}E[ Gh T:X6ccuux =BJX9bCJD4^<ܔv6c# q2zt r j,p7R7\F_9;'/RF3a0['"ߥb<l9glV;miwӄFHET1%;a+U)^Q߼:'>_$7O6u(KX`!؁RE7ptm:}RYsQ?fXQ}1h}Y񊀩"ɆE#GC=b&G$__vmO :aMhhPmeu]s$<<pqo3BmhYvrTH~;ӍX8ļ1j zyx\e&|:q5j7פ$<`?xykg3aKv_W&IFC&.Jy͍qvj#@2f:1zg$=ͫRR!^`0`tr+| ~pUӺf?(=m~KؖT8{_zg:vjPH>.)OϢփ_^EL?h&UBN~ ^5o8Z|}rBz^ߐϳ>wF$tsotf~DY"(cvSQbx¤XhRe)'WIөMx].<|sdJX\,Vl b؃jPaBK6`e0%ifYI|۩UKTV5RݶXcI`}3ѨOOveЕ@wDDW8Gy &\qls-vW\7!\C5jGBN1ek2y fݝucVtRVX,\`F1/o_2wн6vUSOJ]|9oY Q]#j&OʠXʘ U7.q>ͫoT%֙Lz\z8YS-ڑ!*r~ $>+)N}8;kM$@}455Rċb7G>>rճ W[[7s%ୗzq~Z1l=3%cZn@9Ák$œ}{m4{ f=јZd*es :;J>nݢS_4# 6)*Q;c ;:|Õ]/|,TcYmh@(ĀيN6yǢ᠘XW1Xy y'Z{}C.r6԰~mN&[??y0pْ.-#ov'Pd.pY\t@%l՟krT>/r?}Zt>2B /U;ϝ!Uլ3WE =\Qk 4fX3m[^khAY'vn"- /gZ%oz8ѫPr6u>S"uu'aY# Cj&ՍMKs+\ 2`pRN˘0}{%N>(y1alWl.a(ӥN}\=.7ۋ}uD\z^8d~AI3B 6:e#E#%LBBl]SnhGO 7^g G΍<*yekSj>u^Lx`+Ή#\M.WIzoi-q*'¹;g-6; Cn(;zϬbaTw 1'IV%m;z]di}SyNڋi(o n<@g+߀Kjx*8UR># ^we##;-4L"նXbVJnh{Vtl?HcF5g3v\+oz- T'GvX~(1J9FDLo~wvݖO='?$ЙCΤjR{]k23ʉxϡލ|iEY!5.|>֜S>Y<+01}LYg ȯ[uao_hHm^UC4M_#_@p4/_fp٣}'Gx ̸Ya&#Vwn\0y!X"8]C34niɎa&_"w/<2":(<$B`;Ha`gVe|ߌOB[r,Ui ȵ?kîtߍ#@1Kncv2x:~#NzSR5T;$=g%uW)Ql\Ki:C}ɢETUqL+3LI@!v(MJs0 vɥVW!~tYBBdQY7g_VxMT}F߼׷o.hb`eŋf?c<Ԧry E7#- T  GTqR?+rޔ(-YyeoHW郩 Mkc4ﵚhLTMNQkr+G+;9h NV<8tX z@ż?QFEp C͖oύ~\uGt~x ;.q@SʙS#6+x' f~dm[5f% s:0,p!uKΞثd*< lXLrֿ̒ɾ^]g,̙1 ٹgg}`8st[ee7s!,ߩBNM-m l5spM> ?lve+M zPXzt&@؋_ƜbFmŨc >;$7p^S(ft'黈}gR[Hu%XgV:-y=0DG^Y@T2X|0HW)r{υպ-|mZ/Y h P#/L x >/b;nu0!qmK~}Y'!gTǷXN[(IrimꃠK6G5?.6axa|i 7&\lcv2NT;Ml*ф2lL0aϊ?ngvouMi"$ԑP йR:]$;޹ ˿;\_lk){mC#yn$u+Rߛ&=T3ʌV?FNj^0T8JԸᲿttcIC[H^@ƞqFVl纗 mR‘ EAn|{Mm_ߎ}?.vs ",= h#xpq576iw5xɃM H6%{' Veejǩ >mk7tq'ֵ=L G4n|=[ey,RY+JE_)# [^ A-w%yS?*"3|Ut|Y:R> '$#KUxζKxbDQu/RD+tO/)7ƏZD 3.b+ɳKYgV9HK^ʢ)2QRhûpACJ&Ø|!-!hd,{*}z=|]Rp"):75Y ca*hwj*牯}IJ{^}08!:wɬPVBZ6: "+̹ĊLajuXXHDK ~DȖ`}PÄtvS;E,rV./,s;2d4n\.,m?7 ;bd~^+cW?bW!\bB-"5lw+c9^v?a4ү 4:nT@<Ϛ@)WPU?q_J8nGdv{g<7@œzI vgs!N5Ԉr;,9_~_[N~vR;/ڴw(+e$ ^lXv7e ꉞbѹ(IķH7sP3".'a!G%\QĔCc^ 3AΟSF@+yd 1Td'ȷ1Ӕn{IooEX88XOCl咬L@$\챂޲:\nLE-h'c #ކCY[XExRpy^pZ@!;ъBMso2|ό$erfdL*V= Dac@eMoP5LN};7:d#^Ö >Df͕$oyiù{9fM97l:~'NY E9q -8{> 4yKP`p1GMqʱN`,Sx9\:/G6\]/P{˦S(lv=2Zs]% 85 3Ft#4B 6Uy =6;(-Ε i'[ځ f_r|e[B$/+a|u3DǩpTX'c)xSnhFGx<:wMJ).#^YSżDo4\F妢C'n+ܗL7LEu30ש#uOۀj]^*XS|OT.٢ϐף~)$2bUr0Vu*5;`;s3фBtHz~g k&?`R=+jhɾ>ŝvI)_d;q9 )S^A a1cU[ET,|Fhzum#Hez4gMVh uۿΗ*AsZz>ll:;4i0M Ȁ.{:\^s p[sW%yq_/P@m7- h[\pz&h(e`D kNsD$sLQg8#kcj+o;g_q~ظ'ogD ebP3dKO6i=GmzS06z`ޖ0oo%?ܢ&5x3Wd9cQw}$@Ƭ#=@GxS0Oe">I}?Hէ樑c Υ%--Yk$ay(r$r\;[71z#nR3:G_/y1 %I3D?D _)u;|@E18:|dȂ`-|՚h1kAАwvtQ0[4)޼=hpr(ۛvf%"q7ʮ u4hU֔8&u[0"/w#F\(a\S>$V̴Ik $et}pT4oڑH|0rI\  ת6IPW*a(w&tn֎XNc{!χVy.Pz_<TO<JZ]Ř\[9OFb9~/wY?}?}]GCȽ`;!3tvg >{@|M@'ܙ~qwGX|0E s_ m Zr׏<:{3"mUBtv?50Zu2SXԗP1iϵN%~626fe :~3ؐ[ й2t?D})]]#9Kܱ͔0?I(Ug<(C'; 涪֫d?i{0ēj̤fkrjؑNP*M^/Dٴ깃n;!w\onem3ZڂU/0Dۖ3(7 5(1_<3͹r›[N_7 ۪߫+^M$`>*Vr 2\p&{|4|Wob!@wad]ZQ+ RQ_S^+'C ΙGWreϧ#DM:A$ԅ3uIvpVl %iKCOulfvY릣p4=󙵿X31FF1WY)yr@΀Xn7Ǽw>|}ҋ GS,l^VjyQe @9a*}CD.'_rwEXn$N3]Vva"Q wץй~"aU5(&1nH j5<7ۋXHa\ r.7zhXC]*D?{{Yye&?豮G@l? xkD0zG9WF R6G|OG% >㏬yH%z/aZť3jTCp5l"֐/֋NҏA4?pѷ29ea[mtgޣ98c; vQKO 36yG7J䶵y^rΥo"Dkp_BEΘ菺?h7L=ϧn7<";ۭ9ek 7wU`8ķ})&ҮY.5GR !Yƕ7ϫ >@a*j!v a~; #oX˔>pmW*kf.{B?D Ahv%yC9ӷ=ǖ21nܮm[@p:w|ڿ#G^}Sv9pR!U Zj~p%FlSf|0g.V㱏XfƫB)'NG~{q;* 5KKKeg y W%`NeMMǖg#wsfˑwJ7p?s>e17%p xZ.R]ܩ4R11oT2$[^Z̝I4UAC9; S$+Vx"32bf8 Wכ53!yȶEUu_i|5 6TDz&< 8gl}Ó:4\eArc[E3%COw[a fojnWtkȗ}8$1o$9% u* 'd;wwkےgjꩼ(gm&mn}[*wgv^wpIޮC)ͩdsg9;˿zE,W}V%[i'%j Kkɗ(p8G;Ӛ9e ;Jq 8]%9T W.0]!ВE_>t27+pIFL9]69;M6&jk<2(Ah r\c zvi̸qJ1WDo%EG kii 9RQ٩~ ;q^m UKnB gr# < vܛպC)8JSImGHDUQL<ʱ%vɞm鸱wAa=ZI5NHWvf_"dZy$uAO K-?^Գ>v1k8g__=+vھB̳LoF @["yQ M8F &٥}݁p)w\QM@\Ū[=FGƗ\#;:=Z@ cLqޗaNcFKV`M=)l){t;PKxJH H(o"hYga: @?F;I%aCߙ[w)OZʃ=/>.vCB.uT|O,SI6xn%c>)8s۰0C6x21Z=c|ggñZzbI݀kf8gůH+.t7T)/}E^b"w$ʵq8d`#BW'ϐfsZۗ#G).K&iX֭XU@nxwyl4ʩ|PJUbjnh(4onFKۆ3s4kGPag  q%v:GY$|.."tss|d*t֟J:vwϑW* fEGOX͑!nS[7mǎ\&}Ù2i4GNtC 0Onj9yhθSgy d `I?㘩okө z$@L Dm;f.r7ՉۂȆ}1dV7^*5=aX+']݈vXw|ݤXn0ѻܞ˓eu.ԯ^뵯%*]VAc&:dտ$$x0% Fcf߼l G卧^95XaLG[_?teD~urVq:Kjq~%wN v!Zur5iH唗fR`*%UNѦgZA+XSmQ=*~ 1˯7s(5eAPogANf~HUя͌?VƖAo{Vb:gY9iP %8r7TqB\bm)Gv\q6I19"dp3/8܅[^ft!:T|;1bhbhaIe3R՚_TjL0]j<<; ҇VMBaCOUaA! Ź7\!Qַfbw:kqg c&jY*D4FzQ/ҏw*ЋO~{ȡ8oo2:AOH73+hc6O_JC RdGC5"_۝dΣvO[+S|mefdfV"mߴfp1O.^w;< '"Yn\_C=]LEBL-U?,ٽ*aNE D;~wȗogaSpVo(M]jnC9b 3+c6L nԷ(j;Cu5n祧{;c˦˟njVIwWm7FE,>Kh["*Ì1ߥox٫/<*0mF(-iS['ULsW 5ll'a:])Yw,O{Wv J d>:<\xG~ >7݄k^-"{'jY\5F|aujQyoM|0\ZL*ŬM[{ytvٿs{&Ɓj}ΜNIس 5NEg'GyD+10u1 ֏o> bdq%O > Sҏj/Cy4Ni%xXy%uHKS$yY)͵-kq؆|x΢a SbwɆ~',zFlH&P)G"":!K$!~] ^*E1}zWmyB{;@]c1o1"w4L[ Yw%e5^c㍖ n9}?XP]}?^2岟Gi0}_Fr@C8߀xQcO]}PK^xB{I}.?VQnÞkR өXS5쏥L4-Yax2e안mYBW M}|~qP?W3@,2Y!WNf^tEe@`Y4<l'kѥ 9jҞA > ֘)ۄ} >\ٹ@dR ZV溻^V!gVgk]|[莯g:PYԾl`,g&)! rά j/Xf(w;A3ޔ< Ǹ# @t f: P$X*A.aP)@[armtyѳWag8wf*NTLIּh刐ܩ#CU+ߺ@\63/K֯l];qOHFo KCUvzaV' )y봄#4?N%4q9+F y( -1mB ; ل+V;K)<<}Ee3ck: G& &)78B]IrNzO7 r溂Zb)b9u8ֆ"]'Muײ.AAsͺ7E\Z"WޤLrXF 1SfndA \AMKN&)inC|,RA]I*M6#2]QQIK-g>8;Ijf`ճ,FeERyZcO7$>rRj'kFw*7^KkH}ӥު+?E=Ud?1y |j](dVyE_27%;QTA/%{E2޽{>4\j^P JM@&|lx94NP Ik#$GmuKgQPmETqi܄j; aqX+0̔Dl"Ww#xRJ;SEeGmې۽4)Gn>I "R'&'`S#UZ6mٽb5F@1yO2•#Q tl;5\xW)tЬ # `wo\ ZO5rF?%=t ; פO+lȁj[p U&\%IQE0ŸEXMuF8:ӎ|)~:φqa=F8rg6G^g.3EkF,-0q ǵ ~V8<EZiz^ꎆPJ@4p7Hx@2=A$m9b{*x Z;ԏɳ"t]pƜ,4,؍e«`ljVɪLf ,eaGIE+$jh.aQ15n'b8n/ė\՛)2*qrJDWpXnrWk(V(};;VW2_MhsQ'qMMn{Hlt<>3VDK.fEݐ1#A]sk=.lFw)F攚/5:_}#we 3g_ m!O a.xou m!=lLKucLJc2 Vse\_7&!%zC1M5SnZk.o.?.GIآy-zHU=Q(HO?)=*!F${i{jMX"Ň'=W9٧73@T]FT*IB5%-ΘP? P yǣ'jBWO[򗭎]?gH|+0HjE6-X!gb 2lO뛀U_@ZHkS6S&>%J˯oiT ?KNmK&0 o䙟/z$ 2))_p=LZEڌ!'NwoO/snDOlsTўkj7*ȣb>('˪sH 6R,(d`^f̳ pxyuI9?ĝ{MzfQsa4/uthrGT3s4m٭p$hKhBo( ]p)MdDHS!n42䊷Ag(ˠMTh>}K8VwߧfˆRmtG*uTp׍/9 _O Z CW6mV4Iڌ {I↲\Y*T)qQU}_alf߅bnrA22hk*UOl ؞)E}2L`-?umh<`*J98XcD 7 ॆ-7T~Eo:ܠL9 pN8|~l +w8utos ǽ\ OX!O3:ױjVgWɐfXѧڎ@%UQV EH'F Csx`ͥuB|yc ?ý9lTvEUTQj1l!7ay-Z;MtKݤC\>-A['9ȭNGQӅm0ŕX#ߧxW6QF0qh &8o̸=/^?BӠ ޺`j1"U6>K'~u5@BȕѿLV`\-'l,zLP`# KULtҦNdfttB8,KTGl٦aA~Ⱦ3g U D>EV ڷ`مt^0ǪɸYN|؈=}ȦO^dju"k?BApW=8`h4h5iT: >rxEÛ_uCcc T~ߝiJfbgI>u&n*<iI|P_"6& & Y) P4B}skȀ+x~)^],3 \#* E;E"10l(* wx[wǬQJ^:&n MabѨĆ~pk.h|e>%c:^̩_ĖӇ mu@eBAZvDUAY˞NL/JF;='j:y_0(KR4!m},ir4#o||W.>fnp))ތ7-^HQm; F3>}x|aK pw2rEϣ#mJnk&n^`K@ +Bq2JOxW@@jxAnh2R밝=g)1tE[Q禀mk#nuqeVY޵ *ػ'U`E(,ˀՠn0H%h Ȭ &w:pTA?*;7e$uûA!ըD.n]3u]e .-|[2w}'7kfw.[Gnق1' b#&7̠͐Â.c$2gڞ䙉c@w']q F*e``AXӬ[obK׆CR7n o wR:%6a ÐL\jnn \_)?ҎXf>n ۾dGmp/Sň($ۧ?-y@6)qye}N)v{C+u_i8Rc_Iݒx,s7"<\ ZH4<jE!Vo 8#Cz%̤'ݍ + eI]ebˎ#qe ?X-RM+TZjf',׷6Ǣ%$qcFͯ#ۗ, yni=7Ȏma}hL gaflيT㠭w _ '\qё~>PO3V1[ɸ"D}8kg) uLWm Erw#?:p]Zu@eO, *\F7m&XH+S /t[rH%(|\|]A1F!3mM2Ya/(ܡٟ(7 3T~\t{`_v,weG}NwW{׃|XM ad>KK!qda̍RlfxPx`{N 7<3-hZC +)Fs%N5ߛk9fo[+.jav 66]oĉT ܽ.oUux^o.!0ܨgK,d3>8@N%jK{*ŀj/r\nR yHg1Ӣ LE{~x8$_/98{rT^ގE5E6dۜeX.uT $wV6İ%]=r-CTO\&C g {&Zx7D>M×?[qph{~skz!3>{WDK"f_({mR*nEdޝ~RPڕBn+ad n{d]6?NɟGD̻ CJi|O[}7Efts%nnQW8Ô`ux%޼Hp|c}k2 2nl-%1DkpAky䕑6=4Ũw;d'#C 4/||w+w&ZA%wn r6S {5.lL#c mLNmB#96LuYYlx~7T winxjɃ84㒮x%x;TCbU4o!Qv}_HY)Qq#+ N@6Z҅ /Wt7ڿBe^ly,]mgEjfJ,lL՗=MݡNJ/ɀ5C^ZfҔd2ՠ1ɐ+'#ENmX3>%$>{.Y\CUVq[d?L'UԈ|=v :ڲJټV X'gz ]R65KEu,UV)Tm졢.~bMHp*V|IL-G>|4F2jו;jkcXB_l?ˏ-ڮn޳+|`-(fb[L*S*3w{oٴ,1=CvLDɭg,Vaݶ\ ۉ!jiBQ۩?O]C@zUA{ƼqO<6SʼOϪِg굩K qJVv,NSN.Ƒ!O ۖ}ʖ. x{]=Y~/UBhODn`ux b fPraKvC/~xbxE.;#u𚘕(j,Q'Iqh'6™#?/ q^݆o?@P@$͔#wIMRuY6^_Fn5FH(s8 ,ݺą2n:aw;xϩƴr&ɳM:]p"4'߃k<[F'b9/K KpVp$°.A| NȏEcW+lۓKw$i!)9F*ICm!.Y-iDd:ǽͼ(m-'_;õ#d'&vv6b{/c U=b Jz|ouIy_>m5(jDi(N#=FE? #ovA)ۿ+wb =Kϸ,{eIJCT%^+ TФ ('㴽c3T\veeǔ5y7HgGG/?뤨ۥ/p )&ʠBX' K !j09VRƧʭhC׼aZF$IJ3З!"]C/ v:^GD5lq;63`. n+bH Ǟ_|oc|'\$Pв]PWY\]mq 0z^HXxx;LY"1oJrOæ-'$R):?zhy1+ۉ֮hji}{V޹G$Lپ]UF9c']?ɖ |E}-y2.f*7!k$ '6U3?lB~suZ}{|hTh:҅ӝεEoThKq۷8. .4|y17%ٍ(@2$+- d}ܑ. !0[];k7o\AAy~SAg\4Lr2w')41ՊԾy-MV[ě׌ ,jgH?2f>9ۢha<fCQM%-Z0TFQ֛+BUZX8{cё"1EhFV^|;vK)<Ѩ +{$A^֭xq:U0&j41cEtĉ;Fpɩ2zHQQx͘O}_?| poba ٲaC8;Gd͟kI3==M0yXq5`exWx#Sx#!Uˍx7%o%>;D1'X6Z֩ QJ㌰7x.&r.|'/ Dzk]`a5"1l(Ep?"`H;"mTrUG@Ȱ;fR?o6Yuw6 7{wI 5iS{(d0qXMQq( 9 FVeLiZ^ᮨ\Z1z) {`ySt47:55ieJpIG&W7:eN-Z!FިtYmxx$Xm>~<0tuɏ%r'B 5U&˜Rʻz% eG)m=Y(<&jFfOTcmsRxsY =J^kPQm)uvVL@[scDF_27>2rӈ zl2rˮS'`t Ţ^9! 4m]pvl Ǚ_cJ+赭e\@lRoA*X&`yE˫nn'3ċaO!gZKuX4M@PCDa%|m+o^噷Y|~|7vGXS־5YbWdqTsO=&Z=$Rpܥ S` H l(žvuѹ"Mԃi ?D `Rg|gfƴCseRƥi" <.fwLUшJ1ÊW$vu3fexJu9|O8P=;neؐY&judEVe_|kH50KOcL=ҾyF*xLyF)y߀LVw0?|U5(K~J=!cۀs 3,rish?)CJغd)m,fB^h`!M #rcO3+$B2C~0,Tdj"',v̯6X:6>js)1v>yXlʿ3n/doZ UCM㇤+rJkMS/+ \U~?.R/$*lry&Mz.oͪX1>c;_tFV|HrSm!s61PYq\REgW*x r Nt͚ҡ2%+,yPf5M8?s'\'Pg>AO%˴}5M^`ʜ˶idț=*إYK]wK)Z( oܷz-wIn3oVyW5ZL&>z\ajmSSUіj)n}e'Au 0ERfNxی;]nکYW*ogR Y9eqg B^֑g8HWJxK3`Jnbm 2+1Ά;T/ٛߕ{zu 46]^:68NIA溽Mjն r켲Jݨh1/.ʶeH`:к R)lz JS l~bGqXԄ?XdPšnx$gIڲ$b"~11_j>OF$9^9'Ϲz u_8Y>RUy \88c6T _'9TCN(DbcrC; #;L >4#gvn.q̞ᨥkRVctR6e`d'H!ehGrncw}C#;F&Qoz0b'DY,0ޠ-B}LFKݦK9Pt v L5*pJL"*(6&㯨NGPveIr2b:42D16V,kXMӌ2=LOzџbc!-²< 0m?5`\ t9fV?47.ub}G[Y/CQƣ^L;;>SN&8Q~_H&jn5sޟ_>1=N*g e`%E{Z'Fa@x maY B:nsFZ9OY[4%I e7d&Y?JeW|R-cb T62(8C]'ZqvBjR}CsKGSd߂* +Yۢ+E查0yɶRYvR]L"aU<)Y;—3+K>LpCLO=Y^.zGB{'c-veJam,t]q&_ʝt ~ð4;^WB OEF Itt%*uitGt%v{}x<9T,yX)D%DX3oTMBu+;y4ЈC`*9qTp^V}} futGPgY:2uM m:5pսOI+WL&ƻ\ _)1$YgD9}010"6LQ#B%yLG14O$'KRAdɷQ¡"G|0EAcpj.ԇǶNK/ϰ+o[湒AgDm]ǟ)(Ńb۷K˸W0E|F _%abeYdnkhDw3&%!T9:+Z\՗AR<_ޢ3ԛEa7LqZ?~%Rb8@+!o!"qU'tE1%ڮYf cT,%!DW9TRS.m7ADqÊ/O<éIb%'d鳺;uK}a' leC*mcCXIݼGwȞ{9,w$G&bJE蠮XFe B0M}G X}”Oza8 8ps6,8/7XgӱRx6a@a|1+U%y5{~S7ԉʅaM܏gjX>uW<8]w"3J.%H"g.ڔ CϯeYC8ЯDž&Js5dL-9Ebɖvc t|^6[TFZߴPjIRNOIUv3 .( h;c h<9]B$8W݉F8,d A=]5޼t|xFpj->{'fc.Y`XgM1VNjݽkf9wb g๮w K~ żg0RlŔYFX‰i/o5m`p_J?cS]hbd(So#{d[U.'Lv|:!0V%U^c*dt>!L< {Tօ?J=%r_[ߙ[im=ĘoZcj3sN&L:YmyԻɔ|#$ 6-;0R8toX4uL<ٛt Xi{^K|CgOa\nn}7;fa;D3srs^)P%ȼxf`K$67)A>M<_OnHxMS0n,O[|11fXq{|D@: 3`(³'@FLdPhPD]G f`"؄Rz˯2a8U+0cQO RψwY:\rr7heZmc{I9ٻRj6EϺ,P]hC&C$n}h.6.xI35CιÉi*PvȺUԋZ4|$w n{7ِ~UjϗKtQt7ݫ "OApq;|RF[| xE~*?D)k)hhkbxAs'[-毎2}9@\(9m}Vm6Ԗjylc*8f0ӱArĩciۑ1JՐ|;%M"a"vųFp+\٤KSڄ!A/cmù%aZ4ƭOpa߻muQn$g㇑ۨYF=dz`E/g4j,JJA|kTQ/ a.`v}Vq"x1WY"hhbNTɠ96bF$|mt-/ Vjam`DWF7Ktp8'/9cJbz|o[‡#=ᶍ. R%pck!cp qTТPB(,q3}[ S] =J& ]6Wq*aUbp1 wYQ(L?CE[\jӎ>|s 3ioۘ,)_3%&,>Ixp$:2ȁZ*H@pg*h&1ӣ@hKuf.CS`^dGgʔn`,;}_۩-le3G@Ie~RGovͤ a!j屡CN*|Ht)'D5 EIm-q 4DKl&r=+[Lm^#YHM.]XEΆnbQ <-nYԳ%n4';¨!rnVv ,lbP-w6uuv'aVQ6pΐD:4¬>LG6yL\z\{sQ*Ž' FbAΖ6ϱwGV:_arb︽@s-S#oZ PjW rwpxNu;>\KЄᯈ6]FrP( j23#0k9Nټ9 ݹ biyZ;h?L$waVPU@Y 5o?v9.9tm.`Gw-UW WnK.Zf[զoζ; ePV^f U UHPJqΎOK"vr#EwY/ǥ sSS9׆~XQf\Ә=K09sh f+TNہ *_ov@<~Vb k>Y.Wm6wPSDV=>ɣ؞.{Y.sA}:GQQf>lۜ Нmhh+gKe@/ծ[.--$u l>\㆘d.!* gf]U!<;w5UYNG[5]BOYB/ׯ{>p"s u!@sNI42zFfb9 p%[}24(k׶bRQ=,_G쏣8U*{OH_~j>Ip[n~!c2彺SfNԅ`tiϞC& FlKr^iI&M^#vuI>t$3]ȣƼG~c W]v'rLSeD}; s"eˡM#1UiYګ6}?-$6E06kDzcl b:4KF1%rw+UC:=t5PxJPXCp4TpaYĦOwWNP`bL`:܈ [O>sEN!wRݴ/In\Qv}KF ¢??u*|c7ef-^V{7)Wk:A,M_mS;e|B+*=3@% ᕔmjFoBuβbQm#>Ys̆-[ TkEE٫Neei>qc|_(Nc0b^1T4nT4'P!y ~puQqg{o.gS"_? T?Dg2Ot$uG32:\:qKiޅb((\Do$Y& V/݃ƺeFvZWШ߳&Uy%fS'x&[5>C K Mo[)}ߴx?ʖT/I{-)%) #=rux3!_ dKWtS}>Mk: &# (zx[iw:;_N 㱙a?he epTXʧzBZq2sYYhD!&wFbyat;^/:tz.frADǘ*hj<9NYa )Mh.-LjP$4o-TBA€v" DJcJc"^d)̚hRC)? $KSY ʷ7dk?!^YP+%J?K$r|b_RΟ*3WMXudW6LZК1sȆ 3++͞ɶ+C1]dMPdCSN-+h`ujN^HJ}m` ^*c@ez^],_ֵ9&^L$xu<5|B&>qv^4op7|7dH*r{6YԤ*U@nߕBV)ܢ:$_OdHs뀃Ԁ`f> vU\l7)c43|-{ePl~:+us]W4 :MǺ n:TҦ@`)bd"?\`tn@UP(..׀mxhu}YM 2jfÔMKhRFP䷏Pe`P52=TE]tL12c?SUgV|v64|W2rԺ*g:cL ͟ߍx焝 B?".cf%q]+IM4 g;89B[)Ξ5"_jB@, ,ubcބ$+]y]T;-/B[ZD\\nth͡50127^Mw, !o RlZ5ǁ ׬Uz_`bz킯Bz8?M;qgz(9w9Y7Vw_ֹY٦GQzBYɝynX}l8[pdjad̈́JRUqA¦&Hjڃ!.œ^$P"3"30-] J"5!UpRwz|e$}¿fo'_0 -& XTj)lJٓsukٯurgs3E$-~O~Ο:.|Ff7jowrś!;i$904ua\"N}~ѣr5-(PU$As,u|Zd"s,Qm.W͍Z<- + Wa~8Ⱦkt@ܐΛ=npfvn<,zP7/v$k=:IP҄\pB%[pw2O+ƀ߲Z&&Mw42sEƜ OegXTri +`ycnh4DsQ \$m __֠;Ba sP^F#K.G7-)S/L\Ԣ6z~1cG)oVyZ8eh"niRw c#L]~w{O W%LQO;S=/1ߛ1XY˞t}u堗L:79K` XUW+/3EF.pV'm}C0`Kon@[} _5?]M,{uB]yUz3;+t4 sTLnϬ'*`d-pᔒ yjESoXddDj8vC`B?PW3h8F6_6b_ƣ̈Gv~Pr{}(@caB8&l[g G2W`z\0ŚQ.8f@RުبNiw|er-Mls&Ko<yj-uo"|1R9DIB耍iݻm=i'|B`SM{Vr!92w }ϞOb@[/z9*ڬN4dxDUqS@ q^wz*Y[٪]ْ-Q{|7xjѪf#VrOF/:ЦY:RHԑN"_7/ Ap@ vhRQuTv[QX8GS1ZoQNi[==Żu"MtJ mzsXvHzrTNzKɲGj֣~Æ({вIM330*x=xqCIt5 aF)x`)_l&`a5`]a5N_˿CAsqPhmﵠ,FZØvYJo(LM 3܈+TZC<܄ch=N.\ѻ.[KA<̉gbAV._;vpsD+u g EBň->% LׁIJ//$sw/}26:>48S3 :K]}8ڐu#Y>+Grm63両'ZJ5nfRrh LJ'4یrǮVqܲ\d @#H]`^ߎ\t( B/gD G *sK$qv76ZK_2nIv$d D1)ʦZcbwDb ^"v1TwiRf#~/2P76',s W,k/Fb'ldDj%28U#p+[!#(GrP^C!L0E~.ߣhH_tVǔ`-K!8SegV@ԱGxglcx}{ڍ26 za}nkhh $_xصl'`C!N0Xf*ǝ$)S!} ̪٣i9C ̟jτo\ ](@#]Ǻ?R 72'4%^C to['\vDa1I䉐-ֈZf+>΀Ga&:H;ZMH|9,B]s ,HrwyTu a'XfCjۏ<2ȃ' !gk}=FVS\q]b9of߅ ϘsGJS7n4wttCOoiѿȦ}GHQ" Ρ.JGKVRql-Al>V14zx՚T^6bns7 y\ҏYhEd-Z&4DRvj_EMh#3{+ؠ"oNl6&gfO),nȁЁݪ*?̯HX)o7j>f?hL`T`x[_^]8aЗZMM) m?+-X\]y5 sù .fM_tV7i=? /VNIZgP @ǩ{+za擇7N)y4o S6"^d:/{-d(u^SK1kUh(iV G*9|z{ˠ:Kb]%]ݝKpX$35?ԼU]OkY[Z-?T1F,- -auD)M.ku IfZd 9*~PLNa{csQ!?΁{"DAr{syzwV{$D{gzV/R@NPٶJV`Ho.HTT-<]1#'q5>ʞNh@6?gS:=\߶uFR=/y.xa V3=!ך 6o+g".(*r-l;(V-O>$}{`&c?,ִ,ܲ"8֦!Dt.<C/b[jP7g}Ca #uf ) 1u͔,6-o$6|ut);S7mxg%̐Fƹa]K/@VRHwEPSKWmab'WgՑyv#|%c]tE o]~NָO_z;enYJip_!OFZ]ɺd]uXM>8xYQNt$~HLu'6yx _xz>z-n$41Źt'=< -'ogf'EpCmKDʝH9G**%5bZ}CO_{^F}׏= S[F^Q'5BZ5^+wCChIk'9qͫ(J-?imUP ߫8n^ZL!a[UAu]d^ۉb[,\qѡ}`+}8|kțU/gھD%Dg+CU*{WRd͡JS\3sWV5 Yʊ~<`ο 4ߦR#HefDqs.5 ,c[bo)'%c,QPMSe^:3x pj҇19XؓXdq|󙑮|윷"KH};Loĕgd`o)ל޸qE/"?Z֟P3d%`|h\8*<Ǝv\1LJ܍37'Tl]\" .^%>dfѝ-*}r*P|nG~j3_ʳ쩰Lˊ\`Oh;W\ 0ȘΩs"Z6%`G_o=ɱC5/ L|U!Cj&.inHh5Q6mNqDO4Kc7I=CҭNySrmQMjx`=oZo9YVU0/{RЉlTzm;@ji~DsEN_+Y`2Of->Υ/+G:83o Ԋ DֶXt5($B)|S28 cjNn+~5wpZ+DKQꩈ5 cۙ^elSWN9~OpEFs:+{66ڲG87AG?Ȏʠ$/MTL$|o0肷mu7֎[%?NWx(-C ,\Scn⺅wP–dg!{u6%H?u?q(ݗ?: f&{+k&)]=ycQL㾞ZVGkrGGֈRXRTe5|}"pԂ~_ so| Xfʷg/pH:\໛YL֕ĸtnʳ^j5P}aYLcVO8"1!@v{+wVU6Y&|kgcg9>c0 T"iϷ`;=m0'JFemgxU& (x +"t}7m}"ruXFMFŹ߬xTs gVN8TrLCHk1X' ϭS:Mt<䞶 :[s,Yv| {)ACsչi'uj-Y jAUc ݲ'Jgw)4oIfgw͖f8a4Ԡ۱GB=gʨgql7eB"wyꋪ" 7M_7zs8pfh~[rj]Z BvIɆ@hS8SQUL.'#6p̀wk̛~M:#D)CF)lj=Tf4*,Ӌ^: ZF>W6M3|[Z#se޶OWm \"zso4U:{R,Zvے$d?M$|J{ Z ’!k$)@pnk[$V";!Ģ%lBş WZ\\C鵦fozibwgO Jߏ5r&7tT/\qFÿTEt[,9m9F\r#&|S2ho B7< u-bmc|t 㱩 h>PKe[H_1^Ͳ̹ 2[ 1_▞vW0AͷcĆ.S^V'c6Qeg m;1z / I޵ۻ2Z:O~`Of.g*[[cS8Qu9-/mZ5XIo>f^#mvy \iB$9#`ICJzgyxٱ(Ʀ3'%+dҺǪXAĔ0rKkٖji77}!gzʐX>ۄqu}LdcvF4hi.vԽ5jܲVQJ\0 ʓ̰6%3'*ۤn_E/}c<Ρ c"w}5z;U"+vc!0>5WN 8 މi.o5D"a}N#ڍ^9L2p+qNud/%1LXo)շ_xFhֿ '\.m>r[> RӦ;~p[ikhM3zS=D}!wuL+EEz" 3 `5GZ[,jw&9G^׽cI3A H?u?`[\r^*5;v%KW?'K0>/\Pv;v#Zi I3[j9n07j5hR=5TH`"{ =!ЧK?Q؁AVW)fl3ʞs;|R?jÆX))h0q#gQb%CTF[ՙ@%aݶs>o'ZH}i؆(Nɸ@tjg,$,̗%rJ7B܁x/?m5k%MIvR~(;4!=͂D{#InBHE-Q%G>1tPePu.(DJ: V?# \Yh@KK$NDo꿌)l#"]QTw@f^Vj=%j|D2^d/{] Id[,kYAy[ Z]gl)IgkLBxrHaT( Wƶ"yV˾8!Tiڲ熼. A0`#]=ʈk'>`ޣۑ9#t'x9]U1?׶ ?0GcAǺN{),>y`V[,"&hp 8-0o%)!?뎽e.쇿' jjqYj P* &Nf>PF_]b~Q\'ے;u0ih~=@3tkbtVomOWWN⹑EwY9"(a%VL5fH8vff懥'9;v<`}=zWAy8&Dl"HkPUفrFbri$] A%4~}rh[}+nei^U@Do]ݸzܨ͔z]dny2Jp9QS_MNh29=:D^V Iӆw DvtC :Yl3zbߟkI. l=O+ Q3O_C+DSܤ9~X қ:0MMk_=V!:8^ľ_L~-S#鎑*2 9 Èit}G Pٸ;Yh%d=F=]##oL6JHe0PMEG~" "L(+[qغۏ<+6Ƴ-G"#:?c \Xɋ4Kf82"Mu4=K4AU@GTLLBdF{[nF#ml%Q 0kM./x ?~6poa2qFfCPU8nA;,:k1G `Sw+Co.#ƠdN *@eyJ"p>K*wOs'GNg )`!hor Y~Os,Mx!@-}GF[1փ7UbƔT_|䙎Fxm˫my }qcq޼i9%z0<[mkM-dg Ryd 9rvĠ6̧K|Ds-wAJs<{Zo{7 s}uYPOfSهnqy{)~)&ulB\H~TOv8hs^$E3Eb%x$@f3vE:k &^)O3:]]ZF۷퉅-aq };z ^XLtް+LZFI6eJzr)V ](ڿ;t:؂=CZY SLi ^H#T>sTo$N&Uӷ.+'5J(DVEG^KO/wAh]8:guΆX^Wa?{y_4*_hԫ1v|py{gMmnXIq8..XUV\ޛOײcpl5]w]C!<ʳҋ{ɿ`fr8ۧ9vKtZ 15KL;cI%71(~XJ˼WOSWEL>GPZUq%u:: 9 %lɯJ@w \nd_WKeB.&mB22$+ӥyVM09^p84&!{QReSEOⲂu*sݥ4e'" ]XJ^` iɶ_a}A ĪrkBs"]х73`nVHUЊh㮒vF>?f)*ġ J0K@*}&riR},wZ}4"ج9!@@.$rlR;A<5t?IA!IdVu BLUE 'Dl?b(py\-찛E'$ڸW#ͼE)"l~dR2( O֚<1IGT[O/MIFEurR[@E2J| b5;nDh.JE JY1_=~J1산xG ,SX6P\-"~Fua1*2Uaqdan6"Qjz;R7LDq~QV?cpiQQHn} nyxQ1$CSyM[}{9Q\3Lh.mzr{w]}p5 }(@h瘶 C '+ [tnʡ׵_!RtSHg~ͦG!  -ڧ@kעWĮ][2_8Đ X/['G8m/̫\Yc+e}O^7oe$]<*QZ^=q9﫽nػu i_k_h~mA: ì13`7lybЬSd>ඬ ׺Iَe,:ގ.%c&{bťC=QJ4#Z4D En#GR~`oM3w<|TTbX iyɑ|Mu9bVŔ[4Zzy9mzYH+V. fC309.~(8&팯b109Yp0sv?\Yr݋e*tw9%ѩWu+o2bŦբ5 n6*)əJ9A}Րy䑔M׃?#XEEBԠik.e"zzb᯽~]a"gþy )ϩC^,#}ZB!;gIޓ:iYFi;(*Vk.*Yd\©bn˙a՝♡pvT5VOzgnRΡ1ag}oXǖ )\[T\=Zi2ÜSGaۭ*"θs6pv64+ՖD4V⹌ܒkZKI@ Ͼ v 5M!rUƇf4pnV*dk= UUwɶL{d#wXw]L5h+9x^I;OެT. Ke䶽()*tU&4Ua_2^䞾Iܕ MD:~i8KQa۲Vk,^ggx ƮcCh]5~h-C/kr*wh.^G!2ςqqG!ٶ<5igN5n.d{F֊.vML%w1t j;ˇ]uRI.B$5+ZצX%%VMND\[i}ylT̴@_tu ;F('3&/H;1]&D\ ,)W;J`zc{d ĵ 9i5{-ĨX^8&ތ&ےoo.SQ?5vyOS_CC3@&̾=ćC< &3ۋvvp '6+f2)*4H;oIuS _ꖹĄB֭q[-"ҙb% i[k"D> z["6!BǡwK2$*ILϣUqgiǖ1t_2 xv?6=3KJm1^#_f9Z4\oO;Ah$Dm\q>&\8.@h*W" F {9==< ;j;xz4SU XkHߴf{ŷT\7ݑ%6=\2JS AZTp>,ua _Q,/ qU ȏ+CFB]Ȭv%K hQۏ0 Rlڈ^meT񧅖‘SyE,M%9p?~*\*{x iƯ^j E +z5ͧ`BL} 2&%g˷e!\̑vQr lY*_ʨ|-ZTRFWXJ'#l%?~)qQK5@ l \fP(.b<~]X왩R\lTV吋8>uGwVS6dU,R*Fd 'se'KdefaCM,|<紧80@ڑϒٰHie߆:Œ?iXY.Fˮ,W-_iUeP0zZ\:t${81Z7t88^U;NE uc%@yV!2i}2&ng@qZؤ,92',VbqD#spxOL>W ]FM \_[T\TsjKTL TM'"rDbL%[ollŋ3?luG.J6` A/@BWҳWH Wn[v[2Ahg'K=fl-#PKp[tLDkdަxBpEEZLJ'j$yrgDC֛Dz{zfЏ3@ES!sľх۸?Y/P޶[S|mM~[#m&,*ywgJÃk_8p] eC"[|ȧlD .aWʯr@Isyh2/챱.bߣ rLujwA&{ GRmYR{<:8fɐ)#=bdyJ[>TEÝ[tU NsU'8b6?>ם/ߣK 9\+r9d((ٍL@?UN[d:I1YD[ɣtt%\^BU|(KO: As{uB7~dl?6Bx}*}> \l~R1s'j9V{1٬"oWhPJ {`d0=Q`=j&V[4 ؿ>!aiNqvL0Bƪb8mvz.LnhZ!(!V}R㌌jN|XT`/tavԙc'CWoyXXM׌E}T-Qrckx[wr C~jp|ʊY#X$Vo;-:\Wjo9f[| َ J5vNv薁}/48i:|/>}Ы[" gJW(ŕAՇ^9XgS͜A|m}y95D GqEq*J@xe<. ן;6&tOUɴw%-~ zf]J+ԂQ2'[ͪc/F@F\ת'Tq1<`uM,;m1Ě>:Q"{B!|#7H7I' Td~ԍHJ5B,vjA25Hy B`mMf}g7` pN5dkTUFnK_Y wKn*Xݕ.A{:ZUjƓk8{>[7ðƢ!dWOy?'~~nh\%ީ,)h,AС ҜU+dU 3۪RzAn4}CXM=YTrBDE&_Lt(7&ˁ?9|6{6Ιlp2]C~zŠӲKze͖xՀ&vNښK]iZ R.}3Bq Rfz ":zV]J}vZn* ]3n˨$TrΨ?2a~}./F'~ۑfw&Zz]Ƣ1 ge>bңPs"}:JiA 8sc{O)j>7_@!Eg-Eb 4g"$mB)H bxydhE[EZ k;7&JZnFQ ޅs3=jx D_b"g{Hs\a6FD0@~z{k%pag׶#RLվL҃eh+h!ղ"a#U[gď8R(r,nְ]GЀ"|Q̽мx~){ 6LS"Ⅿ>a4w@  elZ^HTQU_mhRoAH _E2-ܑjU۫aZ[c HI hq߹*D[G%[ ̀l'd45R9R #fd4U#`?òFpo T)yPO4arl,"gJiו{4Rj0.9K/qY2$uwS@W[TD_*uօ!&i Y"ÖŞE΄Z0 Ή@FHi {QReu3lU*saRz0m}|20V3r..hQ"Uj]/(d)$ vvMu> FY2kw*|tbnN$Wr  F a rywҩ~F;J=eu~]de8|ct+ݏm8`D$09wVKsnEHZ 晩lܵt)I ħ $ZQS+w13[/a {X/-r$W*>?.p*u<1rVڧŕt.Y1I9**(Q< @{z'f@qpw6ƧllLcI˫Dz?+?2FJOMvt4$KY?Q~si' R%N^-͡φӅJaD'Woo:_,fcg= p.^ f%5'#e^TM'QA5 |KIiJH`BB=+\5$4ך4FN07rc]#̫B&QLU'K̍?5%%q/q|$=Y tI>늌ЈcЯ1Z]hr[ qE;.K;>^uzxmS%O (_J dAJp4j]_yw6GmXӂL嚑q$.s{mgDGt]Ru&([ڡy+T8ߝoݫwBY7smia+Ⱦ^xUVƅ{# jP4dwjY݂g U&2Kj}'z0P,SқQˠgW6yQ˻%Kp[~&}~4:{d~wgDz4OyoMMwڤuj@+I &7 e\dJǪ!q |첳`ZCt(n+>O,FPPw> C7 P%OD/}4FdK3ST~c+Ƌ;se^EїZ8>:d`1H'Q2TV?샥):PD#9ӄy}"|ډC. '(d+ $LAn@v" $##W®3Q&$(ĭj6TH6)H<;Q)|B38-dV[EJM7?(BĽOFė㼼s[Ӂ,oFq7loV\}_>o>^Y==_u{̺T֬hD>F/{M;zxeSo/)p{  q (v;5Ty V.5{t @ܵ4k /RS.+l.kvOJ?UjЎ.O]Z&|xxxKZ)mc*$'%E±6/ZqPU0pFzT}BgAëR.!RP)l` PzpIPu3LvRܹ|dJnZDyq $=hFU>7(+ ?д|WjTƎUUZ|_Z-XOgD,n#*h,iK$΢xmPq_R_%հOv||~ik[B r&C&G~~K[tGTusQ?&Q-pprxv6ՀgiXƤ6Xد!zeT.lI- dJa%{z}}l% 5!}誡|Y dnx>Wm9}! i]Qe)4[ZgCx%۝H3&$tӷeDe׶^Uh7D M?].6ERR Qo߀L깆n6/JFx%p30kç8OxbIxZ`Pސ+AK{zFHIb;bD1bXh%NSϻ^QsB?wY .[kU/M6q>6 OˈN?DsIw>ЄUj3\؂u*ad癚=OCȵ ӟŵujQs Exd j:j:.yt}Z2޽ȑ4+yآtU ]_kM JLd͠;sCJ3Zmއ*B PI:$^qȿޱ/k^^xZu1F܂z JNYCCx$LJܐ4DX:Wl`MMd..\nĦ'Tݡca>9Q1tF`W_ ;]L@pDNI! Wrl'YE.cp!mbllMPKV$R&Ѿ((png/Genuine.png5zeT\M ]2`p'l%Hp H 8| 5h!w_uN8}v]q 8GI/{Q_&+/[FI0@ *`vjA;{ER 9 dhCA7d2V N8)wfJbcyLI?{,Z\ȱY95+؂u W=1]D-2L#=PRmw|hϨbl~v&8xq4eޣ_bRq%fFr,5<:{‡5ZO>:҉0oX>+ W5BDm xIG}3@u-@dq5^o`MKh]&Aitd~jϏ",՝_A .w?Du8@ 0SK$ s7.c;ȴqzeO'7NU{I5^v Ӆ(<0׃+%Q6$>-Ksu{p5Pd~L.aE}Ӄ++5oƋiSCTX<،~ˠTN|=!'`uM>`LJ1qӏ0WJkj.=Zy\|kV8#tn$B9POIE1>s4Py@`'KZU}S;#qS ˧`|xжi(Q釨v_V cy}$Q=蛩C0jE(D5vV܇ c㯨K 6 X7Uh(< [jR1#"1ɺh̷0F#iy=VOd).d?#4">$tb|"k^dQdZg y2`e A(q^M/#?/%o1bYOP-HSkP £6%4_<wP~s uFqƝύRr%C,t+)'7 }LZcу0$_}vأW$H$:%%%sDl(:!}?7RP-d6t,oߞSdo{6T]q¿D]F߇ C̀%B*ݪNqsǃ&-c51&u(:ͥkJ3,] s/Yg:8VPlD^?j/kĿigstU?h0cγiKBSRo-V ٵS{]ߘK4M% H1MN=*_2buO^蟝.J͕Hʟo'ڢhq%HX|u;C'>cnp׉/Ntv81zsaɠ,"hd2 ZqLI^$W3q<۾k N9RSm%z!nAge'JmSn)}7Urj.?gI} FwnS7D0~jNt\=x#=kp.Tˁ߁{Fu:(Ujd3[ :\"ll/U;ZʢkB@)B9W3ҥ5`P_|7_{?W~K;+.Ж"W̊jNi-ߔ2Y].g_zst𢂪7k9 с_4pX䣯sCcmx|v?7u8=;BW $wzE%;B5J#Vcz` [-m}3ß0Hս2LYЊٕ8ԖHUW+EUTb@@1*_Ί 5bLwn: ٻPOqG%٠Eg95z2B*s>@c>|\*"zRwbp n2z+S_ؙ~˂hO!ns<ȹau'cY4wwP9 4x@=NQag7q;C <^Wap[G}{jQ k:)V*Dħ?1|AFȋ`A'PbY89+τcUmӲN坱vަЫW2ė^_1R`K'M|s/99Una%x7>8KGכ`"%_g=]:JBwƒ`\uϵhtBzik._SM֋Wmt :%cJi} ]jW΅2u"8vY%Rqy.!_:9D)>*>\ӢT0A$vP.Aަ_OMP YT3QXgTC#y]\Q($">{QdQ`44M2Gs=nS!M/7i-p3<FI/ѷ֑/DY ՃeL6eMvjjͿ~q2!Om # P_"ϩA?߽Ͱ7դTMlE@ߔ{ؾi`=OԻ#Ko :6k=](z +P.;\cksM*Ij=] Q[sϖ"2[|t4 M}Vtw $:\Hs:TP.4(t5}zWkjz\&-=x.iUHM$wohZlM^ G8fF+s_tEVuYɢ\a}l͆rWfM~ZqU^Hn\[F}bnj.yvvgl(1\Q;8oDPQ%:IP|UGgOg گA`= { jN}oUvL ([0hdrD^ 6Ufvk3^+^=)IA\lxIr|`tYi!u7B*͌#?FU%H}ڄ򷫲H#B7HGmbx1)^f}A̹]F)ȻI7=yW']}Fޝx݅DcFIYΝ'9쮴:KDHT֖&V#U>|;o%۴0̶akxfk|3%);C B9U;,z)]EpVi4~H(hӓPDeƋ-1kG*FIt8UVmL[UMշUа78腢Ɠ״[,g*5) v}Ahf1s(JY% XCէzsf<:P>e{jF͙&/F#U|G,&orC䵏[Rah){eg4 "ňK k9"5rc^yٽm` [R+MTrM&z+7Yǝi::0iN`mg$K ](?)F>NA"Gw'"h%kBpD2M7y31EIX۵Rxlբ5NL étb1>^U0ޮ|&ecZ#V䊉@967Ί,U-qjcK6H0+sD` 6tҷPa!P<\/D 0|,Ƙ=3z=_JZy9_R tzdɕǣ?/`m0ծr1|/s\dBQAk(Ӻ9JOgKSz@<E-쐹TcZq6bĜ?mIאoVjX .($~&ӑȱ=%a!ғ3}9JnxAy3G FR*࿭N}hQʜӸ$}yuR|wNa Izl"WG~AE- th^Tݝ& #zſIR; U]ZXXki&>__ShDhM)/Jd1׬*xPf@\kd3b]tE,{K.H}n.H~3'?3@jƟ'b"[6Tw~~D ϭ`I{v9;C0@A֗/p)~.+w~o~nz)sp˧zRD賓%HWøu'ie̯Nb_;K8NȏZ(L[–sqN Sb@'r[1{k3Oͪ.Id|C`vgU F#_)h̊zOOz]k XqJ̯͢4ړ:ɶV`]+&?bi歳);6|EP;|iJl`Ư jhYLpRJBNO\2v.Q6[ɹ36s4}  &N#bt:\ۊ+ %jF@¢ [SF=.߈RtdJ+Z0ѳ@I ʓ?st (JA3OJ'U4~x2$; CxmǓ=Ydpz1$TegCןA-Uq S۸ _ >-j M=e<0K&x!!?Y.(zW f̞-wR@2rsR.zK_r~%^r*;],_̥p;{#|߮Q=&5f:rQTXʇ1W0F#lwɆ@Է1=*d(( ̆ u#CmUI\ձ}&NGֺad`h\+˙Ҫ٘CV:$fIG8LuTg< *PR|R:|O^gPi/&ǪW{0[ʾF:!v%]ݠ@m{a.&QJez8 [~ƈD|DK!Hŕ/d}KSSXDPKV$R@&55 png/google_app.png PNG  IHDR|%sBIT|d 7IDATx^\]lTUٶQ#}Ą)Q4ؒHP~D֤51jWH_Q ]lww:g9mnٲ'){Ι曙3s&lTa+N rRZ OE#RX__;0-, a4ٽHz$i\WruvEIj+u+:U]QRwg)YZdJ~wY[֮18:>XMdE鋱Gd#GfW*eyKDyţD4HDyМ$WiQ5[IDO9"ZHMƪ9_D̩&d`N?Oɥ{$F&[bK{¤ Q9ň>f !"q"jfz6>{}шu\sLГ8qNWS U.Lvڀ.2HŖ}b4CD6e6_/5Dի^=dӣ%2D OGD[1p@ P,!Oka ]n*ܒPrabkHFb+zB]Df{WD6*kL@`W,j=4+F|WlEF㫘~/b Ę@ ?v $eS1O1 +5' a ?t* Q!Ew,xw+k:?ĕ=sAq*Chg}<0o0J#=ej-*`'B/pB܂pD)yI rcx+GSWVEgn$NH܁6kAYK."J `Mؿ2Q[< (B|XbvЮEK={J84AQOV#18Wᅯv, GQDتç"λ3^K ydzZ2-ˋ)~2Xk >! ʢ&NlN> 2v04X1o*#F{#p?ֿCppQeeTţDt͞L 5߻En.(:W>Yfm<)"H 'q /R}nJ^A]U| %lQĜs`z(2kM+4izPWTp=$Dp*6DP】&`&?L#wzx e7` 0WOs& npe Fҝ< K00Õ_`YD`f]att ó0{X;K迖@iAL, ;E֤8>V06\KUv"Dxj x|a2 Zדa?ryZ0YȺ/9Xe`M5|NX^teC0#>Ǻtb.jp gMБa{6}OzWߙr i´Dխ ( åS+zb3p0=n㨶^-`ܫ0*\.)փW<# Z6}XQ>f~x~hq˩) l}&~  ` ~;#$ȀkB]#s<+`*G,ݠÝ kځ=\VԣqU psXd]awG0prXyMY#|/j⇹ɜQH=6۰/ \ `~Ѓylk,F.q}5,Ws췻FNBQ{GH63 tV!\nR^&O^B?'_z竍56$lXA{7XOj7؞1Ǿ<91q;9>BM՚ :Xcch`- 9wE?^P]5QZT[{C4(8G̷wvIںݫ [m]K-3Qc5T߱kWf↵kV YH,H{/|IH=Ѿu1{nH8 ^$g6sIENDB`PKV$R /wpng/master.png<}uXT][EC@$,dHKIif!QJF%qasxw=\3Z׽Μ}}_5+5tH;z@//JrO|CjS&TҜ@##_U+PxLn_?Ѽw Be`͇~3梧”L+/h8$+N@X<:p8..sWNJ\^%VULН ,㢢Ֆ([މ핷ڜJHQ1Y9LNfwg3/bKX|7wus@^R ]Ju.8`i7hvQHB 4j5 Jr)JՇ p!2U]Yo1m XH[(M]\Hr0E6OLo(zlöwtڜ%$BYFzVmCWjF8>}hv7=׭ /ܘ֤"7m9U9@oӘPl^j\4fM\=LYJa7u[$[ǩ588|+DhEtfa̵dK~ab?ν"b#Kj5UbK-@'U:uYZ(2'tq貵LۿQ3k1Ҭ8)nfÚ*ϝ*@S1 53w\KxIޜl .cʣ"9,>Tln!0g^@lqa F߼$S­p!kÏ\ڰsF:vK #ZH.diwh[CLn}yoEm5}^ ] P`l2Ikc޻'Sݲ\ ¬V5zAL΄7kj?9~ ˃ܠgSGB5)x\|+k}ӘU^!7HÑ3 -gT趁 * Ӄ!)&F½gTSJI1ROMN,/V;XwzA,+Ѻ|5iRl-Z7ƌ+8 @dze+AJ'Gn,n+v۾ Ɍ^!?>>^W~$ 1wSwT<}گ~LC+Kjw:~È- W w &,d MfW[aN YT[,M͊_Ɗ-'-h#M:%]r2(=zTƬeIU} q; ]QE:i36MX'0)9lk/;(@ = 1͸&5] ւsPOܐ.hbXs.Z4}bGYp]>40LSn C=NTL\r5\/+p#rQKb$F͜ߔ>hE?euvc41A\8_w䩛} B[zPfpHb@)kswDjT_w|_2kAWv+uUZE&S2Z(L'et\rW.X pMw +|3:w0rŜ6!oN"FIQ1e͘hr^]Џ5ř,(R#jqN+ʼ Q뗌N3UwJ&0tnwm)&wBPcL(add‘նMDU~~Y:QH^شmՐ~p Z"^0L e_exгZC_@o.*pX*8U LuC;'yͼHU,to?@iBXˋQ'"M4SX4S܅ц{?g׽.`i)Sߥ|>;΋EvUo8lTLBWW%fDi8 O*H?RQܠz\*'btkRV C G҅&h7RD#erQ E )$Y,VDGϱl2->We[K|"A8‹D2vjpkvE  stk%byHmD^(Ò}`U&փ{GD0kYI!7\‘ڄ ߩ7Q F c̏#zH#eLr[i"MFf) WF 課ABxr=k+{)fZ./)kre%.hlcdFگƖvT] c{g۾y=.W=mȝrش~XU?X`g$weEXZ۹W$?{Dm6GΉ4v '\[EX?Cf]m|5c]4[d2d8?^5iyG&QKO1\fOte~ ec։M2.{4Ƃa-zmkn.Q b -l%^Cu6q!wX)gfCNn"`VEi!L0' gvI&A%~_B/(+r&sJ  PIS "UxLW9nzfWjX[͐9#tX47K/[:m~jG/Y|m<2ènf1IIKݰl~7Xzqt#n8e%r3B(( vW~I'MvЃ㽧gi?̥/(bh'S4wŒskӵ"wP:&~'rQğb{'uM6A8$2,XKBs~ f 8]@O̻ ^Q'y$8ťa%'oYP$|0Y*ew^B }D:O!DGjd#?PQp."@%)= mڷI[%5!pD M__ ת^^%~$SNML@%~ab`Zf{orXv&f9R\ -*Y&ˈ8gĮ $t͏f0,uHo+aF(ጌ@BwڕDmE|4˼=e"_?w:ЯXo?qITZLu+`4a.ǯ|Ư t )4vvy30닀6Înc OlP(LZ'. dl*3FV*+feUm3B]zCG=5C/7nަU9/i{ ᆹKvjcp( M*evh!վhXsE0V,b>hzN}1vic|HP313iKzت\X9qW6@-oKQi5C m{&a fpVL5bgv&+P $(COWI E Ȭ&dM j)o)?KMLk%'Y&T$IS|>׳PrUǓ-V\&k);n"ܳN-WZ}~76[^cM 5ncg Zk靔W -ww1^s\JMiP7F<@w<9A*ֲxʱD%Fkp/qP=TڌsВO3 U?P4?~&M -*?S;B:^?{Zb.RT#mSnS樸ohHӗ6K(<ì_&q*[QK=7aq,mpL #W#1BH:]`Stąs#fi-zJX?YЮYK Vʸgݎ' ?+̅=Gn\xbq,7Ͽ}]?}D+{ˎyTd=WydCCIT˴݈_L:HRLȰL (5Ti]ׂ|ȣ)>I&&7 M+9f8{\||@a!X A)diP^l @%GBٻٙ)[Iدn=F7'tSmַ>ď,L+ oml1`hg2N*?:erSF6k `0i.܎!f¶ ) ;s6UW!{/KLtͲoEUztmزfsb94rM!|* 0UŌcc?-oZ؋LPOʖoowλ& vj:?TǛ>nߓ+EK-3U7oqwWֱ7Nm5iT=7 AK__Lg Sퟘ QuV of";)\? >5'0@;%hai<_|=)*-.{B2Pb̀j?K"9 Ajs8}BAd x6I)>Pt>!}[ u#all6LW:t3P `%ZieY/I>+^|]TֲfZlxogD +pIga݋Ld~"M6-*:$xȚʲcm0w1ϭj]R2ylK.AIӑ.ds$ہFXܯ|&So@j_ #/W#AXyk7sD=˺xPP4k(?,&'|JOa`&=LY om|04(2A H:Fi,??ɺ k\)ߧydxg{J+ʾ'9G];_t!cw9BZ^ѹӫ?T+.riK9oB#PL=N^g'7[t1K1G߉u]p'o_X}y3z6kY!r<ɽeŭ]#KukWITw7sR9[cr%hne86Y6fCsriw*.|' j–"7r| kL` fL~iHdgω%%8"̧,9x_.q6z{|F"ŵDm;bfHVz с~寕ղO8ƔW8PxZ];$`7[Uuc~gseN ˬ35V] O,, oCn 9-u}_;MJ0K>))}1XjD=k+-ⅱh6A27wl]\⿁0͓KH>?~9+ 6lʆ;[FKAo_;= ?(\5blj|St}oeRNT [mW <=Pg~"/v Swb`po[Z]טkc/aUyLݲ= fIuB bM{,(3{n;[f6|W\9~įZhOP^5+ٰ' _"I٘SbtWtd*2tҩ@´UT.E2mw5}PIK-J^ rXS6?1O% v}hϭ(#ZZ!icNJCWy56ZdnخDb2׳Ax1@:+vxTFh6NJ<,7D_u>C<| D_n)Gr7ǾFeoo-uKA, \W PL7Wz8w"NDod(f  iKsw j )I*zn;v`srAuɫlȪ=2qbTvl95d9+-΁#Xc8/KۮѽYV$ D T\"&R04k 6/iS TLGNY.e;huSaw6HњXpz4V!o =dgޙ^H!饂ze))`o6}v<4Lpx@1y\w >_u)[r!!>@WP՛ڢ&In>$ܵؾ=y"e&|k{jxB|t˞rJpf ɏ4Yܫ\KvܥEcʿ:{))ܳ8j@ᒹo;A4P)pyl9%z:Dt{m5{m=Y!.ᨈԲ_'UsUL4OX>mnCWi֐ywE_L|'$Pl"i<\Ғ mkC߆'UN˺h3$nO-|Ily4b Kem[9myԢ.;̜G8xH㙎ڜm(&k;= q!9#RR5KMq_W7clT.bdx|4 ñ}-O eOojXxμ7}3+~y  o>A @2V;G&Iq4wc eLG܏ITM5`~8tAUΜq1xȋ|.b,i)>l\ xn1qBU$>q5F|z388i#[@J3XMΫmexz{耽EƢOp+mރ<V0]jїܗ<~m LRIzoLMY<"k=A(hJ;\8'L=(T :Dij6aaq돧_$~KG &.[M~q2.זi~u\R£_٭%m>Wn208e:BxڎP\Z4,[^-h7O87 SnWspĽ.(!:99Nr[p$LrG^kϭ]n֩&e{B߈# } )l>eae] -׻ueԡK_AI've7߯rV~T93^BWՅڞLNOYǧ5g.037 Uw5ɔ]AIY/:l 8I&"Z-[2" }cq~RSHL)iY5;}\L5 &o}24[GdA`S1ʡfHXBaf 8NnphM 95H X.[\.oQE,l]щQȴS@>`$j33_FZHQ>}щ[FH7o;!(ڑp,*i,7PljryY,v80?ߡBnH6MS.=nK_3'.qɛ@jxiV?3|~S ?~,r<\7RI@z(y!+O֎F`a_)  o)Izhqur˩LD#'ș@ oXܕN(p<ˉؿݞQdR{ S&dbop?\k {/ bx6yM_;LxywEg]z!ͭ֓*+$K]]zGp=Uٜ8x綱jbֻ@]ikSdU(뭂10y/vf FiY& V^WQCo },vD2pmA Y7Mi_5vIq mzD)jHBe20v:~FOM ! 0YE̦'X%2%jE3ރ,Эm; !o1ZPf]g y9ܵ>%]K_i?WA|IZ?E5әHqr[]IzT3-tk5  m_}"T?6`U=|V ܔu`/@?>n-z V<ㅜd C(okrr__е*Zo#xf%:k 1& O`*G'(jTp`&@ Dz)`ԷN^B nsN\7˸Sr`ux :WG@~>JM^ۢ31{QSt d⭸FgH;F ? C& &7A#zru^o98?aH ƣVd[H\n[4ѹڪ_FhK|zP wL58UibYͯpU k+@4A5M(<1!WnQ03"?rtngĪ'c>7 cSʒN@"Z톏Ȟn1}ϺʼW;2J5+3?5pbzi,?Q-]%d~FfΣUk7@ 鷽DZY&oޭ;`:[BJ~1]vWPfkZm"3;Ej؎$$dcIms~VioӜppAXJ6Zsq!BJHI[Jrxf3PJv@  w )[.wXxx=jF](a Bo1m>h.. u&>@Ҙ;y+/)%Z]/?ϝ1=u|I71u5_L2^R_miM'%hS?Uϵ T_; +~7o~Zlɪ'4D^{L# UD.P{w4l$S=ü?|6ǩ8p1&f6m`T8)qެt np4rV9DxڇI^"g9`W~\ AʧTO@vGEǷ> ,Ux2C'XJYO((!y@,!-ǐ I/djix_'P"?scȆAV38#4(#ȅG^nwU,`~)]6JQŷ~/xt0^W<Kqs-Jy"+][qS@xqo-+7-m3-dІW覮7d@)T*K?cښJ) ?`1G3ضIzn*L5o[ 5?z*1 &PY$B-]uwЅcA0:s`Ǡ=0 vPmQHYs 28P ~jbEZ+Y;+tWĈ ɼIȵ80 :XF\%A^ƒhcӯJ6w?$ EҁTn&͙Z_@SD%5 E!= xS dչZyP/+[iBk*Mn.B%ҿ1H`czD")RŸq2&z'g||#ʿwp+`}TքjH&ҀoLVYbP>ܺ@ʧ|B5 1ws]7L?VsA[Cp\:9<FYKM| D/_>즽aA{A;*,<,){Z ~G~j1  s>f:6!>U":I_C߄`Fԗ #ibki:d*i!>"6K;:W`LT"3A&S@jTChYBhH|&LU`$m?wġ!L.)؝;%\-VPо<)-F:psAQ 70#m{Y'Bڱes&.bg:pA ɹHO!MOnՇ<& :SW+n-a6LA+Vk`‘?zБat#iJUg͹d+}yW͚(hiU>fQ|z2>tr8 %;ON@1ތ' Ao7Rs$DIݾMP_o웻_uH!y  j!%xA]Z XI%'Ԓ|%篡|PBE \2ZSw^ 6.ZYW|b xRRՔՋEȷO>$ +  w`g\>R n?Wm߆1C;7+i25jÏ}ƛSsa@RRtb7F@Zj1A+"9)סoAI'&=k  J`~u1e٥м Y1Lul;0I:34/1 @ !כ, 0qp}/zcPDq ~p!m~ؕAıYVr!YBh_&m5 TI:wejq}oI Zup$ؓ@>f`bH\/#(`'t$ f!'c.{\qLtW4 mo{F &Xa.א{8P; !fg(ЉQ;Kɫ>ɸye&}% *8NXɠrԄVJR¿J]9 /XGzA ߝ`BˌRD" y&r͋"&/s]  d #p׻ǃ _5qP=/0n6 =" Rdy6Tyzk!G$Ά:>Wb7&eA\@Xӥ?OvAaBeUPZMf{Ay!5A,cAMyn[la( FXp _ yvAlRӾIJr]NLҜsxuű#Gzv J|R d5jhv&([5(6PTXJitRZ>W~C}]ɰmJ6@LPHULbuϒVIm4İ~y@GrinVi $]d~s4%/7䟊riM)WP];0о2(wrXmdOZEO .BVF,( P]@ҭ)=8.qĄG!n55*XjӋۘ&%Pk\(CNcTSB`3:`RDŽc%>ִ8O= ^:-'G 9l:}#5>wj)!k7u3&9:|0մ|!}jn>Ct^(3_ B|JU"?/NuARRFRH4 =|L ["`M|1!xF}oC(Oص {8v@ū/;f%$ws" ܃?CXT;\ŔBRoUڤ8m;t(|la3 {afHWv -M ~ZlP%*%{P7;n9m+_lv`) 8G[$ ghqpOl~*ӗ0{=%rZ~a2!O]-3V;tc`-o)Q:), "Əiվ:dj`[# W0dee^MKUp",._W.hJ-R%1ݚz{au9ʻ +.f\%qZuQ8y&0p81s Yc 'P\욟QwYM5 7ۜG)ߍ$`N"S[~^z`<-I;]Z6RT"˷ٔLlfGec?UiD2Ejd) :6C87+"C_'OA͖:# TC_~C -{$q:Y^moUI3dԱgòQ|R(mf,tz Nʨo׉dEA%kɼ¼-]}p پQM3OGh';mn,T۟HdV1Fhi>@W*J1nmȴNrCVÇ[=~"jIVkh o{!v;`VT#a+eآ~:ݽV%@޷QP\YC+Rٷl\.`R 4#2i{ wiP՛ q,9oYgSL 5 t-#x"_2; L›í[N˿4䅾OIBܚ7r?e@?L-5F" 0`Rwv!lUmΤEGz"ܳZ{;P@k0+4r'$v}#;no)IV;p9L3fi֕R@Mʔ;nţ{,u. 5&$X1WPuN4?W&p6Lt6RoeD[5jQ5}0ӥ'e^MaunY) Gq)UAA5JRTwsKE)|ؾ6c--]cBcEAĒ<;+~Sh՜oODw[XoPz Œ3a/B2^=82H[8ݟv*ܭfYC7Iq?,卩}ߪ&kn3G.)m7YP?WAfjhtLRVM6IrGȳpg̀3V10-AĄ( &~ki7K =-}Wk_!?s #Kz,MMrXh}HFKH[X(Q6 &OX ieߢy5 :0q $_?!9jX_ a L}1 Z/A=f3Tx(OؤG%co!L -*AũL)ϥ&œe[Y}#HyV.eOteIaGweA:"0@"`%ꖢxz, =.Tg9[_V ;ećs48Mu.%r=g^Kv- ^aoB;iY近'*E٦`ҨH,H[!0yГ+U+cn@f^@kEh^/P \ )vrxQhu7ݠ8k{vȅ E#SFG:܄1 {ekVP*,qdwH"oyl$e Ҁ}HN.6Q KY`Wme+ ˑ|{mɫ0wC~5X|%n+v%O==4tu[Go8% 4Oy !٭Xl]4=G%"g?.>;lGoO#Cx:Gl $_Z񮸥hq@ϊr5,$.*=Psԥϻȷ[ ljƴ E73؟Wnг6p9oS2Š־1X3Fzv“@5覽+[%^~l,%?[䖤'eqͪý窒.:+La=%tAtCvb$ן0]w9)e"+GzeÛ0pM԰nu" }z[W^|툿r[;3,}'n+دKi5ЁP?yϕ[e|`MWC<<4W÷0f qцk $!ܼci:+n+ir=\kp坂xQb{/^bޯ h!.h}#"w]@.;+>Guʟ;-ǧ/Ķ"jrOAJn] rv>Zĵ7Po>EJ-:ǕA8 jQ@S) #+%h~ |]!+a/U\H>꼵)Xf&r{zdf{:g41j*u([qeHWK\|G1)09(1CHqzDMo TűYQz4%6L*e>@Ĭ$V0 BU{7Է^aSd8-@-1M{KZu\OM [4|[Cݍvl92>_pƯ?.H~x87#Z,XFXn)L=i/xZ*/(z Gu)ڻnUi#T4 e鿬N$#gj`H\ȇAz}fnOoF+ Le@va!T^Pg#A[Yx:/)9SFT.,LeNYǼsUaQ\{;Ō_NEBK#5jʣk? z~hop_7S¾p-9dȑoxEoһ zխwbУk{9_?DҾ'ڧ PINs\eY!Dᅪ#8).ԗ%0#*G]CT9M<+܏MdsW` /ˆsJmyGbb6ӻPZ C;R"Dr=<|5$ijw NB܍,C}$"#@v$ZP4ϤD\*{VZ(Nl=c"><7&tӷԡ Sic!HnqH(os< &QfUĕ;~܄ K1#8XbIƑR^q|2$BLi K&5|SS` 3mO J?J˷췊b < o=* y %aets{ ]^ > Ǥ\8mv$ev5y ؠ `N8YY{'^KM&K>!T#Po-8k]Cs HZڭEA_~`7 ~L.C5NmT4hMd[ji6z$5 l:V|G睸ZGߏF*JwfY J#֕L\\$`]b큊գB}-s E-+V{*P;t"8eqjݥwq7өCsoD,/W$7l4FGS?D@k < 1>_FSOKrOuq`jV8)M9Vrqt`t&p_7L$q_-BrfVJηW F+v-w ߩ].[v֔7J!gSY| Aϱ7ә-q KP޺MuLr=V@u6AE40fD5|TgScuO~Â3GKb f3k@WB/֧#WB@8v]m0Wz,#bE1 5.[6՚yCyNA #NaJY=Y׹(?[4-"ȁ `o+v.M[\z3MHNx}~\}Łq }€S\2ku6OaL{K=_XõԴ[ӪvwɀAe!yB~ }?+'Pcƿxd=X28xcB;▦ړ "t1+Suclb'B:a<=@T/OA<C4Gg&f&j@8`^i_;kq ׀2lz]^@KNۚOAMMH^x࿘Xp=|ZVt~+UɌ 0t={2a@IIg9>͝J8|^W1J 0t̓,p _?ajI,L (rpM TV_Lە.=D:esvBy=a|:Zv#=в'|*! 'PS%5] ݫ2=4cc4`J@W2)tQ=C5 |*( )נ7kC8D D혝ko\se4=t(r2;=dsx9)6r\ p$8Zq#?€VpDŽN^XAstRiK@Pj͟@6/{{K[!ieJ jI8j>;"lݹgVEt6g-+no{?4tۍg*_S"HL]Z4/Tۡlkuà{SoևN蝓Nr._ }}H@'mtb@k.9٣hn6Z;UI\=EW$RhrM zs>sEC.D"8#^glyNuXvHhE\'5[ x^/.t"_!#}4 U?@5@āk7f_!* >{15Xй/+/L?k}17xΫu6S>G C{OzUjXQztOÇx{ .уMlh[#9%R3(qN|6Y/:@ ѓ߭UlU΁A0ANZ\. ̉!+4O4mլ4udvG"k'=-eЭ;~͔xG/dLiz2GS9(o,y^(];tPBҡ哗ll}'<"d83 "2~ *uzF=1C6|=*1uWcJ[ dlx d["FH67OR\rުzi(sތǩz fa@ ٳs^>U0w NHP'mkބBϼVT@8#.Y_4=MnE 4e 02FXrmy:gx=̟k08w-zR)hÂQ&7OVLv7Z$_GC$ѳ\_KT'W3ʮM~~fŤ#7% $?26FvaLJs;` 98nD&$BXZErКUۛpy CD1q "~qbWM&W]+}0'%gsM,m-4?}pHsŹB{jkP]ch_)pYK,;Od4n ",g_i'VIաO#_+ SWP LWϳ))x6ki; @^k|Dza5TU$lX %p?"ל~ڸ YeKKPpv yjuvev$m GsELGɞ,eB2$RE 66'a*\\K= g3so8Eʴ)y2z1o>,^%GOiT]J@jcڝ wWfw0wZ/K"eW創8,ٶsV| TvPZkn0I^ t 0te/嵼zۧ-[bc/߅]>iMC, bD;uUaq\8~VO˫q,]k 6\^l G叄- d863'hK?N3霏Z `IQ{G5M%GX^Vcv{N#%.s&x ו.Д4[693ߟjLL݇GLйO]sF*M_8 0!o73OFN&FMFP46%Vց&41ew_,\A=Y2ԇ"c' q{/%B@Jn̻+b㨧r,_4-z GJn"kb-Uw\Eu"@^vz] \#ۓ zr~ m^z:$nۥ!]#Q($gj^":>Ki9/zR$L_2<1ˀy{Z]yh>x-nl 3ɍѹW^\ {t_HEOoJJOn7@ Pα~9[\I$GMH ؈)0*Jd*}C q߿v QZm:_|},h|eefD,Y~s`zh܉M/S}~D8jbL~Xrq'﷭PMϜƳ͊_`g!6$r&8OuXlUO$II#Ths.#׵~\ViwOp>^ICQڿxLŁz2 &E?ֲX'ghd@(9[&\}Ig!"ab2ۗ%Vɜ]G;&]6!*'^d-?ʾ2ֵ,5oO% ^:.ó2p3Qhd'sgEUw=ȧf&=Y(+xB~.U, \M:޾bւ)L]-6 whve#jttٓ_\ ~Cj몌%J|Ń96YyAFQ]ʮ]wC*~Eڗ6wuμCQ%%Ce +b;}5~~HLG"ZゾL:f*/\R* p _4ѥ!^_cU7_gbv;N*Õ6 /#)F:nl=t/wm+ dW7nsaEJT}uև 2ˆr+/T#J1Kk_#n{R<2 B5()&T'v_#I,T2GC$Dݾo&*AukWr!r$>O K,i6cqƺ;7!{-LI?=BGϑe)UƐ_T}/yuo('^D '3a 4 V?+,c(LE8aW,|}o=ky?_6`4p%7^I3δ45MA{=iʯ#NX.ytO0ܨg\g= /FUǭ#ȃTn% 9 {uFZzJipUǿ_]8me7t/?MӏPvXSt#1`>3'\7 mI; CbW/|:tz٢w=L+V=V臏5Ὲ1K tB\P[u t' NtK3jm3&veֻ 123 r)Vv,I>lqG~K1` .kN7|c>)QCIVt.g;L"^M uݧ\$IO ޏ$^nEh_P^JbBHufVvй6/ "r[`md{hMBȕgYOmF xj-*16' [hbZb2vv}tsA}~LKCw / joywPyJυOo~N]v7=!^ൔyAZ|X> ѵ)"Dt^Y$+GK SI}݅Jn=}kG33y<[LnsC{TT/7q78=>fjxyI|'Nu!n$y_=YT7՟MD`Qu 9pNJpςY%x%ǥyA`,u-o ~v⩠O;=SqV:;a!v;3r~4Ju?ok= ,$_')6%2i˼XXkOsM.q ~ XD^!su>OXwH|D#Օ_"I/SqkҾ\BNxZej/;m5nsp83]'Fgdꉃbmo[}ei|絡 sRCjfKb(d_9#9-X[ם*.ˇVsĖȰKqEr9v"8('M ~@I N(X1D$ݽS(-=Ig RzE;RiPhy$_nWz,Ui{KL//nD F-.+ĒfWSTkr6: p})ּ7̏ i\;ߟJ>K' v0lO[fC~+,Վӗ~>Aη]a($w{Zσ#ۛKZ$ [\T1jw ?">H=Т8op9~ϊ ; 1=c O;Eh{*ٻ.~e/,D&`yCV=J㹊\dz~!%v~V&0|Y`<-W5!ЕO3'|߬ykXъ~(H5dxJ@T]CTn(j}iuS_ L,CYVs'W4k>k}VըwR5if+n3yw`mxX;ʤg]F A?_/Ce :q\nc9Qm,ެE+q ̥a BMlyHCXћ*tRZZ,&_eo0ʝ習k`ǩIK/eU)l=’@vыݔ_qE ݓf7bP52 (.;3oA?ri0.ԘZyNaF8.,ʓTC/Qz(9Z4"XjYq]Hz(sboIGdPQTt|W؟{\EF@'B]tCq~ ikU;#R%\m;W!lXG"/t/|B_!X߳<썤aᄐq G91ɘUe?q~3 M5TR?Q_tR{KlԮ9Rip&^HYRfqDEV.5-3> ߲bx!(x0}!AmXAmM+ 0P@%IXoG}S82>16ߵsR6]/& î]2Ǽ {KDB~Ԗ׏;K2*f֝byXzscRL#hx26Pz>= ^4be=^p Ve2/hm#n_W}yFz\3;P5A6 n3;}u%~͍o+]CA< KihӋ{>KwBa֌`?<LG ҩ+Qt4՗qkqcjwrO fZ"u9뻫wGP"Xs9ɜ>՚Έ;Q+<^:gHKrgj= ϗLgQ6 +ͻzW/(ϙ=2Z-#jR8V3_@YO2vy׵q#atZ2ڼ>6_Q_Y73;(;ðjH6W-zz2F_RHccϝ&̒X`/)#P:mM aS,F̏7wkǑ5_0dH(Iv&-}R s/ܭK\:DZ2 16q-Gq'*- >w4/k%jLCNy1S*Vq ]]]Lw^rF+6<jnO9="JOFC1h=7я^PG\VlS,3Y+ 59y+՘9-.! *D l8:;|j}KouGF8WAU.*}CL->ݧu_T7Ij;qk oT(#YDSeyV&-rCL\ढDN_bfwIIW{I%>o/Wx}lyp \c-t 'v*{hfhB* [@sR6 R1mߧNkW J ֫n|AZ:=K1O_ 29}ݳ&1_bp;‹[AiyԠ_cmo߾(AJ\r-Кy kv)Y}E D|BAf\7iKKOL^-fe a CGvJU(!U刕J}|4s53UGc>ҡ%K gM~_BՁ}׺(&A>5Dݝp;\+ω/&Wn9ۦdc:xQ'^gse!gV٥RYcoD!|c~u=|Vap kM6¨I7BB{ m1|ZPe$"5.jɶ2:BlفM;jk cE/6_VS{mSKCfMa,Eu&𼜬wkMgsvY.gbV~m9xx IP _x9nDcORuzе+EYʣicx1*6L#s}h6n˺[j޲mDtmY $p+ZFZ`HMHza?$IZY/[~0l S IE w 'r|'Hם #ʻLnWNYJbNuХ_nArnPऎTEGYO5/*pSw ) Ȯ^.ǎގʨ׸}."g`(`F O9[4 wu0vho6^?6@|!zF++-6y #3/AYdXͺ8ԙ,6x\<mN&}Os$H6mKBzK&Yj0kwhOM& 0#E O!;PUZ-+|M Uv@d/yom;?Xk7Pot[XUA]AFɼg,rG-#_)>jO@ : n> 9E/WL;Kim$Qxi']2zL'lsz7^z%rGdGZ=D 5mtQ|Ʌxب#S'Of2(%+qqt;bpr-YgFGu@MbG( c@3v{CvMp-@ SgɉqYwnG!3ĘDZmb٭W&C-H+A,1&9&W@)aYQ %Q$}dzf@wV=h.gB#u}U9H!h:.zF[LhPQN|n Eb 32lC2Uʩ x7LC+D-eW̽/6cLi8lʿPZI`^ ƜypT!'ª'G4ҮfPY#LS=nu{h)HWmڴ@2 }{{PF4Ft4(ZRFT'Q)0IMD;EE%]Sa/b7sj߻ &&Y[GzZh3lwc6kII7]^o~ }T^ti!Ƥ xٷKDY zTV \@U(I+DŽmsϧԉp i@6] {5ѫ P8i\n[_P9g= #Ph~cXMJf!SyM&Bz]+avݯ&Ӎ׳&?!z"玪E:jzȂQ "+x:LfTF穆6G(_ZKe$]|tn40BdrG6:_vˋy} a)tНsEE`12NZ^\`7J)dSAԋ8Q^qn!6 YHGoҲqyҢ)y 0J K^)@97[6{Pg"RȮ CM:vO"~fԍgd{!\ P݈s, y-َ6e^塉>8DQF"t]K}L_a"߿CΧ+d plRxa5R HiG\aPf(*%Q@aP^Kdh·EVcqVyy|99:B@֥.oܲ0ֶE :QR7['S>p:+u˚F~|h0LefԢ|;dD @rM| r:"RyѵES-x#jGR"y G/jCoWl֢ ⰬyMEeqױrVBh;DM`z7FptqWBuswJGv\?\ 4%Neiθ+AbMMA`ŽyՀLEǂOL'5nQ}l6j{]\h>bD= uTQe`:ܔ4ic2Z N ;W/7D_f It*`a7%wk2( o`(`%Wz0FNC$gQyTWJIA<(f k]݌]Uy+jvbTS͐Zwɀ3p!r7N4]o8cם#bY6Է35k50\{޲ݢE q5q7T4Q,(&U^ KqvWv-t42`u?x Wb@t!M%o."*f𢈘1jhԉ\T'm.ݹk5`KS)'G(Ĺ{N=r9U?W{YŹN{QDU yGX/ߑux6z0Ev炍\?}Opd0SxeaMoUZ2}E\Sܓ[r Of%Q4?h Pk`L h s 1;5{'Iva8Pۙ{,$(bh #ipˀ2hw(5vĞ8Dumeov?z%vM;n:O1KgR=~~+&5|ջGKI(-XF7zb8 .4Q|Q- QA_`4npTe;yfv:OouҼ3'^4Ҭķ2{pϽՊi+MItm}Em-lіڡU.j^nwYj`JWTsi\2E{6  iC3 nL~oj4FMnE+y~V\Uh;E f+ꮽ]4XvDs)KQ?bng"g/(Bs:,^#sZ1KCy4kq"/M~&y_8Q`7j&:2loll}O<)v&]Ю8;|7Ŵ셚37/ w G4"ph Z ]DZU GCf5M^)֦rz(_&,~j `)+%ԅ 3vrwED~'4&hVgGϘ\\ʯ*]q5CTϾk |z`fȩq[wWlimx-fݗ 5˄_^V||@Xboc2gUgyRh9UH{; $JSk8 %u~ tj9N2!1' $ەxT{~;x 9o~VB gx=yśwWW o[ u$ɟ%M${5( 10xT4ǸR'0<.f5>ϮD;YU0vT+st0T5<\xҳ}dcۓ0q;OT[;t'՚Ws}bmpkxS=}Q!sߏ:d^F99E.=|:Hz] q~Y  :\*DYݻM&sZӞ4IfH$MJW$lOA*;xeǸ(cVeN06ҡHUWÎqҚ;Ҍ)q\2Dxw٭zGkUr÷~b2u|EpS^b1ޏ}+ {?{+O_N6t, ;uwd!tר]dLw3/Lr8a:s~Ry^hc6tFp gdkFAڀoP7XAk Ǝ"~O߮H:jxKHb>Q=r>Ĝ/r8VyKCC MqiV9E={f1ϯЂ#+lioz:9L%-TMtPr̉6a::~PCh!}m0኱9z Mo<@Iûdg 3K$XjQ^XqS5\3AJs2 ^hҁ'÷AɅe^\_ oSK~vtїߋA>|#-OK8RW<ˏHd8M"?NV <.mWSS&@Wٛ'ɮ;i0tifK,*Av JVXJࠧ~}$&F#4 vL'`A$Bohn5܅UWk5< \WV4^kf6zJkݶ~̱ǭy@URsF1ũr%Xm{S[rXh:r-;h{j Y۲rlldpt2,v>M)ۼAGXWb?H]*Ll~֚0;3hEӢE|XP8/\ U.\4cbYzF@ $C(1^U#M~2T9K|եiœXo]+72s~g z@6da,LRyЀ+Tr#%Gz#9#脁=G#nBNʂѭ 匒Ňr@K:#w)2S K6;V wgZ+!Gh>T[Q/J}j |1BOS ӟc7jwX"y9ʡ@5SӾ F0:]W'ۄ{ٌ_HV97nOc(Eq8xl ZY ^.CfkMp?kxY1i/;,{_ XKOJJwOB޻FAqc0X$x|nޤ҇WMgBD`8_w%NqqM}|G%CҧIhtRƔ)oI"6N ],o(@WqI3}Lnw/x*8F \(ZXچgcT!L7Ԁ(;O̩8XY(VZƱ!\!oMar"DeajUO"GmkhWM_ iOp:%IA4'͛i De&-Aw^OntNF0X{ N;%GDKHu,On297BH*_NC8vsJQhޕ[wRq'My-XmOF<~D⃂"8o;ֆ]J,{4\vMcq!jeyuȃUt]~K̤LVYի&Kl~wArIL l?Nu]@}|,<K$^*/ƀ?VG;6yʽx nۧ#9mdѧ;4~Ի)Ŗj:¯6kKw֌rnK I4W\/a&r'K_`Y^eBbø[!?9]Rf@yN}>B1HTfOTVVmn:SBû=6CW>hKJFV[c+"ߘz>5Zk[ G2q3#$UfA,v=UI\ߵ-f'髿/ir/(Ql)ۡV7ֿڻl7^-j:ccя"?_UVb*dTKWA0 u$.q -`q^՜^;r6D+sl g|nC* >Gp^Afƽmlۣ]\ [>M6w[<}ۡx/! PKzޠQ/}4,,ɣҧ`3"f+ G!O:\:2󉡝8P1.[v1*Xa#-QIItU3ߢwNs4P96D-'~}*RpZmiw]<[rZx^,[NhTy7 ^^^,x0'Py~DsK}{[Xmb `*soTczK~cTC<#⍛j+XIҼT5F:ʋD~k #O$G^g #4i/aNSYء}s+bXjϛ¡ZY 5ky7''ٍ,*-F8FoBcfoT,|ؐT/KmT1Ls)U0΅wߦB۴MDI[_7^=lQ!ؕ@Hju9 zر,_Shݑ7={Ŋ]gDx_  }}rR[ñݪZ4L IY\I}3Op";HA=a]Yhـ8bՍ~fq esqk/?B}B;Ƚ"#aʇ5<֫+f`=M oTLq܇=c;v #'b11/.UE GgN1 j{?fLVg6f7^1eU O㩢]y_~́H {k4ǭAV QFW~lC9d!_^c2!'5fq>%B>0~KxT=m)Wu[9Fc&_!& >-lMȕE5><;b 0戀]&l{s b ;$,!09MdI4U>Zq<9_ r4Mj4%Ր}EfEB9L[0Jpv#A}"?@)3,Wb;kRꋎd/X |+(vuj6iKv05i^B'ye |_Az}UiM6 Aٞ9E}S:EP6i&N5E[<TmF@/jKzeh魢QC _{lw1n#:HZnW?5y"<($g"0a'WG>7ޙ0,mij| jH;9FxRdqY݉J?g. +avt'x0a3swKNmҕz3q1CWWwC% +z9f X!^` {h䓰π7MC*0*pj55niv˭'%i.jهF;ҹmMʰw. bS?M `mt(Of~rzlb Kx{ٛ|}зWٍ$ qaMy &P1M4C OX dpKbFKDN~ "o5#lkz^pd!L/:&Za;I^Fi0rd;Us}~7Ci 4Wʿ+mI#X:5ڷ ;I_B/qD~NH@):k3iU_2 6Xn. [=/(?Ƌ<9oxSWY W)#`;0ɑrjQ~ ' )6c|n* /V/vKW\N ݻ0θ4e/6^gQW;1JQS0P^xF~OFPWI ؿQy$~_Dd(zf9[.`"seψ2bd_b 8}z<Д#`N;sO3dg >PP1> ^%>(1쌥}Vڡ\q0i+[UFNK΅P<4ZtS B|Ѡ6I._t/m`+$z1mNNii$N#˞I4o}D8w+i!&#AX)˩doOK(Gpìy-q&[ZzG7=?uj;0F<+}c뷗i<w)1BM(A[WN_7>2 2Wn :G}˟zGخ c˷hCEǀa)|E@|נ(Ӵ'ok rEaZmE 2;\RpM03*e.r|'DS5Z:m_(GJYgz y?wI==olۋk@<"[jYƧ3╸R;'!s33gQv6FÛ͒OqOdnR>UKl-Nuyը&=Gdg/U^_f"$ټPD6\zGN=-{R$1<ȱAd{܉@WR?vn$G'ktCVIAS_y*螛Bz/z:y+:ۼ7 =@93G#̎w]ėRo/p-5KkZ [[<;^sb9]" MA'6{j/ ד#!/5z][v"k&*DZCS88K߳.^»|3~7S6n@Cs aTiAd"d5Đ=-z{:'u7bO1*75coPNpldKQ-%O-b4>8<[hGh:04Yp5\y[oؑU5q0QaQ0b$UeĘ8RO˛)'lZR rI O';"ҠhaAn31cm{!P}&T}|E ,'$Ӓ"G6I>?Ξf~iZL$Hu eGܥ]%_V~ `DKw]y eh*9 g9L*RIKس㒱K1윕NT}vyЌ(nL)?f! B.,FGi/IiG;d{V5,*? HQax`w\7տ>|ży8@ oΪTo͗25|Tjq1##QX5c:SJw>{l<Qõw#)I Ov/6%::'3]Ľ/vۀͭ>p Xdc2I07M1C"byjplݷ{%nUj@r_S &MZ݋$ٚj^Ԥ³3^3؋? -A ]TM}<_PAh(söDuVlT-+vͧ(tޓup٬rHb~VOw#Y緣֢lFI&&&vW䀁Z)»?\6Ntl524~E>P N$edelSqcΎT4d9C_]7F~X6o(F^GUNFZh軬41B,yp`ad\-Ӣ0Է(ZF#OY~LQH^XUoQԨIRp&g; -2Btٌ\ҫ }W'lH?R'qe!E#"?A5=c IIm" DG`'ُrgRA?nwdt6ɠZ݊f#3PؑGa9i8P譤0 Ñ攬)Y<5k8MLMMeᏊyHۑu,"x,9$ qysh[IjCl .j]x!R:*]a3L~(AQFJ!DD?wa`g EH&jU$H[Up`%GrD3S{[!6S;EpU ڠ h|,P&R+z=9uB7FR D4v|>;Z2?\ctEѴO+\U3H|n Zza>KE6d*qh! 4X u!(W|s/~t=.# mfc#޽b06!XqMVY$IQzwȞ*t'eOwϺ)ev vהct/8vBX>+C462WF]L>ULNq$xNg7\C6uI)SzYu8A"tf|;mQ ($o?r9D}1wjh֑hTBp\kwoLPߴ֊`9OoRڠd~Dx2r]w{|XVYȊ7f|h\јP̙~=h $66]僊C!yf`Ijƀs_? qeo\G@*"nm7+ D} i<;uapfbNo%n Q5.\PMNGFm1֙*ǭ~eJwNQIެ} uTL^Ѣ73tIąbx@gW^"ea[$0t7,|i׋]IZd2/mu#}"ˬ6?&3+r[eQ*G//X '3]g.D4!ޣ\yqQV`{xms6ZϟoiNnl/8zm(jv*DB];Jbk_]$\ӧؓ Ykꞯgُ P^|gaf0Fa0NVՀ+ +uO=,Ӟ$hZ 6IZq(KgdұX&0WO+ (4i7;`3 E֕?]^6NR{7k4N$Fgo%E<tԉK\JAzk` AER q\d{rJ{Ns(ZLdUp&1x CҴkx_9ըISЩv.97Y+EaUE}%DdEY~`,egVrvsɇ}-D; ; v й:XXG:[<(4Лx2Kry 0Am+l >)B 5UO4B2m,YQ1#̙yjs~Ցwx ,g` rx'`0ӪEwj0v !{!]6|)TPrؤW ԉG抁QyVN7 /9¢uݯtw/3%LM!充z8Wy}eaоKOh|_-FVnwML?[6Mʿ?$F9[(=mAz]7K+mNp$sQ<%~cWu*P{E(|2I3L_aFm NV/l~-ۢϏ\Fa?W5c-\٨IwA7- /"wò%_5DLZ7 \indś:O8iylׯσtR'ʉFŊ"vyҠ\ )I҄БTR/a.=ĭn;?1RS %lę.y`a4'FxOwE4y #JVcO p![E.{ͽ:0er%e7nZ .#"0 3T_3 '(BI0 ށQ3Փ ɐaa2~65^c%11%FѢ[ #Jd +jv9MTܕ]g9W̙p1+ ̥qρEw *xTΉf Owd `hr}񿸋Mg٭߀{ H~YI߉"n',9 qVWEU VTUEJH ㄛP2>}|"d5nRJ|Ş }+rP~n#մygбQSH7ޥr%s ;HPc Ht l+O#AHw hQ5-2F@BxV̈́4i&(EKHyf c:=g$?ry%u},NG9Baq -+5AHfBm #nVjt58l{ %BKw-ԓ82Ľ4}*F73ΝoC^dIJP jZ>}s Ʈa1 J2\d?:ZF&F(0 h.?~X hfkbxѷk_y^RH{2aG$3hFVzUm /|w0S<[=>#臯`TQ|W ED[FUw7N}Qgi$<̊;9ģ6o}xr=LIOo5&?m  r3g,˘}bdc'|Ok܂^ЈIGbIe Ђ'W14mmZj,N>':$?Bp4+6v졁;HD ɳlE%Π˱ηz70g%~mtC,_n@\Xfv `SRnO\EC VX+@ zoX- $$!sCzO!vyQr5)]x7u^jg>1 & ?SJp o׼2MrZVF*^)Z*ІK0sgWR5~<$HVy^g_˚#VAȭUfiPL. >"Wr-[)6H%ի>z``mF|:l`ƩFliu a^^upl8"ȳeȰ({XsU qПd 7SV{~c C&^oZ: k@>`؍~=R&>3fБjoU3 .vh&fLv? [|q!#ecJ~nK3bv馃8+=NʧysŊ/?V9L{eN S[غ2?tE|EkW eMye%p]cj|:r9Jo@YW*/qUlNcǔ@*B6hfTl.IĖk;=z2h#튛:'ߍVUuA)XxѧҨO I>ln-PI xpWlѢ!G8z.8'G",d;Z=쾴H6W~6!_x E7FF#D ^=G7񊐪#\rUb[)ŗn%UINWRqt-"QSxg)cb%"w gc`s$օWX@|Û8jŋDj[^FJ3*Oo[ &ij%i{1+Tjm]WE1)t{\RT[f<8]--%7e҈N,#qwzi { aOS,Kx<{s&.9 o )L!WzVP=VڦLmNwpaL{>L46>E"0b53ߗCf7sXt_ YY!=)j 9Cf]ȵ w([O:뺨{Q{ܱ/J8R(N="?48!aߝ2 :盀[ڏ@7qZox5Bk9Q$Pd 긮dfjW+J ؤ`x/;TARq1>V԰|@?nOJ?RnTL > 1 R!Lɇ5Sms+.P,fM3鏹YuN]ŝH>n/ڐ6%O] =u S,辜=%[=_6߶רp&8 )("ێdx…AM7a,S~=P6੮0n:eToRtyN_w[svQ T֝˻4B5 <`ڹMܒ~%EARACV)a_} 2H}bQ:W{i?u|\+`2$mi^>"&$"9_NM{Q"`.9*~CP]B̹ýYcDYK0*?&=)Ա*֢uw|';fe]I6{;Dɝ Wƺk@E %Uz5x_'r4L'¯V[ k5p_!^ͺ ׬-%etAKm0zTjq%и'uUD0-RLжF0Wc-Pz&tWڂlQV-Nф -(? &Kz&*nl,*߈Y)fZd} <g[ܳ#-]0ރp1qoq>wfID&}@2>6[fTm7N.M M>RLg&9N13@[(+0r~RfV{VM tl~^頢ᓰ?9xL.rǺxDu|q]}0bo4.\9ߡfdj?g|HM2N̯Q+/\03ƮjeȊ5~XYN˞)`'Y7G[pGZRףH)c]nr3,է[+9uUeڽMNkSvO@}A}A̺ɺ߃ `03S=eW}g@8]&3N|ASśvJm=0 `1Rc@jI㦱i2"g(fkQ^6h_q $y9ӊF5PHO.V:SgLߑA؟VΥzBɖ1[Kɘh]0b滘qa^0Y4~=8e!߭ϋT> "=VB2a ]ۄzX 0#CY9=5\ zkHʾ$Fgl݊G~sBW: M.Ni\=SG'`gWdz*ʧ`Q?/B'ۜ{إ[70wTs+=f-̦P"5&2D ?N cVU7dJ/ѵiu"LD$5[012C ϰof`с-(nso5 cl*SFBA+ݎByscP\Ld'utKq(ul[_ڈ$睭PwN(sӶ5~OO'm 9资vq'I>M_ V7$i9WqvOx+&u啳2Κ;oMU󫾾1B>M wRIg So;61Z1bO@H(ۜA`=ќ0v}pC۞9ƈ F0 !>9A)s]2p\?RPފ]Xi\ {J;[C@r1mQ,}/īSeV[s aAP62AϧbzŜ ވ.΃WJ]hXOguh'd=ȢX/Rh8yW!ظ@peJs?$9ns.mJOCl[p +qH}I2isg8gca ?&!uE ~_~SvgVgRG^)fߦR1D7[1iT \ﲷ6\Kxua&ctrrCB`\N^oqj.WK-k*xPŅL(ӈ>}}>|/n } ,^%)Sg[sx OǦQT~2!ƼEr^"sN!)# Sa, I? Le`\ u]3Dw'|ݐ+YLcy {CWrO`\z>j\5~Ee t1frG%Q{4aeLc>qe^$ =Iͮw΂:C%㌋g暰.'HҀ@2ϒ T3eôovW֕.,N ck] Urͧ#A0Y=<0ƕT)^.Qtg$)L-08Tm0IT[C8i0m<<;MJ]7('Px5KŌ[ i]dVm GmILz7)3G`k{bP v"VA ڊȤ}X?5k^U`f ;QU>`tpHt?=ez$٬{fJe'g~xڛHLmxմ '}x Z5*Pc&>q>g6aG1/oO.3̟x5*\b|[cճn?9W@OC06[?@P@/^Xа](AWgq'Jց? RMmKBLJ@y)v1 AdՃT1;^%WUHQevNqMkgAb.˅#D@M̴nPyPtG:}3*j^{+Nc'39+ x7¤La sbSοwcV  *Uj(/ #G4R9@mۢTXAJr5^UnT1 agbtndJP P<"2D!1dGI2y"Q}\2zQBy Cʔg,nd\nP47-J  0 {mEoi'nY;gx?|) Y%E!]ZYzgDBuWNSrc"K%wi<;wcʼn[z/Z0Ok8eIDW}Ż[ `֗j_O0 Y5vgn^lM{,fN=\ y֋j|S\g|53J1W62:+Z**<t|B__cdbq n&$U؛FMԌLUBIa4wKYm)KU \f({ך =-S7߾y<]T/:m VVkmH: Hxk5I]<]~3 }AjpK7ekzYȾR *1 ЈU謭-'Rt+ngH.x+lydׯ| JE^YܦK,92V{ UQ+ƭU[_κ쏽t_ Ĕz8(B[4, xj|zR?UrIh e Y AInZ;偷1kՔi5NٝX+c4s6E[xT`Z3%(؈V7iY%*> ͫ{j J T/9= SAfDϏ?9sd4Y,?@ ^PG{[ʸ8.UXv?#dx ~0!?|dդ-<9$2j1Js"#=5Q7d%vV|g+5 n\G^{6_JSMSSv`iܩ-PEuWp]>cnZ 5m7A W'8̌ 1 {$׬`*.`B:mMܒPlU77J'ifV`%56̓#Hb#076K^}tw2@%_&Ҋ{LbbH`7\/eyƀZhk9-Rw͋ƭgW k)F$R:Q]u!;QE 7d$0K9l~|a"+:XQH%Vo@R4<\hx2h&u=ie*iTj\y40 s9M(5\8կ'ѽTjY'k*JA?ƈX,z.}oÙuiM}LNvdp?y$ϥa7HҷPu{QW9q̩vBV$y;+ q ׀?iZw:Ofj|g]6&?VëvOYؤ~:ڀZC|}TƲ=z5tðDM nG\ɐM \MhK-7sN{s0ϸm="ư(fe[45ON_elS/ Xe~z,$P:9Rܑ+[7lَI< dW`7tg!A65~ϯ*0^m4}/>;[s݄xfq ~EmɉڼKWQEh0p z"ę+}H 5)Ȏر9r[]f\v˜ާP$SȁF$LCw`ؖat -Qz~OC`9ڜ"Z zeU^Բ$ [p?ˏFm2OBL) hˈ#AM=&v"6voH8⃨z$$0#R#k} =0#r/OW$ ;ۣq:/18!IhVTDlPv˹Z %xu5CD(nhcFOW}w:& E'"TpPakufD|!6l:7 0ykhpp~Y5w)ϥt^R`aeib-TL;\h_[T 8n$gS*AZ$j|}UYrM qh$QREӶv^|T|K@-W3ɯTxQ.p<]2uw2S3O{NCik)3or~3^A8OS 'Z8[O], TPFnR "3'3! _IFtd:((ƦZHKHy+^}UךhDgx'e_6U#]}oՓ2RĞ-La&'KeM!q 9P3"P$N&]M}OҢ>hQM9~){"\o݀#ӻy%Do- צcCb'ƬioǸge 5adDUPahhp}_}quD&yfK _ h7㍕b\A\Q7/x( +J1xYs'\.$Apwf5=ыH@5^g5/4 W/{HnD0 {4ŞX-4[,B?KlIi%=n+7 Ү)Q[x.h-.8 e'&&Gj>VJ qVSEL?idH]Ժ|r  <V"sG✤> <|%5 T#k\fێ_y(Zu\JDz+X"rtsU^#9J3Et`}*)Yig>iRϙb% [n(̲ECY?N u*ĪtBx426);XUoܬh@H:B"ga=Z$g91I~jM{%I 'uGyMpn}ɵg-X35u++ BxD&<~컦:"P :W$uM(4Xfw>Z,GuVEYz K5^"~zJ\B=&g3䃪v,3r\o{Ȍg5a}gYҨLY\N^Vzj|t3dŅQ:0H62\V`=bIHQ`NhBXJDVf2oQ 7dzyb .qb3V9<"U/a krK6c?&6H}.TE;vWW˗;z"hetsgjD[:9xh,l`G0hw*. !*Hs@h<8TvN, -AҜh3;w>|!n ɿEƽE'!+ P"jf*ٮ?i<3li^Z,|x^o@'a$3 d$53z0EU)А^ ~~u^}޶}_3&7jj͂fk\1 Gec\ma^ a!w?G#v%wX8E*wDs;HB1q)jH!zEWZQK1p)4PQkh[ZYfy$6rHB8eOSVi?uڮ6o)ۀUnYKY7ra|@o5Y4]EFbcV:xAi%njY_ԝ,BؼND6,f 8^XIxL> $#2N[1 oa}E㼴I뽑} \p{/]wni} \ŭ1p_IXW?=~HG$|QndQMC dJƍ^YR"nfm*R؊|ϕ4?Va7B*p7Zt* ;BtQ/e{<{d*OWdb]w8 7b y*b"6ZReѿA!>`5s9gIZBAQRϘhMʡ6 9N,Z,NjUZq.U&Y]B.H>+VU}śL=}ai͓ZѭKrEENč; |-2s̯>4 (9܈d&S3LK$w+?#Ԓp6EzPo9a|# ׻uߢW(f ;JeqtD(ft;^ %?54sEםKxXu5f,vj鳹C| -FT(dQ4A)˹x^Ҭ0q)1٪eQ$5Tkb2b*TIQ;X)x)7Y>UB+Nw:IQNg1I+@ߖn^$y@uUqyrٰL+Yoo-"+$. 'o/5e;f~qZ1۲鏲X5 [Ul@Y({{|w˨ߍY&>5qcг`7vWD!DWHcM@Db1IZ7 (guq`)/0kA1 ;2T,_Ȍ !F waKE9|O3Xxe?TI?PKV$RPHj|png/Payment.pngX?O"!MڳFFkTmEڳVTښ.6EU(WѨڱ/<qss]>fp>8`52@0z H?*l\:FVPzXi[:R}hpq1ziux ;.A\h1V4)v(4eGIGh֒C.%dNDlT0L)JhKcj}luݛns`[ oް|>JLe~.f67K݊M1nK]2Fuْ?x!$#uX۱x791LKgA'{zydSBv݊o3߆RDD%?]\׳?);ؓP>Dm؀?* :v yKEjqWaoVEbynx#9K"={B~-&U;i{uZ]Qs8G`[G.J0OOQ|*vE[{UB AEچije$tPN^J; bRgZ0˿p/g=t&W-sNz`.'Opx5Fmβ^,(ˏ ?{ELݍΠc-sqa!!:j,ׯc5iؖ,+%wx)WM-V.D*okRJ޼,+Z睩>K؉Β?VT_ur+x_e4㖲h7Z/Ȩ7}XͦHXBw,a rYAe~Df'E'G,seGg@X+.R}L۱8*2WН+.;%d^U X?%dilVfv` "hMumCMuRB"[E\5EoWZ-|ld:dfjNjZLVn;@W :~/G涤0. 3~q2@$E&e&"co(Rb!]Zj[ϺR; hHaЋQMfjnˍt C'Zp5U Ƅ5XЎNdz:ߘˢaAb}K`f2Zn=RXs w(p30Yh8A%oW86&*Ԋw8CFk(эA$$/6ǻ#=" Q6."Z }4}kH/REa ,WR;07*F?\t@UQIV3tJ͡SeLES&ZjŠ㵰31*~_}#zdKP(sMg1X_9jka=E<Q|ӰҶԶ T %jJb@*O\6l#m۶("Q?d. JG KT}Yl U`Y%$-]Ƕ q >yʡi/$ |/p[1c&8]yX/WgэնP\IqR(9Vٰ|އ^0 _N+ fK~͐Qm)Ȍ1B]y7Jqw^j?,<7,?|)!@_JN?Y1Bpظa`<[qv!2ZVJ^:qm`;h芷,}baj^9GpgTZ~]Pԧz!<D1'Mg$ÏD}E :LHwh)VˉVӴ|! 3JK'.LD"na9VRfVHgNd@ȣUx #E=1*b " _i<cV j•G7gw8a"soa"6Atr*( Bd a~qN V^dwi[/E'2̠qF n{ &^Vƞ<\\]r_4CNjCCZ|R)mwm=^?ixnZk{g1(>qY[ !\]yAKs8b$ lvt?X<(>eIDȿ]MjsiMB铷:aGJg%;:&ZG5w(*IStfV-}EʅHM|6n1h!8{иN,!y:ϝAOl[ Z6Z?Q\f_QˈI#G 9]Q%-D'drj`+O,XWSjo5p$9AP‰>g)Hmt_qL3qnHEݨO{F# }\$5+V뺬!Wrg-y^T\+q|_~c~^k$XӀ /s2<ܮ/+S95z 7kueѹsPBD=;Q9uphltXBcӸC7?j iy$*3EL< k;SC{qRхLwHUINz!z{OfdOI? >w/[ž]*!uՕn K#\޷N8LbmN>7꽳.>(C"ʕbK2GNm&6w,sKpIY7EF5_=?pxE Th>XeE -}r|('=cq ɑ=>!X~̩?<]Zv=^p8Ż2vRI=ƽYyx[ܧ~٩H`Hy=@2%b}KO/#2!g뒪\w˚*^k89K][@?QfdlQ_" e>ve=f?v:SWUD$í90U6 [8GBsT 6,H*A¤+؀^m"-.vi4$V:bZ8Vg2~7Q+3<7Xi8@KVw0=NX=R$&TPt ! UWx$p 4GvbMuyzT9\:¤h6;M'~78 yV߈!3@bu$H{WĢgN^b/. s/\ wڑLŶbģdc Xerd<þMKY&x>Ww7I ڦ 3+kC%T8͜,40ȧKQ`uR x9 B)ێ[N(YrULrMGGсAXh=k)TAsӗ0jV7Z|'qGyۯpQ;k[D@(HZ>!]z]PstF{JL0C 0Sz@[#_hݏ1~t A$nr5%eF l{iu' 5/ARy9PrR?P)@VcIc,#-L2W?/ixek̲)/D}ʪ~hBb:oԮٳ|>,_jh0=% GEa1r>q/oc\#N~*O1Rkëv7RIQG+KD3vb(b99˓l?4IQ% @Fc_=]'GQn )Y쉸HYw߆vy׺gc>fINTT |l%s{Wۙ3KՌ!b J G5sb:M(pPHS>.@n{P^C X?-A=L_=@oy!+ϫ*7 'bn̡^̭ϔU_M8-l^:S}&V6M R\p7Ӧ/P<߂u8~럍 e>U>S%9_o ! hVwӾR@7~4_u<7! 5U7=F[?Z7=b-5OM$wv*/e$]TGa6Q~'zW /s+чkP/Bѡt5*GMo=8MzZ7r+:'YeΖL{` `2jN:#$N=HdQҿS/alyk-7G3jtVJ uKvخ\Sj gh_|o L5DA2L_Wl˒''+ rgB2'Ecx"'fVH{!(`(uy1)% 5N2%wee9bwuw+V'~O3-SiHKԝv] гc;2~B~v3TaJ3>TcUz\s괾ױVCG0KMh6(ˈ:0z" 8]QKf-(G X jĿ}`Ŕ7%TGLYCāviOYF}á j]B2kM2 m"T+lZ0Sɥ٭ zvgR;~ک%.إs/n`猞wKeђ5 p8jE;# /_x)\1O͖_" eӆIۺK8E8 ƈ%1']1Jt [ےM \n7dbj>WE#T b|ȷvp3_˯ .Ռ(|sI;6}ǩFbM3VdDˠ/1+AsAR"&I1ȘGsd8464Q@z]H< %EU/t]|n~V^:HP/ң" "qU9ā*]hqy]W%=@B`"Hτ!)@wbL-^5M;3oUBL^f|" fUM=z|HO?x`(_`ۇ#k(zhd;РGP/Sp*bc6x#bڣVK:E &p< /FPdt_TK MGg]ې P4}"ą?  p4O*KOA+%m }6XeOym ksP(2 %io]/ F>=τaq4 O8K=_Sl=`kI -[tK*e}muhxi\)VnclfDk4(Ҫ+t*Ga(ͷ!~MeDv[<9QƎR& 4FY/ӣoڌUk;rWE{iWd9/E߻Ш"9h@uӝzyB/ W]'='++(We$f՗sàM Qf:(ݪ|SQ@;˽GVn;Ϯ3U׭/X~AN I rᢲQZ%ҘF=@LudXk׈^^0UTІpݡex.a>SG>2"].}K˂Mn0ek`7] A꽈7]\{ڣ6I9OJ·~P6{C.P_5d9/;h Mq ,v}.vu,0bQm5){>h'Hgfҝ'4Q*OQI#}dr>#D>Nt;Vk/E/<HZ9RkUqk'p]d[x8gP,Nch#|x!0K-apMzr3+ԫ%jm,1^_?u +`(t4Xq}5f܏.|ZKPu%ݔF<~ wjFOхmoW=Bgwqvf"?" ̟#2[I W-k BAIϾbma a .W][Wv=nj& Mu7PԲ)xŚb?;z"9@d,a0GvgXZ*sOIF!}U\HC7<'D{66ObQFۖ_K\xtEQ%_ƔK}FyXȑ+Cx$]g6M)C@Yz P _q>tOkpB74BDeǤaN0AGh-&Y}6P)]Y L^`P  9Fb9ٻB8W@DLit=LFI?AiǦw[өVr}^#?8~w;) tۗose1{n/VsA r qި:6 `ᗟWoO)#]*r?j|!&_.Qɪ8׀u;\FOH_Hv 14Rny~&NK,,_M,Fs%R09sYT7bջ?!m`:xLǾ4BU׀zpfD0:.݅Znk )GgAl%`b1i2"vwvf_YV?lMwqi}Ԑy>L0I~ø=iͮ~c-FQW/Ω)7)+#K#\':t.k>P !_rټ%'z?mV6C}dyқI]5>8uHjFIn!libFoH!b#["TKk X=m|7޸z BZ9K=,Kσ{͝>| l &ENF!xi$ubTGC@!z6ܽIg368߹-Q8>XWr3]e"'n6/ug_&DQnDrbt=: DFqbR|Y.$ j%Ӊ7VhLT<L;JNTkUΡVA:Uo7!`徶\Jo^3f% I25$ٍ {j >86Gy\5Nёoi0 65!4?z1Nݓa+ r :CjVWoaRԉa۵=^@juĔ_RFPjBj9\H@M FzSJߡB6?q&+zZp<+~Ley๞]Y;SI )xZ.7醠Ip'k'}At ܐґDADEZp ǒXډw}fޥc"7Wۊ ×,5dߦoYk_w]c;O2xZ*'vE%Y=zfF%~38):zH)'CMKY)4lŀSYmMLS'+E~CN7aOM_˶p`ma>̾;uZ#8 i Tlߖ?=8y:?@a@G+ېyB`t0)=y0 E63Q%؊&I2s[vSHCm<8֕NhY='U<:xPC-1Dj"a3P!u c79-4 OwbZA8 tO`pep>'Dt׋:XU[X.Y穼:W;FP լU#{4߯TX0[ 3@#SѱG[ŻNʂ|qWw D!B2~nA`=KmpFm)fgѴq2(yUo/#-譖r՗az"prlT707zEH+y fqȵvy qr1+/1=m_B=1翔|slaߕG8%|%i6q2o-7#T22=[?I3;VzY_Թ?倭 9h=/M[&k1 |m,>9X(Е$43;]n%Ka`$U>z7>OaY 5H4+›/j$WP-¬?2 \$y:Z.\T]r)rd31AzZbٴ1Bxŗ]V&Ҹ}6ؓ_DOU*{Z~' *{ ei~qO`^lS4[F+⸰$|BL҂? J(ٕvZ(lI's0է禨&h`EM#}-S+A2_z%sq--tzXsŽߩb>G=^*Hgr\O?? H{z7Kt\$/E <#=% Pە7@<ߣ7;WlwPG;3l<p0d:Xsdޕމr'IrH1ſ/^vp'Qv+Wkz2>9`T̷j_r#=Jޮ?ߨC462ݎ==^FMY+1Hv_׃D`@`%u:EbGy/\ֲ~[] Z 35@8uC,s5S9UʦEi?|ZY݃j}&irՀLj-}#JCVRWY)rC`~vEO+npO Q.#xLZdfb1e9(PI,<қB&c*5sڻ9^SQ0uaopNØّ p/[{|\Z~jPP|}R I/ ? q4]3(p%nrjC$A'Vpvq0$}{DwqFۂ9q@b0x;9UT #' sl/h{UPS`jOa ykݎ>v.{-'[Yqgxm'Enj[p,#!`u_V@J&W${ {^UqC3i|ԫN % H0 &|ѵAD:! YáPL  tn_eݛ\J~_~(W('AuP& w+/AO4i y}Ҡ!c n粐:;Dded"/3VfX57rF6ip2yB/޺)bKIi@4^0 00tO]9)5wFCd>xHEJSuK;'i'YNEMVN iA X1^,3q,0hMdiy5Ai1|R q_3yl N4s}e! 8OD[$]kJ~,]N>×ML{f{\MG.P jd? a_(|kFC[G)re,\z ,z.] dE:M{\h7)ٮӦ: Ѱlط$?ōxYښ#M6FS5fJ#/l7z?dYpH/NL!_ y=_$bl"Z^h#~)6%!7oQ;- 5 8;#^hؠtF|l\ƪ&1!psplS'M/G;HȮܷ˒/ otf[*i/X.9rTvX//XܷyNːwEmlyW3vZg1{uo /s$-0eDw(h-<)˷c ߵggR=gP񣙿z^۵|mPrŵz3q&2&|5Dh8ثo)nlNiAIk;6XETb>DAA\cT}4{}CX @Vʇ8ߡW_ pۥYl&vc|u1AFb:r uRnTT~U~&eoSaKܑk添4M*6>d>9m%U5,qGa`%)~ގ“8tLw+X^4$n8ȮdiDF`"ZEםx% lΤ2S duRsK93XSzÀfaj@ Q!UM^fClnlA?Bsm{KEX:̡f達qˎldp_Kpcsi|=˓`|aCZ*ZHjbMQ^'~Τʕ29dsqOB6jZ x/~rKyr90YZŋ{{g`8mG%=DIp_052A2Emg sG6Ep]y3Bh3 F1S_Q!3 9;5+BH0=(1i>R8siGۨ%4)2dM]ŏfXXQczZNcp2_UnbQ:.NVNF8A3c~O2y+V}_|_[<|^R |? SR@2.$Lbni_;ZK7cj j|ࠚ\6끕3)6j]"ڃh0B Xs0b.:L5GnT]R0fTus-r_s].؂֬*۴XO^-:1 M8$TY˜sm"w)$yxltpeQWaqq r5C`;ƙ;zJp^JB^0.+W\9dM?ְn_9H4Uཕ[kQeM~]⇙O\gI*ّBM%ùl>o#qŹaē?O«;-Dz]2ޚo RRv_j{JxΗ9 KU0*aSǢ a 5ǐJwLǧGPl{N-Aϵ,Ylץip#Km G @KrRSpTh+>;mGEt|BԽJZ_k݁~Uᕮ޿_r.oDzCV>OӳOr͈һ8ͅ@e+/QsL۳Sҧ4AOkZu&dk+X>9 :(3ZB~md?~Zoh 4@l$ZX?O\H.yx%˜ r$ہw<..f[Av+L&^OXQ3QNNk'+W?u@O.;u}±9RH$S5TnjsV#Gڸ<7=ɎqLcghG=)| JV$wk [awµ7x_\ a&j^lo2m<~:NO]vw6paxjxֻ]]pHJ7!UkY#oK 8!_}]6s)z|mэ=}'3SӬm{Լx_>0de<2Z=]/n\$PPB\ȈH5:"@P„.B`(Ly۱]C@ PLYv>H䋕/'^* O~Lmg/ rnec1*`ZLRDaFY79d d >U XF2k/rgy^N 9jQp !**Nz٧H)@ƨD>'O-O٦=)@=h@x:fbWs g-Yވq=Ǻ?vj!_0:u, )|^aDu52JJIPRw|[ zNO5`RORf%B8P*"*W{~r73roNi~7@jb-)1*ned1?Pɹp,1G?u4Hqq?/0G*RR|V @1 &+%K6` fYgоևr,O7kS[}h՗L9Di[ԥ[j}!q^FKyi\%c^YnaiN?maGӉ.†Hjd/l=e%E{l'6eN@՛ 9h-㚲xL7͎l}9JuXwv䱵& '$KmԛmUD|' BN_~NMQ$q[fܦՠ/Sm|ƄVߎpeE ِXFY`{_}agAv C͢(FRYA (UT!⤱xaR2i}yB-NRlx9_8\kem`dRHOS9~yj]!U'"CҦյW’`lSQ8`ԹWyAWGI]BTx1MR/M5GA7fJACіł;~%ϫ'^W,TƌMvzZiy[X]rJZX Px&sg\aaϛbX/)wmGѕ4kB"@GHRň!δBB`qz&R>l$NB"|3.eɍ P5mFƏ= $1xMhcWkM_S;K׶&Rxmc6kolsqa䋕"]mTL[A+r`aTDA[1$8|OuNjӞAo.)_jZ? X)(ʉXؓՖ&b:qǮ&)9E*֥c$/~'/MdOOw' g9h ebqRGT:3 v.E/_iaFA;`CgW~&M}lVƆ bꢈoD/6+%8᫗9%;^`XV|ƆPm\0߰ro #O"z?8XY)(Ja~ SdB0{!^̬*RXg.P ag8| 7 ߏ) RN.CfdR2tcM=26if?eKYD"Ai'&Ty`3Kh^OJk8T0A nKEfݭ#-@O;h^˅ڟY6=<\5j"mAYc]l0^vLJZɉkgؐ#2_M|8 O?qA qYLg`?lfxuDp;+fǡxEb+t j`OCN>9OL7' 's6o;isR)b&2>GYUzl3}`'V:[FPx ΤiLwv;mP\)2¯$J^$S P7ɛdet]P m8~NpY(2BQ͡ l3 d1L/00 D{襱1(Ռ2?J(ʛ 9 _s|4kUmsu !y7L(X$V=qSC[k[?iE;J; mXܧO~N0pECd4Tk2 TYmbvtk~im(h|UQ;|~a>b?ULiDgcH/E(iݍ1.ǐ(BCj`lv%vO9N*̰EˤQz-7Y^'I\y0ZY3~e/54B4lm \ 8'E>8Bl_[\0Ȇ $(q,L{;"I*& Y`a(g%ۧ0r]Zlu;5K iJ~"0'yJ.uSt?e{Q )u7fi;}?;BuCRౣ>/43n٠ŖOH>LƟwԆ3I򡘎bjnSc=PȚQ 8ί] Ndr}'N?aU^ ɺBT+w$Tkw"*Ke/^{0ƁH,4q:r)v %+OD)>5eH t`܇C/?~T#<!2KvﻋɦOڎC)G;|2t| lX-5qw?bWY]^jC}vށ~ZrM v_#g8buф %/N Oa26#)?=Q'GavkзGn8\¼denΒBg;%Zn?&<=o3w1"K&W%"$ *n#)S'l'nCpsT% \0S녩J 04(XE7Bhtd/MxRl`ƉDLI}9˶B=^ol#7$L) A#OЫoAR+9H!I<:d5dQs-xy0?\G5י@/\03;`LzQ|SeJZI*͊Rh%(ƍ,~5Z״|w|.?6e MDa y^z.{X#+25o|]YJ;.qDn{:(|^So K Ug#h[Ƴ|D}[A#AX >[n~WWg}MK:ΥAl3p[O_֑hhskrY%^4])_=oO #MOi#𢀲g>-ڟ<׽*e}~D2h~% [4LѼF񛷮 Ͻ<tM#afwb6лo=3sHfO4K%OcNjZJ0R#gOhݷS UTuup"6iHۿBiVvvHITY VMo/%luSٓi3]9ze^ ^cDI-O/Osaz)\rD2\]{ޑQǟ6'ݞVϾZ$u(Z)x{~1_-[5a^ ʮA'sӝr>Ѥd ea<7Ƀ0T&A <X[ ;IgtUU| e:]I-Kw5o v'ruް; [l5Xlf:-k,fu| :t!7w1թ}+[Jܼqﶏ"&7 %tǫvF,9ДѐNeSN:]!g'-ij:E ^E_)mg5*#|v9?0" Fn0ƣzǣyB.Q5ݠD^ 4A4&jv;JH#tBZ(nΠXB5%F_Pq]!}^mj MΖb͛Eв-k3A;<^۾3ǜH]zVOF|);~l >Vݽɵst/>c,>1̘4*#Cr@N n J -R(G%/,`^{0, ).PPN7WTT%, T5B)PKj%iP(-t %f tnKeO,F-=\kyf,)#p3eIS|vd1|{_l̕YD7MIn6zc2o`b"V mYlNu )oK֋b#؛b(kmU!SU("1z?w1ӗRnuoƓ d̙:¤x.nJX5g~,_5=U3cIp@ضAi{)nHZ Dg= 1,v+Tص'K W?s8]$8OӬc=`$sACIddv(:֒Kp{qnbk,%KSpՓ-=wNq8Sm9.KhZ "[sEU!zXuJF[zuQ"1W ) #b 5nz|xuu>*~x]PRE? FOpĦťGG*p`d9TCRZg3, bbIx/]6=|SFYmP$b"S[v}uBCtHȖ$lUIԄ… -Uwb^pQ (J;W=h>R1M[ ޓanO,*ˤ RF2ВF?2i;#̴'?l{'WjrmN}8^n~IhsneqæAT|h*H3d.Ni\^P{4 :nfX9_DJE%I:^A+G2FC !D$xf…GL^\AU].d'R+'r.PxfْI-mMK_.ͫf"ڗlPs pc~)H?35 K`8~VKFtv5~mp ȺQoY6\e4I+fa!i+m^wR6t Wfa۞l+739bq; [jb v/-;Is,QD&'g^ 2|_? ( n$cV,/ }z5WG?_%0Ys--klFOV)+͠p`A*x}bU::drQ1t{?-")dP^T@UyAw/;ʜm-oofD?YmwqU/Ea̫[[EYtlIвKؽoj|v|6!$6AYe<0=7~hk)]dY`VI 5ZcWC'2`%ՙ(=PQXdnP~#!se&0OϷ&)?~DP3*tkBάluUѨE¹3znsY͔4 \֬GVU|LJ{#n}̰p΁vǎ; Bp@]M=yV^1lw(yV=?#)Я?:z$TdTnZ Ypk];";뫊gZhyV?o0ІRGPyʛna"R`j-z^LO(HܨV$_坪/Us+U6#}#]F0SH"  vL9v_ZS%tOo{]ÔvHZJ(Hlq%ࡉp_O@B=45MdnEH{as g$4Thk0}ծx*zZh^8.ӟk̻AՓir|鍜wٳH8'r-r=flwY(ǘ16MŅ!E:,.%6u9^qHr ܓ >|Mq"{HY8d1)j#U?ԥ*pT= %b t7! .f$6<(T&:^=ff}|5@=n"d߯rYr?0bN}mmS 49, 4;`xӅgIU* +50i*]sԎ϶s7:*!cb.\ .Ǘ7M AH M*,t޸ۭ9x\5|bVʘ:oQE?zse/̹tZd0uU/*i2Q0SXzq*+yk $ 扰"eRk$6m2Mߖ_M'~RTx{4':4 4@rp+\{s#4Fj IPpJl|s$.x sVS<0Cq>{m@*vG:҂ [ԕhkkukq:-'[ѵ{co[ǿP!"N?VVjK AR3gٜD9Kʔ=RZKq), L̪Mkag0wugbpzտd "^;q?Kڋp|3-0Cp Zv4) Ks[: 7e1I`7txU7NiPAسǒn8H \(J"sN6E;>Liq@RUJKCL`h볟[9_ MKSAUy/6@  r2vZC;N[g~"J,5T 0!:w!/F'֋AFVؕ:<:D,%_L(G㶠;k5^ZPi%5@o~!aD!&-AԀ1 AV*ێ/Cu?;:::=,~`uy@~CеGkw ԟU5y$Vgl* :9gMG`ñC/vΤq/=+ 4 V4|/ϙ/>:OЎ|{2|X)4I i+;A^fRA!rqNߙơ N='r<H kuU!ٲU~Xa/~F[ؐ,@L|<Ϫ5FW/j>Q.bs|#Kxf+(&T3G:ꖜ>?Tv_nYRXo\+ rTwKWG>Nʮ2C!%FRyFKZvq[kW- On\ϟKwcwkΞ+242Z!pFҁSnHndhKnFFB fI+*= |s>f@Ϧ>q?I"U彖>R6s0̱$=1t#GD}"2 0[<9^yf}Mtn>!2v0Sn~,( ?u4n\na;ۭ&%Dw ;qs}_f% ;2r@ <јuk 2y8uR[0( $"}zm/_]ԆcA~h,`a~yႤϏ*`DyTO]?qanCq 4O p^4jOBַ2 -2{8. dۮ(sJJQ$udw I% Px>\I<{5'HDGY,Eh Wxr @!FiHK'N1?-br J_.LD=wDv">/MCP^kܦ=طx)s<>za`e@(8kCjwLQ%A^ @C7 E0~:8ajrOᱱ ?CZYrqh<k3JZ,.M>u\9H`دi?lMQeVX~YW{U9}Yqϩ>~ [\q^cF~80wpJ kI$K7_8ݖQb軩2Kv2>d/D-?v(Go 36 ͋\X87x=Uڪ™7*`0;[E:鍇́Ɩlū0ю Pgu1wctcmbb [ ~gaӜ#W~7 '_hZB5 "3;OD=ezFjeYtA}?]d!m4z}D7n>T!)H\?wpUZV `Hp˗@ד'O'IBCo~-ȖmN.&Pu\7^BЉY<{;JaBcJㅝܢYH̽@ܼO,ok6kWXh _*<)E?>Sq1S7 2mH OxxR6.I0<`r*}rGkHj̫u>2*d_!\NRR{As#{S},/b*ژ [NsG{EW&oJ`1J7gh5b{PG bk 2ka3WTbaEOz9 q <^z?Lɶ2/ c ofzgnxvȕ[oᬺ*'?BFL@RhV WL1}Y *>V,1]F7*aqT ȱ!1JBT;.Bv4\f~)#&#- 9+,;ש&ADΧڂւRۘ{J(gP"C_( |fС'E!0$'o<3 kÞ] -]օ\Gb?cUm0R DaU{xL]i@,/Y*DZ5RV (+H ᭨~ͩ`yQ@2aTmmznպԙw۸z Wo.K)P_?7Q>j~33倿’hZj¢8fT{cW$󻶦Ӷ7#K$7d[{Iވ4PHdVQ33lUsPZXL }l Ho#@W[E|٥{nKq9NxbT7n+i&WXxlYH]z4u:˿x?NŮIbSE܇ZI0%[ROXR\RFRCӠg/-AvU+ b2!i%WH+H(Ed7r@S 9ev#ng_<oNs0 DvqE$  4bEvI ?8Q! 6!1;uR=ӹX/I=hn #O{OHk,i#(Bhy>(QiBTT?.I3'ugףMg iI MU64+IDub A y!9}@.^ښ(SkJ8"QڝJK}YO8tҦ3\ /JIIJ3gSp'A \ wj曔 w$ϹHiF>.=[ ?U.=!A`udG$&W4eĨFRTO=đqB<ؽS{J9\~d=LB){s!im|sܼ.}2Gv -j&%5Io4֏ԉfs_w&k\LvWsen0(mԮ`8 t˔k~!(LF HFĒ@96gW| bȾ2pG+517P!BQHan/nd eweRTH,EОK Nfewk3ˉ*LʹK}@m Ak'V:H(u%h5Ei^{9a]dѐkS!#H> (zSg0?L/yt|)|žr#ֆ#P!GSTqyd䂲H'. ^i5 <^&1 {p3R?~fS+IktG]jUh.#!1`Jm3ʱ)I{5F7aN<..`_=L+!2ze&Eb Z܊4>vE8ui \?aB{ qܹO-Gd%7ae%.- HwdD03;r2hZqH5Q[D=5(®PES Z@hyfľ2 js=lL%9-N#L$xF<- wKV\x;1"iHm:󢩶vo}9qPj T<2{&(gW"B_{Dj*&z}2vLko\dPF-JTlOE~H--,'0sPɊ)gnLF-5SA Ūo4P 1k88z?Wg>LE}q.0v۔qf4r94 ٤V!W>ylMSD/װOU=-K]`anEu@Dc:`?-qTJ ?&* ;Uֆ82Hzk ݖdДХEmqg'K"GoLJtNQH"M.Țn:!>hˉ.,&E kAiּi|Iw04p 3qKMa;s.%Q1UJÉ5- k%3{1h8S~lpsmŬg cA-nА "bx'|̷%7o f9^vu߰93$2.*hpYIbuFXMV\b:7ͷ>݁u?]cw/oZZTpIMM Z[>Z)8Λ{2uWZ\N}|¶=,4Yf&f{4 6) ~|% "kF+GLa+<H;oKYWV\nysdIj LáS) +$]i"2YB ѯF'Cl} GB9Cy`1R]J XOl|}kNN.&1d4&`7~%BciGAǬ *NvDD^3NcϏ 9̋NhyT¸ROoP<^ cDѬQIwA77(<0 #u%,ۙVk絗 ^l.xʔl/XR`9E% l_i,F;m-mF;-bt1n0Ȼ 3{)v?rK_:q dBJ>'&̣R>3%O>5 D٢(ґT/Wj g+ p=:@*V+jzyF0< zQ7,3&s;Ks~rA_A:?3ÒE(Eb7[JHԓ.X*f5~q ('-u#sQN-#~P]QQAlEJ [tѓm:F;ahٺN4h'-5RD^t?0D=ԎtBg3.ˀCA֟DaSΔoރ'bdO3܍4d=YB zIV~ZK+T>Q.ܦ='dopQFaCW ݰR z0SEwN X?Gjj9 s PCIj"ن(~'/'Nyw}vLF~Џma-q}CõBݧ$+^ R>Pq9(X |b97F$DڇќJі $OUD/N7on@_zޥJ?%aEM\_B/é^A5д% Sk`KΒiŔ2DlbRwT0 iO}PV|2{g×d uU∈ LmQu#K%da>аZ~کX~Z~&KBj7^%?BMf5F@vW,8NE<W\{꣫lWDca_#j_SOyw*3cTo0>Ƽe. n %?o3=+XIF*R  ^<aqKp :sIy 1-3..s嶓J2j9e";UpXC/^Wh;ũm|f OQ WKیVlm|9-B#]k)c*VU,ϘʪdW p p[ vPPB6VDnģ)3S1hwwR"%2ʖm({W8w8b i8 ڿO5+V>~–)AHq9Vx͹?S|UH9ھEk5gOnAKR o&BX%݁ o| ^ϷLZ0aԴ DݐqsAr Sԯ7;0=y ,'I/$[GeUe%OĴqO$A Jw4q_`rHW4kvtX V[ѐh4}.<a,'w\f}Yk[ApܙH-֖wE8AV7/>\CD9d`EXL߿?PmK XYVJSԽ 0 ^U`hcF=ނ>fLaE vOAN~squVAj\~NBuLǴSG4`؟x;d1ΛvENح1oam[z\[fTv҈sΓOSc`8=9Ă\|_ۺ|qo`;<yKP ?5! \x ~+aJB8D 7ǫob^ q*C>v+Œ*6 }ܶ ?d'Vj__*V2hqM}"?3@Xofg1ycm 4FpٝA2}t@铃8CFs?*:,gŽx3fe"'ieͧӕǮKlA "IW0r2 BA 㞨Y91/uqHqx B(4z8b'cmR]@׊xz/ f Hi`a"6sC,\Ub_G d VF^[Hdv3GIkHͅAϨ> CCHF Xz2V;L").q$&߸Q~c^TLނoQ^t+zɻ#}֛Ϋ~SVEiCh ʾI Lc Bӌ(&O1׈ԿT9`B;/QR0'ş"N!vYVA+ 7Gixiź ^2evuUVlIAk?ȵRa,w`B-Ss).ΟiUc[__Ng8n  ED?܊$5pdU"`B2%Y:FRE1ֆBfc,θ?_LܷEI\F7@u$ 2J@P@+41z^|C:^[:VuǾH`or1zҁ툣yÄ́PGK9) x4`r .9oa^c3`gBpyQ2qNoi75/d*@(\pD{v۸z'fyB˜#r]@%}zǵf}ZBtqh͖p3^!l>kno}) <-@)D |"e3JzQL)T$pɔؿV ᎉCF"8j`~4U&ŷܤAy'f{lb6&߆7=Q:7;n5di(**.t W͚c,tly/gm:^0rpc7rQ[??USPa@y>o1Sȉ.A8|]ռƁ{!XBc.t3䃵O[=9J`5"wV8Ǩ5C#uߣFR.wUG5Rʓq϶eD' ۹-F{&"xhQ~բf[PҨ.Hj#nVylohtR5ݠi6[Qg-l old1h]6aŒz@V*V)㾦b:f-Ϝ'~va)ƻ|joX2;ۆ>?.qTnsA#ddVۉ(2/xo;wV!xMS;x8M?o6@5?zIj"` 6y6YD|/ur@w;-Gwa ]:W;HXuka5HU_*LNIyٲ@e_=QC{Dwq?n8q6}JVd)A&ˆ=~ a V= OG]念!^8M*uWU'vJca ;ЌHyXh%gR 0`]4MR[U0eP]bd9Ee԰K.V8~K)MIWXK&ړ'-r5LFQ6zW.txwCۇ˨fq*[ vAJ4wۤYW7z1%i6-_T)gn(bv@raﳂW ',=ndk WD"ܯ(]!(M<cZ#ZY#%6ꗑ{qӚrm \2y-X}($$̶W~ nV\-GzF%G\(ޅȁe=[4 Y/j@ɁT]kX &' xҫ0-&VV Q-%pZ12ja/kpA.]嘏T-HIJqLSfE>! wGlEj&ն?COHy]xwA`55| S2OˆkmN^kqTKT"b!뵎9< uQ?0єZP0qp\w}v ?msd!wђNu41ˀ =G ?^xZltPh <0[f{+ci`ˠjtH*a|4nۏ2*Zq{3մ:֘%/ZF0<.5M߆Jp>|1+-*# [|J@ƀ 7t}NI1Y5$$h)yn~m25"BկDx e4EZM{U:tCqD*5z5FUgOZD´malaOlmѷ| Rلgd.y%~(G:_SD _Kͥ65 _}f}R4&Ea$u1֮ ?lB+6l(n(~2^p;>7obs_qCR~$N}mAf 0W!/"305zB;; !X)i|dHKÎ#@G[`QRKD$dӕA9zw5mU{ ;>ZLh)U[~6 J4& VNtE(d?|d|m^Pjڰ{;:qI/W:фd7A; J[+$nll*;{zxԬidky*natS 'Q,{F4<3JtM+o«䧄R]Y_yFԟO-p+[AS?yuu]UwWl+9[W2 `ǢI<ۺB#dV;co^X᛽c)2r@h8l`'ow͜uR8UE `.Ur}.ǯ)i3ɍO<ɾOCf\+qujRgf&߸ʫgn2Mi a';/ا1 wib5yvwg@y09,` w}d316[qXKs5y{TFVF5a ?WϦ{ gy,FhGch{9ik3MP՗WEqkSTr\Ѭ!ЉK>SoSS~߆1qLϸ1Fb"e[u֏ȸ?#ow_5pٶ aBAO0_6bly3;;%{aO?=ܹYpR6+ͫ|폚1O@i$`'p),(bF"c0Dh Yh+7& +(iWV [N;^΢lq~M6'eǵi {+Y1P&,x+;-]bv{췒6EԠ ERO, q]}c^?;hc&+dǴ-0䧎#M3XW'LB4]o@@q.'A^:Wj{cTCl5i_·VR׈rRUYc{ċY5D1ht,OFd˻zg9pesqOpuZ6 1ZRo.X]|ME3l>0\2iXcGK( BXѝHhVhAxcHQ?`SRӐSq]6kp{toV)~ͫ\otj"l7LjNDe7ɭ-|ڮEs'eG`H`ŴfZPԺSn+?YʡŋgQ7pYsńW L~3{3Ѯ?;8^+jη ?niy#ϟ4`r5C>EqI0~7e _PLA>k%43?ld1͍opJ:q %Z ^{xA4;cy48DHX;4^-hνsl㰘b/% %HJc^9IP{cE]Y?^;L=3Kt~aeQNCmSDwPν{Dt8dYD /_.98vd$6.)9~1oH*X{/z 8,3jUv7'iy #o7|t^%Qͼ@0s+ QoODQ[c bѥ͇ fZEV:Ha9;Ǟ]/y+Uѕ+1բcƷV+7/J2Y'& (& VfZ 1'{J R Yn2,t=tߞ#׼3_6NGD5-xK9[.SLw͖XqS wYb`F<^6#d]eOlmFꈑHSZC. I2Pܟ E[+ yvVCkxw]t EDEs1.wGͧ%c cJRe-cTJcJP^ZM%9,*=x9Ga.r{W &cF-8 \@̟ʣ7b>n r:qU7fvְϦ'XSX__e_*TW#)8"n`0n'fCaWk,z\ :(1ٞhұ|}^_}!ha# ƌ~mP}#Akr({)[ֺ/Av8cl"I"A0Zziܔfkp{+Ԋ/` m64a~q(hÌv9$T hZ&JY4n\0q &u_Rm.5jIܼ&萢GwMZjGMxEmPn!zvAg%a!(~ "лT~C.?t>>%&53<^6X$y GϒXњ6 (d:J&lkVK8a'=yiR<|q6h5auo&_;7~'2%C&| D,M}㻈X v8ii;큲IffƝs/ydt饕.\lIEh3p|MBuy?ڄd7#yAuz3 gj$Xe7:n-yIYTG$ov-f3r672/8ukR\U'e~\&B8'RQz[#[|?$55#[ n٪gك"gR|}Dd?0X<-I)˚lW. , /n92õt].鈉AC5=o SDn ռ$~P ?d2I7!KzD4.ZbTUr..E||y*+EgG4:sۼ6( X+d2ޅ7~|f@i/aV .x'S+e}5y0]y,+l[W3 J@&zvUe0zGc:*1KNь]I| YpKDl>LADNڲ&W D [91 TcEi1x+g$DVIt^?#<gzk~<|KQc[Oѕ$4BDrp%U ) QÖ@u+-"ټ԰cwX=H,r6LISij'bN /ZG<}'ܬڅ4áK@j$H2?#~MrNн5:91"xй2T1 {.b(*^SrW< sr $-gڤ3t s[-ޘ_ `,Yg]~\~#a?hhn75e L`bwo&9\~E'*ǴS`F!Q"/TJhhV?G7 /ZĥAn`A{=ɯnH1EW"3|_ʭX`ɩKf 2f $ 8>*طk;(.g`SFL`)u0nJp 1^ȼp9vh,g^,zآ>]}pڡ2h4!S8E3ū>PBqx%# %gma"[[w/+N"iD)̊٨ *|QNo_lR| u72\ˋzgOR lcoD(Mgh65[w 9?b<MW?pSRݼ4Wwم{WkߚW_Z߇ܲ6>'`љs=d2L0T=S%qiZq#<,Hcwk']JP0]/Ge|ooF鿔L)Ccr FBm`bEm`fk.,ڮH)>NpQŚrM,Y,V1HсJDcӯ.hsg#elN>VyB O#Z#r}\34Z/6~?vP.Ehr Ad"^j&Rl3歚qvf\m~q<2&ֱ*dԊWC{Fb̻BZ? VdT`_F^eK `&Q)a-=EWh81 /!scAQ܁2qMyI\Ng|Όn4 iX#4F[%2e8vzHt>]\etU-KRogy4qjv[~3B ta/ i?;#a?Ρ{,m p[,E+\0++W @#\~վhmh% V塖q2dutqk2񙝼|y'Ó|uhhxʝ+y==]ՆFf_+6 v-Q-xxn؏vb"y ڣJ?W%.-_yWv5Q0S c*IBh+D7kFY{ "嵭3,NYd8vy,`)Ttu@{Ve׵)^*Dnjx3ngf7A맼?l@Nz}6Es^VLxCV8]g>h0ɴ`i19p$ \xUO*&]MSΎBke)><б׎VN^kty1!AZhv6rINu6"od`,EΖI<_ 0 8]Վ1yeKk<jPo'ө fxZ XW~vUp\h;dlIg0 *ELlw}3MSbcM@xt)UCE霏n.C1TM?!~?بt[29ӆ6X3Zots:A IՍHM/!{{e$@xoڈh f~_Oo?hqKwQZ`St[Tcr2&ffƇ<9>!sOM?^d}݊ۼK]pmdyB_- }2\?Dж/qDԖ h9 _Fu1($2omI&v?| kMpVoI&s̢Șhz,V@y6Rs#|KkFv ]CݤwN&=m,c'gϳ.!C1I҅(7vOLn-VE?O׮osد\{"hU~NNo8J{5=oR?9'h͙gM=c4#~73[tz;'٨F K ,L 7V?WPeوݻ!QGGfONk=mvA#&Q.\:wn7*b' #u@[U\v\ILӽ2f|ߥ5(=/f(m7+髱dHI~r{rY1JuTN\JP.OD^}S:Jr[䪠\A-j]uC]HBqM{&ß=h~%a(/%@جB_5S +^oELrrEpZ.毝{>^58~Ӗ@چ ٳy|"X~41 nUEn?6ys. jTRj@!L?(6zZ:R!1?ː9w9jLep5Nͬ86[v!K0e/äLJ2͕0ȯ$ ByWvkgx1qBŻ{ -_)O\EQRj]R>רxEwǑnDdz1h8v&OUhv;Dx `l5O?6'u뙈݈֫ǰS|=΅8`P&w!V B`)̈́u7_qLגZ  :DsehO~q|.>e#jyP u$Dx#$D])l$C |2( Nl}4jiapVNFuzF&`}c~_X: ,0$|ȍ%P|qߩ;i0[n1(^/t4DGG+2.O {|03 솮6"yZ8zϟD0!$d h%=E"E3?v@;&CD;Rxs2| HjAlUm?G̞+LvQubeaeh.=Ob_wtsSjfPy5:dBя'}Tyw=J$%WWò-l衒 _'95(X,S#WŹp7}熣7 .;j #pNIޗzɻ ^5yR Czs`=)e@aqoWTN" \_}t[£ v[QU' t㹲 7ᤠ@|B4:sthrߞ $CT^"HE$K*$ As\A)`U%=nbOH%q?25{%eF<*}ϝ~):mQѤj8ՒN1 7x;˗|.0XrJ%ţIk;z- Ad0#]* CVi(_2IDz|)8F U+oWd!%giLVm9F[Yi$R߯Cڹjaw}EpVXa 4b{,Į|2mϥ"DaVy,t (v+.wW:OFGO^y. N"dhP0+3`8-s} eZӪ%SXO,+Kd.&N-\rţBf3 4o:U;}7R]`_t3W ƿbLZ-ՙ\]VPqvM[ԉL t~r.}O8;}yR~@:hX[:!U7U2<߁9{ΆTq꠻,I3!wD:1#sxFDU=qM|3$ub}#Sc*8QF(|t:UN+)J@ʳ'ꚿ &{mм;-LRف`5"կvgi#5-査/]?8,$7XpmJT>J*xbG_^)e}^Ӈ'jUR.2, <`RA1_࣓ Y'.(1pc! 63D9 <9cqc XtǏ;L0;!N;N{k?Eg{9۵7!YƟn, mK2rL!x,KԹ<0!7A{;:Ѵ{闆񖋘6] "ScE!PLBoxoQlLB%HH&~ [ƥx7X?tʡ's.Bx8㦠۽GtP|SjwvL1 VFEG}fՔ1vja*TJ=Ӻɫ@Q5~}4H]w6TO ~D&4O'ZnTr=\wk4g72#;e^'Gs̥'`d8?(n<^|Li@ܗZ>y-elqNDl^Yj%sbh~7~hGWq.f/%${CusҸ1+0 ǚpuo)w;YX%98ׄv$,A; UBHۓ&{ZpRrCVP֜95L'?ʣIB&jq4ÙÎ1UL3[|qI;ڨ"b P= TU *;ӭ VÖT loiE`.6d,4>}lM/9_7#t-+!+d#.Nؚ^$=1v~_)$9)K5[7N̲j|ي͔ܣ(Z`$*M \N 8] ɾX]vy<[=X MsI%:cVI+uj/&:)d(άi]Bmj~|o4׭R{wR/O[sGRTNF PKV$R`Qm png/paytm.pngZ;Q89]TqIBQnSRF1IDrt\2#G4npr<))[""3w={ZYk=#U+7Dd1NA//#? 6Cm/.0A  vÁ+vK!!~3B|ȷJ-)-)-)-)-)-)-)-)-)-)-)-)-)-)-)-)-)-)}4=Y糩BӬJ; ,*my^iK+=fi-vmcBQ7#}֛?xi}5k7`Y@ᦹ{uVbn3kC'v7oέ6vp!7Cac 9E\+ިXneE2ɟpR^n0c;7P7MD `G8:Y׮;"oI*I$}( tk{|IAy|k;Ҟ/nbb1䨈Ol9R :m;2cElLoTc.XZ&`3kFS"n.[6xZi9lbD:^*A4ی%]8B^Yz1'V,doNfEMhYf-V,@.*ozv ʚǡ=UH{|1#ao&H>h#ooJFT(xRhP^m"aB5) \E *r)tj |sx!?ܷ0̃vg ^8* b"PRAk]u\*g$[><E5? qXZZ:1(,:Cq<@<`e󀘇7mTUD-7 [w=Ko /v3 :( qA݁(b+!w`;܈]-]'X?"J&ڟ] ENJ{Vcr!8Q:s > BǺ!bxl̡cj|l 4',Gd CAQcE*W80˨PKO)΁sebyV$>:[B 5Yzs49_-l<8?)(0 5a mcar(aUO 1`@5Z qOc)rF +4)X`!i:REO4=ICwEቅ x. +;2phJkFq^!O@KUK  ~hr~UD3@PI}衠F< !uAe SgC\8bXfD99<h ]r.AHD8 tp(٧L:$l(!rm>&̏D#eyNl΍Cc-· ev(p{*wiY%(xk⍣D' ?%,6N'2yX&x[%hM!׸^L[8@#-#ȼkf[]FOCC*(mk1]8ƭY//c\ g)pZ-jjm*k W2ܢMho uJ;-Np dV\/?b :p&$ic{@9.Ɗ U!*w"TIN)WiU!=R(0 +!GVY{Tb@C{9/KO7](-rzj,*"Sp5q?+r@9 nN z@(>(f\Eܓ T_f;y,$LB ّ16.Fk(˫2TqڔljClX0b}wp6?7ɏ`A@9~%>m>e>9¨F'nLDyDrC$Ե!Rlj׉ /ϗT":Iڡmr8P28WM@.- UN?v!0dH-[Σny/'[4{ڜ8fuD`Yǖ9"!hVv;Χb&ct= rPK>8Z;I(~^]WkD5.A8NQT]Qʘ[( mf,/T@)3TTmދp1wgMSe e%.y~隁z^Q6tr~1;jYgꏴŞ?)_$AFޤS/Rj1;zF$AnxE:?|J~ER={zg/5Yco N<5_\/\2}̋N;I%韔'1om/5NՙK)v0sm(^Z1"vqs#Y"dL;D]uDijSE]J`*%^iA(8%g0=+h ;>1 h*WrTagmKuk aһ 2O'9;"/g"^kp\R{N(ȱ5uB& ^ !Ʉvߘ*r5F1N=gve-zQ!.HS(?UFOxօuluXYWy=8>9vxXLOo{"H;L!*#w wzjX앨4Dn#ՠWZqԐhU' a*8y[3U`&s_ut4KF4ޛ`=rX\"b2G8A N9j?d?Տ'ʚ}<\`2$[ea5*$4*54'uyS쑓^/'^u: [1ڽ*ϴGc E%ˬ~mp[]X$-O}9.F7>5eR3$)Y j|(~~JkވQ@Vć9ìmGW}4=KP3|/-_j_5'b~#b`PΞʽgv70m5L .b%oH=݃\j2C:֊=!~8PUc.llB@>+FiPIS/ 5=j`;ӮsxPwwlˋ aJbF(T^܈J<}C5@^&;?Jv,j)t/5V` *Y\=jMbLN5(]:I8skڰ]0NL)Z~mazvW_dFXljaJԲ9_o7Gq粆f9Nlж+,~pYXV=0'2U3ӭjnc:8 4,•()2}it!ꊙGOUpSZ+_f$/>8LT[E{durH-2@{?eOէvHtE1ъ ^irY=pkCdK"7ʶw:~ܓD,ʽ{``nFJ7ڸ-6TċozS [u]6_O۞ yPL)Sko2Vv6Xϲ L!r\dͮ@1\qA5Cd{ӁeԠތ˭?d(~q!q5눒*>Hn1Q2M}TS0zt;ߓÑƆ5ݻ 2i?iu*+e.$өF"TBQTAit\W"4h55iބi h8<d`)[-?[2jP]r:ioMǧo_󰞊5zTH0Q=ʆ:;~Ӏ`^v9h hiq%~XD 'Rh3BS R/6Ckk(Jč޺P*snK8\`Gԇ #K#1m#:8pРpmKšC_RAw夬Jrhڪ]%le=NUXcJj\ٻny޷ OvZ$'bvݿVix8~|~2^wT@Rix\iV,_аa7Hnw@{'Nw&J9oߐVx<%CwU$-|6ꟿsҁo]3*vJE8aԮ>{vMpnA?wWPEvߣ</&o7j 3lpc;Ls&9A'ܞ>[.l-ju.dhֆ΋'WgyT˗ҮT.TP4.tȃO42)F&dZӼR>2F@4|o5DVQ{?UKq/#in =%/yBXg%r;Fx`|Lr N;E¼Or84.{+,jwOm5%U>uzwWn[PVߦDy/zc\wuPՠdƹ)L]|'vtL+RtፕO'W3_И1Q'/Y#H PKok{&Z\jS3ϏmԧX$Nnyݟ񡡠1?Z#5 oʙ[߿gf즗ڲFO_Sz L1ƤQ e { ԃzڴ3#Yo3[ Vi$:A>;t~6}Ac:> =]w)=^:dgd/;cl]KW3n J=޲Dªc_h gonCa@oPRMjx 0z@>Ծ}qDT]}NGkc:|™p`vo($ B(D+#09ZFKdp2]ouT5kG.xSr|f^G_rIXLIӞN-kǴ;,,V:&K P63;2%kF@0+,Lk0J#~PBe]jys. 1fM93A W#‰vY%[&Zf6R b꽽*d&J=! *e(SжZH$*ޛd(Ȓ|0ҰAa~KJ!_ GHԦu8V -K:פ^w6F<-v~NDm$juݸۖk{iJzFE0 T 7 P~РIs@_,8mh%(T;H RbMU@④ G UwYjvWQ@7|RrІ[)_+v\9 OAK`#::6|] |{\BJY 9gp\eq! mPTI`+~}wlƁ=! \iY18BhjGr&bHR-xu5﵎HV΀hGE]OijCjoUɿN{pn;aJӘE[/wJC_Jl EԊ#qE(:RcX&W> WH$pș"!ϖf( ub.m$:?)~U(ٰ@yShu!RCpAXpj.+J:ikB8c^cG,󯑀qL#mB@=^=EdzM%u *;+~&\"|.P\J.o7z:|rO-P5Bg 5: .>L ! @eJ&= 'r4f'N8\)~69Pn&P(Z^B s0ywGCe 2 BP91@+ˇf-BprFošYM煴n@YF@ il|W CjHָjȝ ZtUWwkTkB3 GC g~GY@Uv29.k\5X^9#W12(Ռ41f?hعKw5 k0JP˹pAY -l0jF!_2TZ*!sl.Hg];2nqFx|bi!=vJy=3N:=̩:2 < Tvd[u4sbFfF8sdΌy e$a3A BJC7up0E^#mfjML;>.Ni.:3h*樑X_Lx"c}pYP7g%?GH/x nPRM廼4)Ep#!(cb1rߪWq4XNQ"\m1E~f%Pay FE0X&:2̟YtÉjAj;JҐb_3dkQb$sΘDB9T2\a/1c;/"XV*/=-<:ZĉHz[c/:bwo9BaXF[e-T\ٚ*QtNJ"rLe9= e `PbK"eD;19R|5RCp YەpQb F#GAgCؠWXE[!/4*Ü N.Sf(?-(qn|6,'qH) ^79XyvID108gM{C$NfBmm9%ڎ|FR&8qF3DVbaW $~!Yf&pլӹ7%+#WCf4%Lh L_v=lnf.l_[ɜA,;sYrhyP/$cp6׹ucl==Xf>nl 7"% !vcM D}H^?uxe+i@L~KN=}@y !7ɞsH=EgUTi 8G@ӬDL2ܥtG`=!i:w1Wd>U)&ĝ0c8J2(QĠw: @Cִ9@W.;=.p/ޠC1ÿ)Ճ q7RMPM9db<50~4+`G#QN9s޺Q*UȾB'Q >ᜮB$HтjZ/~ ~:#ڕ~L!^dUtevWkT #YOH zB,*S3s '%0ٍ<ɵ0P$@W! [9GZo>Krۻ0>ߟV[Z Z1u%^R;yF䲭1Bc>ċQg%Pv97c1w ]aQp|T'HX)Lm?8@<m#PjXTKEJT~"1;?ǏΪ\CJȨ"ʩRrAU QН.3/B2yJ.VޥvZHT€o*7LӔYGlS)gr;کf0yn*I :^XJ^+g7j&ea9$p?jKy1 (Lk/!FU⥴CS˷ 3f/`!`ϩo̜/[)"UԿK{i7 Zve."-'e.+\'X~00M;*wDt2L9Hs-˨;lr,PN,Q'1?i mN,OTkDu'=LtYQ5xb]?kKN'2'xn$׷=}kB(:tD K~6%3hXnx[Voi/zk'pM")6<_a]RTS19?: qy6uO9DŽm-'gJ+*Se:L"]">Q<..qSK4udp_n6 #O%:TO,5|  =xւSܼs8%`w=rk<<9qM(PRzdyVzoڱҿ*wX#4Fa"7뻇)]5;ypN כ 1 HibA3b[]}TQ|O}4Gp 90XZɌl_zBkal.t@emyjWp '!A&lb%υPƴ@9R|I \~qE-nKve9}B"PŹ!X ZuYJ tU'ĵ|B;ͥG+rN!O#d辈:1(d ՞䥶ٺpu!|'櫸H"L{sɳ#Dr:*CfwZZGP uPɎ #a| /~U%kHi> bJ);s*d/+_@3@܊]=Ƣq :⨖jב^hKc6ݴ%[w:/3%s=P_T,|V>t`T }ωiU-"܃9'iI" I4dMČm| ) vjCDWD.dAp[nk1$4k7$S RԼcN/f5 8ʑ$_#TlƏou\B 85g[?GV鸤W9QGo-Ι!Z fm?3rcyD'QfEF1{ jʧQ?"kf9O>ۼrxJ?'Ph!"nKRJ=In걊wdV;/Yeat=/`HIS9$oAy?:V[%84e|9E7Xѥ-|Y1 a\j|U1n~ ވo}Djmau0{F ѿh,,A K]lau-_2a?쟪BB(MkH][MꂅjVw%FKЮ%\".C}k/O;sLxj3>Ge̍۩a?(=89R0Df;mf=1&A[*uRx_^uu@D4w{Ol* SFґ<<S5P˗@`O`M7'GSƴښL@xɆ|Ûm7p=r t m<,T:ֺP16f"eQ|Gtdj2=`ea[X<* -EH R@jƋz` y U=罊!"Б(c8|BalڏSf‹'u$X5I:<Թ{W/NZGxEy{cG z]"6%~{M:7+dsXF}2 x@Hdw2ywL;bWq_^`z da\^S&ǩ(#BbY"/7Wm@N.I~y*_DJic<{k>]kdj߆6B[gРŸm08u>DW jxGVDƪz Z>U ͸cH'Yw9W?06f+W]^=]8< P+gsն?Dyf`5C)wGV@!XgpUyN*'lR4Qg>5NqA*9q`0J*3CsIu?TOctgC遮bb)ξ .˟96$prhċ-^grr943Àb#l dtsb7RzMl?xR:Gj%W۠xǶ JӽCi< |7a/J%\BWx;At?Ky"n69׭9q\9t& *w?V{j,(G2"d臡Z둎ǎ˧>@[i̙oƓ?T|ҜhJ?QЖМ`w1fmG_ɶάY|.߀B>yb]ͰCq12D~\$k"4>rSͦU/'>Ӧ8W}￈?.42CX]B{Up/lv9rv #Dt1cHxNF9-YtRm?CFoa|f)xZkFk0MqlpBSϚ8Z}P}.nW^7'qE-C{+qZNʐTII ݤwS{UcnR@5_f&Ɲ}bɟ͠#wMCa(LuøV97Jٍ?r>7dϾ2F܌+:[@1W<=,[fӆ{|3RgfXX?Z,D_rho{c{/GEmuWckVUYKN5WjH>" eIuFkwJ؃Քl2ݨ"Sgd]%t ƃ@UTɎ=: `=z* r^~EϜԁ:˿!J-aLӓj %iZz,I*Tٯܢ +?gH/ɞ _gf#Tuɇ7d}RxP&Toi 5gUSoÀexޘrrەJ-֏3 v)rIBg?-z2 cA Y5/zkHwB<Ԣhߑdqȟ@6Pwk$ӭ>7 WMZGⰿY9 Čv\kzY/]ڠdrUt#4}?ZOUExv L.W< U A#z]'6@`2Wxs0K+ç}|k^.-7W[^#-LU=q4eojCL3d,l#:,5-lq*Z1YK\oa?}4rD k}\[x răAT֓@n ݧQ 31܆\2qwDެϫ{ĸsm`HOhsF<t`a_mC9 pIƭ΋Ko="^~ (I]b1qf4S,5錽|D>sc;^>`EzIl:ѡpL -iNrIDZ u~R?Y6) ܽ1bדDYҦҹieGd-#X\&$e>5ê㹔SpfRb_~b9%Ui>^wbR]Iݚ&hOTg>+;*qm<^tK75v8&.AS5|Zx 3fww1lR0 &k)xE)o՜^Ə=W)A&LD}OE:۪GᕅdXى|o=ΰߣȣZ^bVD`52FH>Kb+b5C|v 9hCC[k|'Y|7u+Cά"R3)"U'*)IOfyӹ[nTG&j/GbnoϿvH;SW>5p-9*H.qɍ"S[!)Q W3̸v3&WNW9syl3 'I2B'5$ 3hG^v|Eh gt`/LyGt#Ȅ.=I"8C$gkgYff!Todu^kޝ[o [ٰoڑ{ʼ^J4簼BD2Z.kJg_ԝsN p Q?g!=}.?@3 BajSuܔmUO$lJjc99U&j@ ).lJcC;Sf"!ę]S@ lf5X%ܯɸ3,=kȸ}IGZ)(lP&"Wª wq6b|Ctʜu%*PzndAmLHDXQws\-(Mh˫_`Ƀ9N<(rzw8 x1a (d6Y|Ӆ䪦 7PD[9K%˰À#.^S%6ܨ3π~|, FܝW(I&%blMi>4'u#oռ1' >P*tnR}'6\'ߌJ Ϙ+`3)SWRz誔k՚C::Ȟr|RDJpK"$ʻm*v- O΁^.Ey}CY{gA9_}g8{ٞEc,[5bZOsڕy^Z^iPf]pq\ŴS-=eDmd-FQQ H)8vf823yd Z)c[~HUIehzgHϯ-I4IІ{j+Ԥ칅#;rI q7YUn]tQ5N/տCnޏ 6oM}+reG\WazQа ?G-Il9J&i.( UJP3ɲI; ҹ'SqרM,*(ѦqF9&e_ajF+Y,ԑDpS8gZd yr} k^]3U3/0MetS \L2E0s'$z3*yd?2t;qyHݮɠhMC֚끡O3٠,X\ܝSHZ3[3d[BeÎޗ)= gs|Mhfcjoƒi}&n^@lSv7+lXoAIx;NRe%`/"p8jWn  82h,q\<pLpA1ɧʁ9~ Z 0;oWZT=Kg|Xs Onz1x GKB{BQ2Z3s?B–?~ⷧӎ8dYW?*pU+.f|gOҘeLoO &sg2wc-g6ڻ8rt :r n9gT.;9-9w* S1 SwJRҙ?w][Ϋb<4=chیjhNY+ (ȍ{qǕyp[dJ9IdLe6^%{xAmHYSb .] c_ed-y{PP0ɇ5=k1iKʥ"G-ltiph 'r,UNs9!%ϴYw1WF>EV9jZl\XI+imԻFp|썞 y+P]S>INj)Q3ѿm&SV$[Q ޥ ~`]$r,JSFwu_\{$)B^]>zi lzҖ_C>LӻN3)wb 1uh=oPs(Gu8l}_cDZT~\Ce#&2g4; ^}6Q6J}y"Ƚ:uØRW3Z&ٜX!b|Vҧ{RR9ͼ2As\x H$N$y+|:3 4dEmU{{@GS\9U HJ&<HmY9i H')]p ]=a$na:'}ԒkGOӚm8+$:RL^t_7`*Z|hE29@.1xU)a I@⭏_XV~eE|SυPz?ZΜ

Zj.T9+W,%@ }W JX၄4k\y$<iBlLY(TG0On$jJtu@;;^ QULda۟7CSG7s[N!01zE=/8nfG`&ql 1g׻8lz'^Z>VwB-UVmsvБ f\w3ɺO'JOiߋVy kIDcpVŝm.Ԍ˜#!XǙa *C~o]#OPc"1|#dQݹ ,n_Hw#دT{D}MǑ&Tabw_tgGrHT (Tp_Xy5 :^)DzP]Ulk HQO 6 'MIV2M9V@'e3K:?*K,YC(RIpB^#W"p4MINfAOx79a,>?dNf -8#E w/nUG/-hٛs7d%J[d8O )i`OzM)on-2RSv浑9'^bRKОB4;SEtΨ&/(nd w=>2&p?Mf4sf&%O>w6g Z3=0欅 @M@r5j5C#ٯDO2LAFGXՂ@!Ŭ;VQ-u_.0({%H%īwO%QfuaEN8p =8ӇfIW,iw_bh W1.: +r7D7BK֍J9HK7!.[Hc}}2;b 2,,3gW:H"L nTSfxH„-zre!dF_yv4ziZG0Aʌ(C66Z~F%[qE٧D*.V[FՅ j\X9M,Y5 E>AlOZow-xNd6vegpKN]/8__HZ[)zot7=Ix i$ao2;o?.>B|[-vd!o&?"^u7fsK[3aKP }J*`+qgBiծ[m_Bqq·g)K=5jr SC$ l,1c ^o4)K$Y6U!sٳDھ13jߗ`M–#|wL)v7[:v/>RPc:5Dx\Kl_̝9}x{.!{?Zi`;]*8Ρ| iywT ?!y9| ۂGʥHET`N:$fyI݇؉|vޯqɪm`l=) yybURdϦ+So /DoŒ'g!)i;ܡI}t?΋q_i~: GC_F-=D ݅<z0U9m؅w@uL4 FiJ΁#L$+ɋwNA>M< cӪWc(γ$-E^<- ȽPNZ5 84yKLX7 +8JqHBFP^~;ixu b50\?CgXv> Ui ݑhk `Vgv oV?%7E>Ys=Z,K#^@-bƪŷZ!Y sZg2" {k1z|"&\&!G|+A6 ~Wb^+aZmh%ttE ȢfyDn&2$ ct) slF靠ˎu(UȎtiT^Z|E(mq1즛 ) vitPqfNrL7]~`E5>w I7ˋXD+–E8l#Q+(}Ϗu*!*D1XNhѶL};)q'^#hNjQz5ځ(#x)m_>mccNqP} <6tzANq<,pLVtn?JlΥqTgB߉yLCbVo΅hwp.\P]1^i&ݸ'жoF>6~P 5>~HO%NCq@IYA54h=Sa0d:g@4'Œ>^;IR}Jg@TMk1͗?.ɽK1E8Zb띹+TTHr=?cؠ%[AGϧ6\cG'>zyUX$曆(oBf?! JᐼyV$<0<>*_h"&Rd?5['!WDV5C,h!S n;-YS=SCLWN3s2SI^SLukfSg:z:) jӁhjdO2nV Fm'U@_}< w/?I^ZWgV*%d3u0S/jԃ*U\0K~2Y-A x~oR,p Ij9)ѭ\F*%Ku+,3/;$DJOhhl"[dv&SQA5i_μ<z _\ svyQuIj[a{IC'fZi`r0 oǙ}6)C>tOƷfKd9^*c46L&taˢDT7W4/`taüsǶi8֟L>! 0ethPPfZȯo:WKW|]s{Zw^>~1>ćG06{cn; 2A xC@bYp^^KT 6==؋ԉF" |59= Ѳ#;|1viXUeWL?9OuPC&__ Dsze(_M2zleuEc1X^vͺGVB) u;~APiJ?_My5)-k(D"Ln?x t[N\fn4?oʏFԿǽ!}򂺣"ѯ)jza.%hvJ7<欖\ˇ'-yg{WQ+7tPm/]qJU+RLD^w6mȏ}4|"n^_Wr=8봔dcTF ҿǎI{. g:5Vxz| 8a*0Nrco/- ?/ؚ(~lCigrsoMϏ|;-u G+~(:ɏn߃s@!^Ѡ HWO{*&> O"R9%z2Io%uhSfqyO}F,Lfh m0+e]VMZ82qzrZ ͰSXt $%S<+9?-3yVC/6iϡSM?jʂyi#0&CD=~Լ7i9F&g 7]yv4 itXH?篗}ÜPET4ϫ,`H+0/ SX>l+fkw~5Pc||꿬ߢ+^KZrYIߥ.dbV+Kqh]rşW$f]?DwWVq:{C?C+JPP((ԙoDZP((j^ģJ,R,PPs(Pޞ5b}@a6?PKV$RtJ png/visa.png_5R"HH "2 Ht 5Đ"C7 H]C C<:Zks.Dv]DZAÀ@_1s{Y7s6duvuފيUNSS"J1{n^~5m?*j... .3AxъoG@'d' 40<XA roR=nNO[ ?sIyb& Q$ɮf( We L/8[EZ\dIkuR4e蠆/邛}~}8 P ڞ#7g }/]DZMyMvOE)4Jԯ/FeI?R 4`MHY1PtDV\UgkQyGW Cj=wPۦs$mCq+^d<7p yV**+ՙL{-{6EN2|fO%lMW 9$8zbbS9D{WCvs%c 8)@.MUFݪyk2v 7\CGrO?gNҦP6>he9̌m.[.Mףl9tR="k\Tظu*릀مH5}iM˂Z I>؆lH$W7ׇSߴޢ/|jELUMsڽlh(Z LAdr w>agXH-hGQk:ʥݲs,dv+h4# R_GŞLB (Q>=Ť/{Tuo4FTsި,X#2z޲Xs 3ey~b{syvTHZiԍegsfeqEU{t8o& 5ԔB!FG)hSɼpϜ $n޺L /v޾ Pk$V]<Ѭ-Ĵ`e4H̜$\T`:ɨ4ï#"3j*dV3Xis]|ʕipG9cxT|oT*!'G$nԯd)Ŧ2,M{z=iBk9ABWo}a)]-#Ƨc7堀y.0v5v^;q5G~cKe}ʲtLf3!0+hCb+K.p\SCBA3WI>,F J(vǦ$J夦~ѯPf`ɵtE3Q7LR0DJE5ڭy&UoJwi4CB [fΞJi:kuS_D y 9J NJsSk˭9CkAF3q\Ham,yYJ̚)N"` T3>nyih7H݋ !1_dlMͭv "182<;BgXxV{l>d`,#-2 w3PÒO?),}Ѯ&ח|0Ĵ9e}d4 ]M_X2fcU\lG dCyXE4q nHJokuI9U%K A3Gx).Rn*xgM[)~NO0::(]mpڱZ,] (C B쨔g6yɤՅZԢaa DyϘ̟ɿnCf,XF5E=m+* )ȏ׺gr^=wAsτn% xR\:ymGk4w-K{!aRַZO#}10;Wi0Sk4i]2Z qRa2ӄ(Ynvd:|XYلݱ a\x^^G_]Z 3K] 8_y|q(MyZ=.Ԧ| fm@"`c z*3]z^z'7LwKWvNqc3ShA6lrf-|Xr1'V&|-ܚBGrٍ)r_ᷴulT*wW:ԲdmH]IrrOfW"R |\(9 ŐIym4w]Dډ|eO2Q2 ѝ{ qEO;43TiOdu$O!3`?6<UЌSDEaN-7 ˔!(2)#TEg̷ ],=G/Nl\biTE|c7K&F})ianCEҠ*pՈA9h*]*H,uꟵ}ڧg֚ml:U])o.ijy'8w`CP@DLj7ָS#_Q hrh V^EkBpRZ^ѹHyNH3W@ca?ޕ+ ֚_Gz&O>J(;Wݛl0-

lȢJlhS4z1'P5'!І달uEFJ{ƉeTzzʾm#d g<3,LMPǮSX EߗP?/X)wtHq]KȟǮ0@5 ި8 *^rܮ7&u1rQavpHEI$Uɵ ak:ؔHҍhgI\ ָ!#X4Ҽ x'&$w7utD_O5HɅP ZDsܪB볭:G]karM#2"DF6o1n>Wۻ%|;"N3,kUz])/:`@8֏oT3\j*ҿ?w%6uEv:С~P+oPCޣ֎ F9]4srwؕ5Zm#)Ҏ &TG*k<ʝϕQ=@*/ZO9>f@(XMLY&4$6_&{^U0yʘT0t;p'ħ`2E t]#:L,DŽ=G۫e**m'3>PuSpϢK) o| O*J}oi?518lI'$->zpI6J}J=JSg z;"p3)#z Iw1 '!)آ ߜn%11: L}B' SFhу0mƽ]-ޭ@HyCE}q :e'n.+p.&"B"4Q5w_O p[7{@>Y? b2"R EE:fFc D2(nS`^֍K2~CGۓ)i!*bm *?$p 9ZyGH՞AgNkhqtf]m٢wC1A[>Zq`!!%;/4t,JW)k(.Uz5\G |!wCtiyo7`ӕe@z$>CĐƖ||(%~T.( "ȫR7;NٷY==uO}~d% їgD"pMBS\N_#rRzEi{>/??As_^aY;u  oGC-϶RR.YiU{v; C=C2@ (dqq$=8+eIt(sNCַ . =5,譸rX1/}?z8@M\驲SoQ{gOh^_AsURŔwPIR+`h(dQlـP 2 b(̋o$d@ I" eڥ &-sि8SԳWw њrD{nnMMM0 kq2^%2rSfտ[>nֱfY^A*!4' 뱛kJR\^N]I1{7YHpm1/ף $7 G i;Rrߨ BNLԸƾ *#qGa7saUk_DRsr?rw>eu9=TkŸ V*L//~ = ?:~p蘆/OdKОgH+t=H v4gPfT`jE[۵+k%`[$1yHq֐hUCڈ\SMx!=5|QU5+X7.!56ty|}s Vs(-@h﹚m YU&4.y#0cya{U* $N!i;P !^+YݐsoxAhvB9{"#;SdhϬRDA4*3F?<آ?XCXVTr0=*VXab"4Y󞝃K@C^q*gq\̱gl-L.qI̾1&6 @K6:nXRl>D9jߚI/4v$VG8&Led&ךּD=!\Zo#4nNjܘIELbaU"Uߥ61ػeE *HpC*_My$qU9.c(9X-Nɛ|.]ޒc10Sv:=+~:^FQZS7O"=͑,]_Mn}yAӾzLF]: qK9^8m[jL_8.q e_#xG:hgGeW8u9n--Tf$rTsB ?r7#[]r 4\sEe*Q#ה/~'X+1r$GՖ ޙt7|nhx,B %yS&rtǾ2Txċ},eBL; -~v7.}>~جx6;`8DeۺʵI6k{1ٓ{fA9*Os^K^y`u9}Nab*8CaŧJw DZl`@%It9v͟/Ua&NtOJddzP2溕%tR,ck+(Xq'4- D,Bq=~Q~`owyi$QI1IL6hc3%/w(*'>4iWt3d~@'sx>XJ~n|ő?z^"mm.~꺠:[@ގo/[5HrVIrFA?#( 10t زC<^!I9wjخx䆸 8K4/MVt 0KF9l;D%oGOGd׾*֨l5u"1>T#NߠvSV?x+FgC_wT~Th?qV/*dzܼ5gZ15%!vM2y۽2RLȝ0xuS47#Ʒ r&PY:2 F%q<<ڻh*n=PЯS-t4j2 菕hMv\ /US?V@:7Ŭ.*r6&Y2N9T?Ձt{fӳp}B X[Lfo]7k.Z>H 9 ՟6]G%$Jpx*i 0*fɍs@)e|#yێϺY@]h5|cxM .B`“6PkRƿ=PzٞSX=悂G5)uAtQZS1N$琪8Ü?MƂ4U!mds3H[hT#I8DGfNB~GXHgӁM:0i7tmqH] ny/;;nv,z굖PoXtma/ZP!ͥo^H]Lٕw^ /vb.nuvH2\t*K)}ۦ83fJv#Q[f&[y\&OMN\U1 j+a/4Z_9אַ5`@/BE1[ߥl_яbdT FmeN '\ޞ=wY8jY$2>E͘sjx#A #Bk9-X*=4N_,S_#q;ع]?:d-=yx&vity1gBͣk˖)$+>/0luNQrUL'1bZi^5`;sM%g= tP_jG]¼<7͈G[|ɍMP)7& t(LfF_y#"|B_Xs+UμqOQ?{{#3o@:&QuPK[R^0*ϵ\m zmaBT\bZox7? :~b.34~=1+#1YP@q"4px.QG 5ION6v1Ru|xl%T}|tX) Outt\p.D%QXoͽ~t`(F8;:01 38='nVC3}7zvħ8ai H{<'Q)A'gGĜ)mO۴E_#.gQk9kAA+ az>&񣟿FFyK /'ݢ]54m5RiDb$J r/|rL!ʯyLC*d7Fo/0D6'4;rWڒTc> =7u+:]?ݤ:f7 IT hn>U5/zMV ;=cr#B&mܷB܏O";.yA\NaHeFg#:Pq 17dIC bIJgIQV+'rY\ ^fq \VYb(&"P`9~&knPd!EEO{Yyt4b] Ag R` K(淝;4s5 v*žD(I 4.hOs-'E$1n1WmM{2L'T3w,Z)r{l0[{g i:-|a8U' sdniyɚ-bc7拰R&SCDڟ]qUjxx*έ:+^2%L*2%{l`Kr$n`)fSE3ۿ\ J0ڠf%{ OrCV ڴlVE xWhVDrw'pn-lY0ԀRuz#PtӆA[J`oK4F,+N!f4J"9|)rg_漌:jRvA7wz*wSqY1x8SanH]ܙ^6[ pVu_F[kxao)xADG&&G:WFÄFK| b ;]JMDè%㟿8WyY9HfK_~)Z{``6Ru0cZKA}" @6Ԭ} 65vu"I3=.Gܘtn$=\m8t"][[^UI0 ]ub]+m|Vi,Y8^SENH[-x#=*սe%Ԍ -`w L`A}}qқdqTUig>uW_(%:IM#夃' df4މH$?|ϝ\Y?=̓WdbZLЍ4wl<߷Gl>Ӭ.UN;qWMvC{{N:51ݟ"$Gn~FSW }>¶џƉH)y֊)Ξ(b\tUSpşwtln4b)#2G_7Pd@?OiuFGw |}Y6-s3m cƓ) VE+{{^H`N#eAFO"eV"NOnR8P% gDV Śm,hJ"5XbW}IX&:iTYa=2,Vi Q+5.#Ӌ2f:egBF hީX#OH!!|4i7‹xOLwc_IQ! 3wp4SB *tf;[TLsBJLjEMgf  `7hJ BTpW" A̗TO*Zp݉ [ٛzF~UsI˼hq B?@" əgB"{Zq?-QJ{eO;D /5(@HbR!GwP~?H&=-t6G՘EVsk&v437sU/p xD?{ۘ \ؚ#sC vd!<޶/eBͤO6PʹȲт[%X`fE]u.A6u)^qpaOx8Fnۂ(%#)/G, q[7_zeWF? p޺Wi!34ASECӥXi i݁8~WWb *pyΫf/㿣D"FFJӟB8!4{Te )%=Sq :>wsR+}IyHBD 8Lo[$tW:ohTnZ7+_l~^2V[I)R(%P# {S,T>tR;֭\ θ}7jܹ>q- ̴ pq(dݺ4w'~BCr_QxCAju{8j}gV(I ~i^]s}>8qtGlw(5iPĬ?dJN`!7bQ IZ;AElCrt47@˱WHGeK."&KihגTv|$[JKpn{775䌳q8'|)e%3Jgd xr˕>f^~U㖅nG~`*w$88j.~WWPoF<o[:lMQ ml-UG u-J10mpk2җݐOK' r`0*&W^+Af>=yZιh̭ŞAG'W_yo8T/3G!10,$n51{_Ȧ[\oFHO˫Ҕ?V-7. _t!2wOml%~]7eE(w?"8O gG4Z9Ƭk  gUW3z[r n 3DoEBW.+V<)N"i{ kj {5b  Xߑpn8eM7[0"4n}2wVtT.C4xTY .Ղ6s{"]/T\aWw"s«F͟:!gg]p']y+ sI*aX70E:T1_~(='83Ϲu)Qvhƌ]xA w@07o8h\%ioFĿ[Kbpe-i hܝVB!QUkv$8P6(tYo⣂0H=P?*r+,+i@4 y0կtz;߉3kA(Y|YDbK\stG&3nwY(-*Y*jO'9Q\.Ip 3k5e`ڣCz<.Cp'XlEO~LK8PDFp.وCQ$ƽi{\?<| }ʖlI7%E_|ί1+ ^PO/S@TI#otLQy.iE_ґ|_0W!0#(hC\OB$M-xVl"hQ?m?*X:צ:R@!D~@Nt-3MFLY5=TpBkRgn/R&옓 =#tU0oU?PWK ]Ya iᘵW"r f4Q oa$ٸ;}SIo"hαue-zVs;Z@=6W=̀/)>V8;sW9 jo)Z,cBhK3>QK9Q[\ J])2`tN{`_lU,'~1|Sjsȯ67}-NXVSXD0GT0Md7H*H5Fifugpy$*G@WTxdwָQ4C/9Tأ~?JU'貘g_6mHKRS7I=g˓Z͹ u`Eux# G`.ZwC>\vfMzOKxpP5>KqdjG9pAyߣV%:]+tbM+UKIbu$J"Xyyx;XEdM_'@-,us^9SLQvҮ/۵Ί G;NS|6Zꗺlt߭g'Tsw !ug.Ean}Etm>W0PsmĐ"X }OY[ <-pkqEHO0ͧ 0ɽUғmb/y) $(GIy^⺧ķ;@[Վ0 _ ?^ld&{:B9QI]^M.?:NEI4=&To~;Bo5U Б~ìxX: gÔoHDVqKR|%$,IԴrMGJM^hB}(7S= aZf ?xnAúp f=ZаR:ʉ2䯰:5$qt5ܰ;6!)=ɧ=oʷ^=:Ĉ M_~q!/ 4@^ `-9e>N N%&U\Bk$[^/4Ь~ >$5B$fI C֌/F౥y[\C?8&5[πAp(BfMP ZMl A瑐CP@VXDx)p:xwfgX-}GAۏB@1cbN.@-v9?lm%|MCDS")SPm23: r'X'XÃWBAJYퟃۛz]F_:brEc-ʰ2]`ɾ=>;=B[h&Rz1rM3tVB"ܐ)=yt˜"1!QaؐbZ?*.{]25a HIכŸZaF bApǨr!osKIO_xtrk8R;COED=`n)ҧCH(TY  gxLO__.5LDe譅5ny+vgM0lq Q?@:DӓY}UBj%n@^ ?~K(|zXI,YO+3Iڹ" Zy[}ۚjeβeb c/0,鯇y?Nj5Y=I:} O'kOnj?u^2Mcṿxs٧NdcHC[byئq)t]SMIkG/+FBtXueRVsk` v(%&SX^۔|;y}8x3(Sl& \;uD7MRd?VhasLx@CtP{<H_c@@)R[2Eop@0#:ъ%LHo?]eYj~*?)Er.Py7AhrR;"x}[h:sCagj_GB _q{1D*!&{a_Jnp/IHbI\/>d=V,]p1R[>;T=&1:)y#^CPv>ZY\Q A.V0my<,>y|y*-,vVL6u)o:<9hR(+i)w<ގ|P}*m uThW. 7G>}XT6#M-9LOY<[.U^h>|)Zț:@=[B(6?#\j[z̠W|ͨLKtކuhc4Xs^BHBL0*Z+-B0oɹTqn!\ QsuvL+. ȇ\b3A*53wԭ.ԋtZM~5EC'3g\l5WM|5 Y ٥jHWE hi_.74EBa䱵DXIh0}'!͜/NC PRg)n >–#RHԓp),uÐWjaa>;FQnp7(BAm;R7>~.j1yllhgO@/XFT ? B!Ru* gr0.@(82[kFO75!ƼR>N^"pbae#)"&,2? ^y?{ӏz]okW8""AX€j+$B"Tcv.ʡ CWæd鵽˝J @;7$N'2 V~0{8Wۼ%I@ oG8:ń>d~Lmy:BJdX^+6NQS%YL_Zk91} bI~.ʥaR@u9p(Pvuȱ,_i$HjɄ?ؠͷoFdBz4"i Xqଙyqp? -&,8o%NZEKD!=xE;OF@jGC dՀ=bz2?@7p[ c*95^ hGMW`'c=%D¢WHp>_ 9²!a,@>{bߟ<ŨH]ww/Boe^"._[l1i x@5Vj6QiÉ殌35v R*qY.@ s+u=CKjAPĘl o q4=^CsB!كH5Pʲ.e'-Oj1 [?hbkZX2(k'kܮ9̙pxC(tu<טOw4k*:"f xt2wV#K;uj M k/Uԫ81[|(,0Wj%yq}pmq <9WANy]9d'OCd B $\u1&<njugSj7+9U!x! \cU+2WIx*mS6 *aM:J=E+h8g{3Gh:6Oa m?Pf+p5#),R{ &]cۖcf6[zW65؝s)J N$ݫ|w_1Ez# V`0D`הȪ3Nh7@# ת DD1C‹H,8£K9|/ pDݿ|L\q/6|B8AUtߴGS?|g3Je2e ]O*5Nu*RXjKLYZbZw!\Rn#9Oh]⣠?G 06juʏ%w,>hA)@f^hw"E29|- v>Qt$}gzNfiVf8;r/~x:J:ybSY P^'emn}szI~aRYL6W+g -^kA}@*gFyY#\2)HB"8,W X?4AcjdPB?!h&#%*0"(y x`ڻU' s{_TjZMIDY~0E2! "îm2Қ8!^bI18w@'Ͽn|+BDk6!Ƣ]xQ'w4{.72s| k+G| ~ `VX~{jjwFj'IݯWv;"ΉܟŊ@^CvO'4fc&VY/ͩMAQҗ-r㵙䴖^$8w.VgM۶6" Hy-Cp<7S9H*7BmЅaj@ [nqݝHJ/yݒ;K>J?W(5C$VYMAnl}5-;2>z{k8 E}Rv/|{݃ٲB+*S#&y9|1wɝ\֓_/AOW1T?*5҅;SUsADQ>N,>w)E LgďhH]_/2h2c U -0F8 r2x=Ck,lR^8yK n#ٞO^HyfP$ zGt@$m&qdi^G@yk@D|ޟM=B`_[a5`<[:Xf:1FU9-ĵaL;US~ 7Zcd-K a\.YO ޢRrf~"z`Y|)ʛl) {P~;5!l+8l] A/:J~ ā DW]H;lgt4D$%4|C0O. ʜ9"5(P@0)E M_gC ]܋tOXƸF] Jos*ԗ}V޿d(p ZB s\Зf ~+!axsжOT3B B#ʣ#bG*T#z΅=l?V;f]`zą=ǧ'گf8@;6M$"`{[BDAEn)@JwjR$1!IHmvܟ}kE:X^lg7$W %^iGWxխ@ Zեx1m8J]szl\)?(Qww@ e q8+# ƕmKFw6*SͬZ4Jc/v^'▐ 0B 1n"q:W4,{7\Jk[1DW=1Fw@-.8'o'RGGJU#xW)MdbMݔ]yQsuaWw#0sIM?>0\ @ 56-42QnH^=ck[ft] +M/Uٚ5$¯/!u `9yb;D#ٖL s;U?vçe$~)Guܴl6#T0ήd7 5ļu&],S+搎~%]om"=2\s,UsK`%h3*p2fQYW)ٜf rT0LG }#-)0Q.P"vL(qfcq:35`6GOl`Ĉ _S˒ u_ _Aaos e@ o'H!lw^NJRt&$cUvt<.>@nΏ3\ "\S_MB/Tb crS/_,܉APѻf0WZϙ2pп7%9GַR-AEΌ2OQw^Q&'RؗusM"ƖD->*A3[ⷦU ^UyfmW_?ZQ?֜ AU>~݈'LA@]FXCWC|k6b YKERK )-;~큉7j j.|Qwz_L[XIy%Sׄ\|͝L wĊTiG8+%3B{40:i2AG 2orU2c{- M:bjrFӥ.+ clH~b {] 4P=,mQ#sH{= #ҿhaoH|e#.u ɠd5h}T~l]]y$ۣW_9TKjH"Km)#,M>xj8!0z&t^ "NL::U#(k[5ty}@ۖQ4 ؔX‹[QsH~kJF?od̀W٠y0{[sl ɁT'oǕ ^y=X[7 tQ =kh2R^<&B4Dή h/VJg zPBIQe;kK\{@i{ >b[lqLx=?PtלMw7m1WfVE`}j0pS\ :N* <Mq Du =t+v |<0Qyu R(,d:|<44d3 g^ZUq\6 Q- V6ɗ ́*` 6h\\_WG6yB.p:oꊽ {Eg_y{+Y@;VϢ!DyI@Q\18W乐/i6NPŗe;-P GDe},q'g<}!G]>r^hwB I,t~:Nx_>vwϭ'oiİn{̈́۹[{%?> x ;ioY"OƏ_o4*) P"Mgf Ma?EH@q e?:CX]U2=M?̀ɬbB3 I@vL½YV+eF|17.O|HЄ<$[vk{5w6͝X{8۵Y]>e.ŗVvOE ¦RGH% { UVm$(YD 0Zy'N DTa͞_H'~xi)/D*E<[LxL]<`lm̡^%Ppk4}I@ԣ¦bHooȖw Z$+1" B fa!g2*bQ]J=-𚇹tZ3|U)^<I ~5+T.:<Xe;XYsHʉQ  6#hNaq9?rIZ_gFՀب~+]]*;QH9:bo1[}XC&ق 'w(p,?jCt|nً(-#\ qvA=qB G@[*7l!wcH; 5/:*uJKl+'Hn.ӎ6/isdI"iNg A)4if/Z-t@l05`-X1;Ȍ~ӱ'a'[}7za>lnym;'n^Atң%Eͨ'Ŷ獐@Wj]4Sx%ƪjsfJrAn] jj#~x൧\-`$KUA-DQ PVL@ t/AtZ"`ٿ\!`=s"vgbϸ/X? V\yCYkqR_qjK" (m2R-#⽆AԨ>Z/@Qطq^ ³4Mݿ@p""Z2퓉hؖvﮣz&]Y8\nڑMm&ffT^#^WhFHA6|z2y~`טhM&),"FW" mAtz&Z B'P{9(`H7/Nǁ-l^f |=!|z4k;ElmxCpGvnh `b Th0߰s3GA󥝘+vCEֻXk^MU/Np6)=SGda qrlN[er 콙  XK5>zGK8)D5_atM@ԶLo>CH{ ;'Qr![=07ԏd$xp{(O 4L`7w'}ZQon=,C A0bdl03rQ@zC#V9,Kߢ0#?ƧfN9RZC(&h2g|YpϵDD~&%#M 8՗9+h۱ERjm? X`\$>AfR|Y3jiX%ۆ,0mVY:&[6,iHPGɤi\a@?T6Z$?ͺm5fZ-`["l|X(~0iH-v/ T]a4[5ܼ/n$7Fѓ5.=\)WThV L*,Ij›5̅8K5_`bԬAwVR@p0~v%I)G{~B˂;4qp$lb 0#<ײc: UI!d]h5&qTEQ:)b_0i&d$}U߮V)27%M<ע]Lt9"r׸C"x_g>7~TO!py݅Cu|? !䫎<eJ CP.+ƪY4R΂P\Vy_uJ?S⅒n= ]#sL_bosҶh-wĚc+-\,!6Si^w ^u>|!ɗdJ>jB1ZI?sښo p+ З7EQX5AػxՀ'`4S!T :5qG<oPzVw#i:u(z1gj+Ţ9d[F*ۙ[2P2wXlcKS)q^+\W+u֧=$)Zk C9 N=BnHzFd?*? \R tOРg~נ3S1|Lp9he^?K)VS)ޑcj*C՘y4C?X$ [0[$7a Җ{s¡s(1] Bow GM2Vao" h#L~? UT]J$CO(QKR;b )SKޝO#0{J8~p泇*ZOtoZ,@ptQ!s&@WXiE5 nC"孯/IL" RS-\] I|G,Q8ъ=c{Y;F ";WMƝH߬kCπ |n0,њ)yeh.Oդt@w,|@gTpaÞUM7aL*t[~9G ǁ k]׋rO8(UKR۝l 2PIS0` ˈ:=r=ь3 nwPKv>2.0{"j7\"++vcE;w[uz-xT/R + t;CkڣcD) w)k"f $5u*{;_NvjGsC/J]{cZpdjs``7$W]|^Q0aPE_xy8ACq$xjE¶?5` 8>Hm@sZ^Pr1;k|߽ 痩D~BW _~ ib>_[nn ! z zr<RX8.E(w>tç<)B(R` *l><4[OvHSTY]KAvnŊ˜YD_g9$*H`v-NH9pV!Ry+IdCfma5I}?ƥtᾠV֜w(.UmDEa nr& }n + vLPg@vO,#:MSrzfyw *i8172  b^+K Rs'ѷtP&3F d}ZFhAuWtza.OhTf;Tfcȇ\H6`?e)oc O?<ռz WK}#e:jgiUDٳx\!Pd_+SV!P2]UtEhlq{k8*R\u/$ϩN 'L6%Yj^+{pANۛrĒ csW[NUKCl-9t@\Tߠ ־ppeSEU!:FBH rZ{[\gF'|q=3@S;Zm8^Yp0}< j"kSaԕ&"l̰/JdѿwVs&䄊 iA!Ji]jA {`R*u36gҸyIE]j='`,V@(9H2)Q 1 N0 Sକl;0!͉u|&q &8^5zIGB;5ݸ*c7B@2h9v Q"3+ +ƿ oS j{r%gWeRQ>&Di(=s-U*}>8$»X(CO0m -0gsKڵ<42؀'g u1?A+G #Hk)\,6S׿5>7 a(͢Br.V'bkzqYQB҃38S>C:2 0 [q% l.g *c{rmVPNVhOخS_]<:L~n!=<ٽ^Sl wD8?uugj3i94بxm؂õW}Io8Dt$ t9/xФ8nY-!VbhREc uAY"ڽ 舲;2$elVs:I SQ{>8}^n|ސ7dʓE,U! W˟.o`ܥK1+5JH\IFg볍QfGd˷-mZDh[m6 MUB2^Lwi0ƍ_KPՃg'"n' u+OAަkM?W:tBUVNF[?)Eʞ24P6oNsrt(~Ayc0^/)yx*@[j4Br'Kw[9%h8M= "Ҵ%Ӹ)^‡tHh WD7'5Aq)u1ԣ55G:Wy}aş%mA}EGbӀnB9ߎNB_ 㭀*wЀx!Û[%yI]@1h41yQB:S#q1@&Y? v0dc?1}%#t^zz9:bPMs {5NjHp0Yk.TQC  gZUf=+f&*7dS˞>׉P<Й2?g!İ =ޚ˃f‰+CkҔq ٬5ۃTf>z^nBNLu(saBzlS%UWP]2,ՒFA:jl}H/`9:2XˋY*zoܻ:4 K'$FHq|ajGk׎9'TGh4'aƲ'Ts>ukNLxӪl@|Bwޚ%I],&euc& j]rZ Lh}af(V%c:goϫФ0H̏H*xУ z[4n}(*lf;1m+Y2c Ӊy^Ћ@ޓbzbd~'~t1BoU~m2IA8i% ggL9UqV"ӉPdtIݥ/x鈸?S!&ssk}l:p(JCQd*V8寇'_I @b}o E?f~t@^#C"g =pp5_;s7R#m(|GJ)NaK G/npP*ER!H4lRAٴa[=0yZ8T, cs"JyHˏU@4.* ۋZ{`$/eipzB 1r1Bop^0r(-d_i?3}L4g6> ^;G, ^x,r17 <\KuT(&c S81ٞUFg'˟mʍrj5) QͽGՑf|=6Y@CQ чN$gZ[W4:BT0}5fP폴7[LJEEu(7>o%sbX7Ñ(w:  BwEK6B:e^nbrMa&<_;txiCz4)]ڪ8YI ?Nps JGyeR1cߙ>]I[O552hK p?`]c#e3 68O*f0* C8Dd5@i:A-0%]%[JG`u.ړ FkOYvTs& [.מt^^hyD?:zrd>qjs ʁ7{}`xX-ps[Sm7ol *4S8Ig5 ~l( WsMξ@BIp:)X[_ ̌Ecnǯ&9{'6V-bTԇr`B|@ izcheI9 v;`Glѿ3h@liFÐ<nmTm`mZ>C.Չ1(ЌD mŨB 5_\fS:_lopVe):Nݒ+ $})g{=X6a&=ո8s陞}?qM-+0X!09 ,jji+ K|h ^t:GNR`\ۅ&{ӂH9y39E;xM+_hSmrh:" 4#1ϵU.roTfEqr G[]tRdHzpB> LVz$lXxkծ҇ [ii@I2Ck[nkOn!Ő;EH&8.خ6N @. PCk/~>a>uFGSx73g؅I` g5^rͫ[ 'Q ݵrd!nȆ+r ܙ}e)ts~YJUP\٪>M/0١3k<8NTkyNԣf;j2+50QseK *+DVXIN4(2¬LDC7, Q)L ^8]?<}뾮YuܼдV-ѴN|K7 ,{h"OhSm8?Xd7cx}n7SSc`kRHғBԝoHB6*G+h`ɞRA 03i/QX0Mu M1&u30ɻ!]`K :QY}UC"DXUŸzY&ln_iqTw'C O(n KwyoiLH})kfC@l0B<1zXfF5ѵn9eb_phdD{Y˾$\Qt~dD3ki2`{jwk;F@^Zyr*%s$}NFD|ȗ MD>_AQu|t$O. |{ ȓhhQ̽~' W?0Pl;n" M?ZBEámK}5YcPb\Is2iыÏɇl"%3)Bn@`󒉺ϊ(VT!NЛdɽv#gEOS-A';wu#g&_lDΪ`w C3 OE8:sYJJk'r~52f=rk'H$HwE%Ut>LFJ1TG[P0P55K=068[aj82^ _ilڨ{ޯa:½35)[qJƶzIVGCװ!n}3v !xYp ֗tD"ԇUt3Hnbƍ1!GAq_[9) +ߕ~so=L{eЅMpA-B!jg:P#KdN=g"kR}&{P)ㅃcu_|IKfڮ*U\j< C թPxf 5r??:FP::en%p}ޒv.P٤tZK 4Eʹf/:zmXq6*E,ePDI*7i\Y#[iCuRO[ݑpB.,^ݰ?p$&ݣ깷=\|3K)>q@.Kǎ/5X*2U ԰T(ܟ- 0syJg|> r4g7a! H|&\IPF-puƨ129Ї\ . X;5s}RAY ZN#1h*5d4JgPuG)om=yeȪa̙^gL=(V ]PT_2f6OAgեi:bĊ9fOsFR쥐y0:CMzzOwֈ'RCmEГ\]_hķ5 o@T AJUG W.>ߣسi" m0g P(Wlts ƑuJwf2C8^ˑqQ\"!3lYC^yo}bK^ ).[:V)~׻zW0~2ݻG @5ݹOYt_X[ٙQT|LofeޮvtC]]7*?e 냁7!\?cp\nG&ksMIj<(އQ]ۖ?[MsWSS(>xnS,i՞`}еKuƱj~ !?x|Saf{M.|sFeLu '$GA |~]ʯN?R{|vTsu ;֘اSJ 9A沺FRoED9j'-P}̥r/؄fHE6vy!jw2vlw#]~=f;śVysqB XGuL ^I#߻Vd-Qly`4_%tށT% L:) u-ISU}gu-lC0č}6A ]P {ou#AY\4iPxУ*裦:/G`ۿ,^7m/_ Q>}'',kjge`4 {q0 nxER Eɭ_Jza7T ~9s%Ah+K\ak4 XbT"]a]a~ֻ.CU۩݉Ao;Čq3T|cTИ-_=q؎"s yv.y`S.H++eȉ pøjx_ʺ"AKAW$TGP!Ds±ӵT[H#s$H淩yٮ!=~;ӨcE>4} *C{W#Vs`K'wb©Kȕ<ŸCg3 +MYQ!7/e,xp@$*XMKlI 'hY=yɇҎu;kpQf1) qGdJP .VC6fV37 E ,.>S+h|ACr6oXZ [JzXe1LiS;Yꭔ| oD$RK'J@)׺@gV_լXN󎄶,%c̉Ąٝ킖US[OO)Ͱ #P]#aQhnUȕ84h2IaJ8t~6}a︤6S搈2a:7fD{\&V%6x˙7F0m5܄>O}(\\ICQsC΋6꼢s|痞`Aйf^֣g= 沴#̻8kCB=Gbw3 >\8=4js/B^eįt ?H?ibo(hREg_ne_4x |AC!Fe|.IjJiܱ(V;29J00oiT<6 RÍۑof“)u6B{ p 48 .T%>?H LA"t??E =tT$C DzZNE~V'yw&2%vR "`/8VM5|)"$MbL;ӥځ_7xnu\֟?_馸WtlŅBe&>T  7Eny f qK i 󤁪I³:ȳ&S$# spۡGBw K^ͽGn&jW8m+d}Qv|o5LiS4n*gbϟ{ha&ɌǴrTXf;:(nY!>L8u ad@_-[tnP.OEHmAb#ޡ]Ak_O5(t]Ir_hÝdl)ߢ=Va0SbX׼3Z;]v:8)p\ȤTdMۏkMlZYS_gej3#3BμPʰwؚq)wRIC6vʪY%+{¿Jj@793sҽA_3i[:ߙ1i^{OF#.&?DHp>\Bn?7s!ޒz&|JKxooxۗVJ\M8gٹgn؋3ZǢ41M%:fOtT.  hZiEE߉"Q2Jw>`y -5_`3?z OUUf NE@5om#WEdGkng1Vmw꫍z{uVhҖdO`9⁶?oQ$-(nY]= R4KuI|FS/17mߝlkd >|҄,`Bi1kvub-<"[K mΨ+.6p%iϦ?&2|gru1:?U,9z L3e)ˆf4(.Z٫V*A<8.6޵W<)]K=B괜[ݿuufhI4Ogu^qǮ{oKSc5ceF.8Q{i.KäPg$V3byGk7G1oJ&*nAhF^=9M@`d}7fX؊.o1e`jn\D89s1$ezѳ;J+~(pq j!َ/L Sҋ=c1] V$)A|~v~RŢoxfJva4imaE 2 A8H.yλ3,IC(L5Ʀ5O0yQA:Qo=۱Ob`VJ쪇jҔZ%,Wu)L P͇D,M߿Ɏ#jͪL' h  y6c"ߊd c|oV},5W$it̥E@m[l=I6,.vbV4;u 0gRUJ' #t^{>Ga;AoJܣN*̬6lGRto*GOaߺN'5 z 1oE'#ZԂk>|dfRr6g&Kק C:}f1DrwՂDzqʍh.b4Q]g=ׇ:gs}\u&HpCKmԸBjSw֗z7E[frtUG6_Su:{ϬQ{멸`͏F¸Di!ĉ.V*,O%S1 ?DS <𹈜xpPky&RX?LK#ȀgPuB5؍<4Ѐ!PK C#Ricon/PKC#RTO icon/add to bag.pngŗy0zǓ"ZzH[[hRRb T RK-ҪD Pzۢ Tiby3;ϼ3<s933_ڹ @ b  ,-oNj!s7ɞNڹK ͒[DJ)8ºNjǃ07c~ttkh9`/񨱆fӤKꟈ>W'p][: `mh%"zeȚ3P:-gHa5pXD})!˯Icc!+)8;ZdР&z 9*;z\ҍFI%/ՈOCe|I%hBtv~wp ^?.WVvxs=Y#'cO=p{mHc.SM%۬K"&҉`;nTY1^2~X?e<*}1Ox9࣮M?߹fl;[ߩJyyCcY ݭRT3vvgю Am$|ÔjCܻbxCD #4ˊMcC1zW^= ZLmL? o #ӼGȷ׵W|EiO=c>{ |w׳X^G? `6C&o%~\ssh¿RcgH[ NמMA l!ݨ>2vaǍ;VS%ov ~au/)VZ#ᡴeSƩP+`.ʇ@D3<%uN[9o5eE/~m,"[#m̂R70˗skP{yDH4 /YSݟcV^_јֱ% ^v$7~B?wmJkSMk 9MĥPw䫸7KeK~ G;=_ƦΝܜyoV&^w|]!9| B2.gRNeN wF aπkE w`m/G*l0(\f(JoZ%^ɊfZJZXKd8AQJԈ70|ݧ;L6ef쐱fjj HJ;Uo+b¸ΆH,v9U#&'%^To௭?bwhe$XnVi[U΅pN0_j)Cz@~ԍ`>?<g!1t$>$7`&O j4ZնOңMWr9հ67$ӥncum@ްK%']Vz/j.020?vI- ߢ iȝ%}7\r̆5}T0;VRWo867:7eFO?2'b#nDYZ 6Vwlp׽yqiU|9ŦsZ%pRˆtLVbX ᯱm>E/#^[v7dK]$6`R2b8>R_KJt"j˞ =N? x氹csjY tq1N}@NP%†KSZSԲ[I7/=Bk,BJ&9־L%좕V6s3LV(0S; }i͜2CO]a7lcC8@\S_a2P0p3G_L皯,ƭ3Amϟ^7~C#`/.|ap8""r QT#8/-.x'Hn,k0ߗ%mMQS}% HW%QJw g׍\d{Hh>=EB3{"5-hM9ǭߗcVaU)+Nټ"²5Hν&bt>TLC=Y`e3ԇp;R?rݑAMjC)dMܪƎ+~gIsNm׬KhfvћVw9!uNwmFMp*ŏ;:ֿӝ:}Vzck hUPDA|{S7? _S 4N1(t;9YQܚy;#$ָU8 {ـ kgRlAȪrдЎY `Z-H{ lB?GDJ=3!?0F:W$ՔHD9@u!`v#H5BEhg<3-g+qwB= fEgeHL;`f Ђv IX&ۭ?Iv=y[Ye(wfv/L*6K6gnΤ3g#銿:LBΔdk{E%+:JK3 ƈUn> losBh?˫akןdUs԰'Y«~ʢM5 } JϞ$_PKC#RU,'icon/attach.png'PNG  IHDRyE6[ pHYs  ~IDATxmF'BE ةJT_Q*^+;U`Ȁ~vV D] 8r3Nes /͟_VfxQڟ3.P"$WK{"V6ܯ^Z)^2F~Jx*V6JGx+S_\05 =$\#t; b$WL#ӕ9>xɕ/N,p2ʃ4-/  ؎%JLmG3=?*SR{pk=>'AE2.D0`;`#:/܇m8FyhAMÉz6l/? ~?t&,,xs+(4\B 9Ibh^L{$da_̹ke:|k4G`۹3'|25E% \_ݮvoRCej+z"Y-SgC4KVLqԊ=Y%~pP'slU;@|ͅ"Y+d*E.YaNNJVѐ@e2*8lӂ[6dL 0,M$`r(bג5U0~ d e[σ$`vH-Y.U ?;KV'QPW >Up- d\T[IrMF܁=ɥ HS\)7TX'n%G9iϸ >ΗEyl$(F@m#u^@:^vZ2.)Mp~Yl&lTd7|"i]$=  ϔ6%﮶g`hğ8BYVa0fD|{e{9Ndm,Xy&mr{0I8%*|7NhFKMJ,`%F)-RQ(>\4#V ΑoԆ)EG{ PWdsZ2v'KL_Ul*HtdSdFdSHF2٠ ErhF]N(ʸ`\$S62=Y!- THKܠ0gTp.VwW1>"'֯X)}bq•"~(Y0xH3h,UNdRq!u`\P4`)ܙG'|%;-B{nR0BaơݶV0DL5N=Cdb;2 C̢R`$jeH@am)T$u}ϜEHY!-~_w+3+ppT.-2~0m?cjLL!<\7 rb&ׯvJ$eSUam^pRFAuszmIENDB`PKC#R#y3 icon/bag.pngw7_+FNх(QAD޻ah $jQm(!J'J2D& Zk}^:{y8cmj v uu4ȝ0I 3ir%( "K`]Մ[m;8tZRka\'NR3?1AOE:Ot|M`mc2k^/3M洴43;Ә5IWa;GAӿWs|觇2j K4 !\8/rO.&#bīB7Uز?‰$,t1Zf/-Po~+(mxgر^C?.v> /ݼ)JRH])U08HYS=\^ v)_a-)YMp\_?+S YohnŐ%Jl#ԳʹgY,a0\̭"%/}";~8W#qm@j\9^!*Vec։siM]mIw=ODI>/INڿiH ƭ2/4UC>^,q !REݩ^pF2 ͤ]җM~ԁ?Au`/DpEyhk+U5OPgX \~[y`f I⻷ Ԫl;q3-[ IYQ~;$c'2w7i՝=mlh4>^QC:2;mmi,z/szdjW-DbYxKsm<8j0%+tg+ԐϡDhUi ئ~{*| 5Fw Z.N८]\VfEV^ w+L HY9u^](;v".h<n+c>& ۡl8]2Q<r>:dK֐ͅo.f́\8A;PˈCh&o1}/s4}:_ϹP!Vc mWD~8w"ltV/_/7R9,y>⋹!E!@uT0wSM80釋-2BE{2yPKސ#u?LdPf 6Pas 9O!B "VWr7Gt5QQuKGe swjUယ,l;fz\IZgr; '/Z\ hK%1;0C2Rػ鰑+9rw`F( VuHO=M; ;DY txP QY&d “D~L!tP\hnCynjN"β_JDh M&쀸9CSMl0衭1+1ӜfmR&gs%UŹHuG)>:P N7 P(N&0bkѢPL Hᩗ`<wPslI$ į`r1jqw)Y llj[נ9Vܵ洢v>3=UD 9g~7%vWsS4=XIFǓ=bHH= C W a GD֏ ?7̉g3W~BGl6Y6CwQ\Q @@V꓋{HbK졕:.A?gA0%\)Y 9eqQLK YH)" [3Xx 7'k/L1MRnqydC>uP12xnN 1 )|d?9_ RhqQqWoܵ-x47:NmtqQCS/&wgi!5_H\,=-x4~i4q=ǓMQ bѮQ[崽& ;m1*JT!kx&e}K"5;;k>a!_~]lF RqK$tDې2F[l^'E~0ĵy6C`vGոU@8/"4{|uvP?},=>C&H%}#(%gWkGkoU;d=Ƥ&,5,g6LJw"]p6Pz#*v9u!iZ7&\"o? g|at6'p|di!Lκ۷k31n7JF30Z Τ,!cSOW;6/ T3dFE MP6 yJ7O)%K525dl-${$j亂 V81Y !X"v5Z>zWR+fГoE~e^d :bƅJ-d@cwkid[:WҋR _ n2.BxZB(vLF2dw92Ǖ5lMiA}^pYA9H5'뱱߽&|t9 n%zPp%\, +$"oly⾆YNќA%i{@W-sOltǜ4J )-Ҽ`.^-`ecׂ OsiY9 ]^wV==ɡ^TS >Nx1,ph8|2 = Iĭ>12?ɷ8:tb&YO>M >'OLmHDZYSMW=}E9Rq{Nz p jK^ ؜U-YR$L\hSOFkS}c*=YH ?JImi٩eA̞Ho@C?8YS{2uzҰܤ%J*\50=~)Y=S繅^4gl˔=P9 ks ږB]_`,b{*0QT_`XdC4mkDJV&Ct: 4) &9~@.Mjzc3_oyq U+?Km7 l':Qu<*- #wLMle^Ѹ dw64*l?64n;}^T*5[D-RpH&DO|JF?1 ^HδB<flH^vVFW4@\l#h] roH >e4zo)g$gc!XAdзf"h8_mJw8UL߽Zߙ{K 嚀vѝ>w>@CܦDi986k Hy2G`/knDe^,Y,z'4\%g {hB{LoOv P={pYRLA Hڠqȡ~ag8d D-(\rWx|St}*#jab &Z<&wI1kե>LE4:[NǬ3M7I)9o%Ɀ| MxaݝP xZAkxux) $"#~l7[-Y9 MZc>$7>[>;<8xS)r{;gw./ZZ&,iH=V^^0캡x .; 70X@źF2Q1T'CʍmƔ wtgoY'?iQXȱXΦc ?9ݲIx{:W2A"o1F~w-^KlKerr"N)T4zH>zPlsU o^V <\rwF!r(Eʮh%CkJ^ !7 9iOU;q w=VLT̥=M0<":ƗfއG pp$3SO6z6 nQXVRtݑwITkGsݗϾmXl53.19;28xmcK͕wPL7tnCD)Q5?Jz1 (&O@KNO74pa;b3%ZcnQSr?ռ+h\8P)LUkyų2Gaby&1bL^[4 Pa6Uu<O:{phR|QAhEnزMRۉKЉ3?qYf*~ڒ-K%LcCeHrڶilH؎u-N~oԘ0^L< 9 W)~VY+BMBIh/Eg!qk.˸_B~-kޭ']q^lq7Heo'X#0Ө_;T:Z'ָjoJZۗ_a9|X.;qu>c3>ZɄag9jwTTUGb,lj R|>yJ-€ޅO$a\ -iBŨeqN>M'_^\$ />:ÙHh`6w~t4NSoǡk^a UC.e0#Oz۔5IYaj$姧J$=RxMC:_]Ÿ-Q(yl,F7lZfЯY2#gfTgl6pZp݀Ԅ9TNB\peZ%rԞ323@.,*atReiPVZxTW+SMe7ehPBD y+.>u3LհRAIrmHeռ_& ~]s|R6@Mpʓܥ* 0ljYbAs.4P erg@^} SM#KXM5W*RHvGpNj)4@Vd {).a؈у\w)G- Jdn9nK~GW =g Slj=t¦_[Xу okHCPOD'DB75K'8lPVu̹ OH&aۖ~?Wgk[,:y&JP轷evPckgږ#,1ΣF-\u8q*,P;e2uc-@K{1pXvɼtx7z)i_/,)}:ǧ}M{1ös;9\CpUaј.c<>qg˭|ʻŠƠSCCG;=,6WѤ.#u'S>P"5+"fJE2lڝ9W-$n Q>5jIο4;SQtӋ6 URAog'+opuj9|_Å "i_ MG$PKC#R^icon/calendar.pngy4ۉ Xx}v^'`RUR4X`V1AISb9ge,QNXh4bkGs_s{{9.la*Y_?ʓ|=uRe΢OD<$>'hf9dZ_rK&o-G0߉b3vV=DWK;hvӥ~PUԔI9SK"f꧿b6HJ8yl'nNқcܶ|[ ۋNu@eoxC(Kޙ]8^eG3/*fì QN1 '3".jRT/}アg۟IOҔOm &hgH?.I:⿶r0!\͟ISh)niWԁoUlldFgS$ 'Y;:qm PCg^GPvMΆ/=U`b^vטGu`ɧ.UޛOH)V r#υ|COW5s=jU^;]W͡GkN;=CA}`Dkh .M`ZxV>"g݋o3!xAzHSiύ's`}NSm8I2̬50.㢣f){bqe0mUϮ U5Hٌ37l_{ XYw$ /z͸")"Y\ 7a}cﰛw }: ⢄Cʑk9zЖ|\^lu ÊW>DcjiEJdө8^֌~c 1Ao$9шf~}lIPz ţ8N`0|0OV 39g"Zx lM0cŘ S>q"<~ ;;XW~Y,ʠ1g*I* NP/hANT(^~|Hz` dEY<\)RpLhJ KȉfAIm(APP PYPR͂@6`Dĥ؉ʱc]PRV s킒j Y@`@`g(Q-(qkX8Cyhb GFp2T}߷kRUoB@RwUrYG"^z2#;QX (q,{AПVŕdc q+|"i$ A% AB AJ*ܗ`@rb Am@ 24GǙ%A4cNPB &B) 0BF$(1 ,`*S!A=|hhOPiB*/gB:)$;4+!Y)ށE ] '2((R@PP@qBI吠-e!A%H9&IOd%U _4Tp[.IdTP :!AFdTPRs[Hd $C, AOwX(BBjmݪ!A<}D,Ta@P;]H  r8$Ȱh%C J0X9@?Od<\3|-jH!A4Њ\ *BZQN +Zj!nfC&BP[s9K dXp眅4x'K$у^h6 ()m@J (@ A (XUOt1[**/_vG҃c^DD[rwx3?0n(üKED9*1Ka>-Є\ryi9*FP,>u|>Ҕ $To5J;8OJ|s-(N  =K:%I/ns@#*(6@L%*( %IzFP/x*S {.Mw%(P+[@T *hk^'"*o[B1E.VaˤHr7VsEg*>3im㔏 q`(mO{7O#*:5o¶w\VҖw^Öo{>/m5mߢ`zU+J]B n֒tůu ey/JÍ#ʸuJY/CAVʲFp}PWu#ɇ)-UUK؀atH>LZ$Iԡ(n]=KY_Zǜ!Ռ-b[}x}ƉX4 ]>Z8´ sIYTK|i'$?&$- m*Uuq \r^[H-. Q}m9aBI蝼PRyRe I/j9((;+AuºO:ϯrk^>FED*@>x)fBɰH,XYdAdAyuW{Bb{5Ţ,^jA.+kq*99ˮnkIscR^d uB,[,p3őkHpy]LijT),,m,U2ӧ"ZT,8.Krzx>)7˶Vת$_#՛ۿxb#߅s JsEQM{%T56͹捳{M%Mٚh<=j_JibDl\Ĵw5堬j[{s̲[evat AuaJT*ׇXǹnEVjߴJYmWZ[y}5mv6m[Άp]=rE·PBP)ܩ Ѿu`AJEyh sŢ|*cW6dYjݥ6\} &]\ |h=4A 3Bz+VP8ޒ:HFYŚ#m V!JfNafkSz}EjVOڒWWI^½֍9JZ(A5c8:qx]:ع49:Ԓhs]i+I&;Ѝչ: 7Dg8/qOD  ~n=|IENDB`PKC#RG{=T O icon/cart.pngO PNG  IHDRk? pHYs  ~ IDATxM{c `#Gl#!;D`2`=:UHȖ{zfޮ~NU?^__+͏gntWoOsσ4ꩪO. ]O?6|&UU!#"s|hT.˙=?@b߄\:sG|.A[HHp470v-MWEKFh}8;+h4 _knm _j'@tFYǷn muSҎGrAZp[n? ؽg*-S}1%bpY ̂܄ou;~E16v'-$)B4"y ~58tv''W ,jҾiŞiQKf-}sgnxN;(_;d։^]^V<0^0o7;X!=騟C+?f:_F[IsvHeyr8ux ֈf>FOi&-n!b);&| _;ElJ3ivZ#fv:aѠ#%DN?.EH> ‡"AP$C |(O}޴]H3bgԷ|׉mmp,ZTiLtli4}܁A `CLRSC4<}%ݥ>" ye3'ӓIKG5~׮C ?G.ؗ AcL׈ݣPL+x v%5ʙ\w%kMN~h`Y\]EZmf%r"|1V)>FD+~y|fR/bW8UL|؝=sQ؊EF37J:PEoԿĮHuc"O{[͒d!iջ߾'?#H'wG-)IхtQ6SJo枹DU8ZU(]t,==P!,.d^yՙ'y0l[ 0=uH|oSjuKih]6S !`‡XY\JCsgg )Dh$TEBVrfggEyIa<>I Y$|͒d&"@[j7"A x|(gJ2̶xE:ڢַ!]e+:la 1LJ"&|$Pdrgj-!*BfuaÐc:+Zxm%|IPۄOI2d6'3%Ĵ%A=>y|uV%TfBTl,^HԄV&᫖$Vb塼JBTXZy|IAt`u f̶B3ZVG$T& Mkk$xсՁ1 bF&7,P rE|d<>DVbl:‡"'NLIjgn0)De Fϔdȑ߬d\Y,>S!{ )ɐ#֧u:LJر%QY\9^|_V:З$=>‡S E@u&;Llՙ X q, <>J=#|HEޭ5KeOI2VJI_% -B#>%P X( <>$߯(|dt@ S -X(U'ՁQ"|<>-fVǪ@<>ƊaJ2ČV5KL:{<>ւ[MLI*yz(W:A!=>S!\aEćR>5VYm2c7\ <>D#<>;fԩOI2Zo-|$C hUH, v J+XBB$#|B"R\h= #G5]}2([kCYx-],hғ'CO~&?(@@fn̐W(:3ᛇRRɾ@)T4bwނk̹߅?sk>d{p_.Yrvq/!3^+oqTY m:n%}eUUC5(-/Z5r8zV5O9H~/tn?&KtEqIENDB`PKC#R:@y } icon/chat 2.pngy4յ5D kM1k[v2cIbeADY& cv=]*`leHE2c3fM=99}mok.Kԑ=/g͈h-p..qbr1VT"BPX Yq=m'g܌NT%".߮Npy*Kɞ_Vt~ k.'<ܨ_cB/g,;s'y%]mPSs661;YNDhhYGufqN_5{Ҋb&$߶ʦX =-0D%7yvTxI~76h>V*!T2vY"=E1k\hs SA7JJFSME$PUۃ}FTw;01~s -xΚ/ke:M4O~o*KfY)Ho[G١Q5n[upYXLN6ׄe5"<} !8a툩tw[; u"Kf6V}3\|ygPC ut7S=sk̪>ʣصe [\2f׺rB'?( - +~6,81a>.hGJx8OI-doQ{ӭ5s!bV&8@6fC[ F<6{.7_ݝlL" ]q?%h(L{Rιx^W%D#;T?D:E~xѺ}D>jCd]X r<+N Vٞ0^F҉DҶ5C]JuZ}BJr $AJU^AbCIaݴ*+*N|DZqaaHOTJtYQrf~_OTVe,+B?kw)-kY`ٝ6|P({a~Чrs$2PکNk3UVQYs >mE+hSNDD΃}~ ^hhw~[+#+ZS/{w<6z(.tLj2ͿtlW Mд~7\Ҫ?pJuɖC ũHM#YB~l9~$,ҷCXq3=l"6<.I.IuJ#|j1hYzQr>ǭ%N9P@~q,:( O/ö?0`2Z4`=7َȌms;Ӡb8+':S[,dz7x/|eo'MVg@0jAHhȖ#Nj$*"[vEP 5/(Mthax܋ c}/f6}%S4MУ;ECniA0tR2"|Z! or/!tM1UxGP(W#^ۇ܍t%yc?dU ݑ4nVTl>[ ^M.+PJY`ٓ/11O5VnځCQ(r\ԝG/W}_c r{R |%+%wH]N7b!tO@y@|uRRҜ{ ţ0HΗQdCpGk8YI3`۱})t2g=ǟj~A#z1ڽ{uoUOg=Da)/U3+d;$ )ҝG?É/ZLnza?5蜷׿N[':݋מkEWnZS=wodk>mLk;y\u7={)omʗ=۵lmK{Z?|Z2mѶo_t^zsap6Zot̙ܰيkYΕpΫ*ͪK.~_SП_S}vtѺߝj[NMΩ,Tz1$yN<ԽgO}r3ԱgkuUQr 5VX~nj4UVqq[3=],9zK\ǔKlٺ Wbˣv,m14뷽ot۷jWr%糜խ:X\aΑE6m/X{}`SqMVA@f/M{>Z X\TB8HFpiHX (\9(<(OА:o7 f@qZw{@/<Μli/gi]_zS4/ ;Vz<]\9%4PKC#R E^icon/computer.png sb``p b``d_s/gGd13^[1b;w}#e=x(.Y#+J<حU7:/l$+pr{D=5yżm"OT<;nޯU ߇u W]Vu[?gRAHh{+ǹ|-WzvgaU$ռw5a܋Oo/W~NWKVݳKHųMgo&# mZI?/NVnyaEJ+1 4̘&*hc~|~oÿWǣŨ3"[Əgy|`hbhQ`PpeJ۬  J~K<ンmf_m'<ܱ^FK:[nիWs\XL+pxKU}2t\B:yf\G;mWv|(쪓H$Y<|m 5 wKy~& 63^ hfv;_!>p㝏f}qrk{z䙺n.jM{>m*'錾G!f_o>VJқMÑIA$kKx}ps^8/_߿XUe@Dͯþd{ .P˳mellLh_1:Q3u4}=.p*[EGطy|tR1[6̏<NpI$=b JU!y7" Raؒ( ISEH"?!5;;E*"5ƾIZ5KJ9f}C`ꙧ]^pr@HU23J|F7 ?h]O>fu.Oo][8N 5.~sV^fY^Dj'P;"~ XF c@ld?+{7`y/|'ؿ۫קwe5Ε3w,ڏ\$ 1e"4TЛ=PJCvRf ڃ>K`_ʵz6: s09uu7MVe1tb [EqjyEZG*t-6/#G*D orCykFIh):545]P pFk:j3Bȋ9ps=h". ֧hz|VxzNk.HEBqNVW `O-$:JVT N;E h&5e3c qILf!g ~nG`r rգWVIfvE,l2-ӣ!F= ΰ%g¶B qmVI2j.!(:`2:*9S~+LϯVk+-@*QBjߨmN}SJ0owVP~Rt(K,^~LUb|OJo-|^ʷ"?# UCW?cij4|p2n_)24ݚQ9W/zvg=v 靋NY*2F <$xԶx c'븚Q EWڸ=d佇A.3VǛ_H#A]x~nGZ%"=4[΍{t\TčM ׍y:ˀeЖ0<1tUWJ =ڿXZͅ=/ h[8ڗ߆5lÎ/9n "Zv~6jOvW/ՑJ#vE]n pN@Cγ?q,!ɄYk\ܼߢnF !u8v_QC\@mH t0\[sT' Ln7H}7 )pb ann>;D?ݜW;?cѲ#oLO IyrX60#ٕLb X4}'fcgi/~F-]0 I鼋32؇q+>wa5&^;8tUecK s&fYAis%PWU$iM\a ?PZE뀛T~,!w@{O=^+J5'b7[L)^:F*-~KTc:[c?n?[g7PYLZaUN6_?`#xskO \1X'õpyxӴ]&;#bݿDi}~."6Rf \J[9G!FHU)Չ6ZbsR0HreIY|Aޔ|()ű(eiWJe>>'T9#`y55vK".R#DJs-Kb!b͖qꮴɷZ  ^ 85m"4c(ɶp9g #9oňO#?RI,CGoY=>0!,uTssk))NBP>#-&^(T+WeD+m(FEH~I=\KIG6hRPdq){km0K4z _ɏR2B)fju_֤1)};U[S?[J5ҋAO ܷu1+¡ A,ܭFboYfC.|0\<})M} 5 =A6 >K "R|%}3QBSa-4vѧp-ϔ/zqfՔ"w J2L@1NO߿J) w'G)jT|xf{ E?E` F0Nt7 eGrݡ#/@-deqrҊ2p~nDths4t~ESW٪R{{.TMiwan>2{GN0,Va?ٯtkw Y{{w(a=xZQ?6&V!"a9kN_I)߶)c&6:_BiֵWR>Iq}q[N(zQaeí:A52h3=%] NQ[7WRS Rag)ԟgGj]s^j=o}:%C?1UI=t(4i'b*W-2nP$!2XְJ!fӂ`lQ ͔V>Dl ' b*Ɗ~c36܅8RL)USz/\8$$=W\h6A|B:[ O䬉8DJGa/Z^WzVHI&cY{sMxّ4 ]M)65?5/6K!HsF0gwA<_}g-r? A2>s__=d$ ojM dX9,c&Aw,/׬U6DڸvY.Ռr6{0gn{_G+ZGe,e7w̾SBK3~@_<*"E Fn~ޮ%C $+\NfL|)p9ZC\趤9Ǜd.pPhKmw?/"$@V _TS|h42z P=fAgR3 $֗ \&>I}R4٧ژJ"qs$r _oHT/(+WGQʤ׮^>26c>uv̂OO7ѱ&aR#?TH䖐r@2=˓* ]M"e)P@! ,l} byl'0]|1Ir;A(6|(u-n9s̜ߓ3>d^/oΚqEeL<9>6-H=T!o ["%Lv+PLh˒9 od9V Ieow;]`ezaD&ب!% <?'U K{{|gcAe?sP5'6<_mz;5k+ VL\ ـp+{ zO@ɌSBߠ%R7X+~n>ʤoZ/xX qS*fV`/LΜyCۈ;(QwZB`PKC#R])1+icon/cosmetics.pngͺeP[>(iPb wwwnZ-nNJqB7瞙3sk=[yDOUue̽cqm3SwcͮTe Pkkh[bm&2NwW 4pX^`'x(YG2R*V~l-OԒtk} ة9v8]% l}A%lod ݾ- &&?G{zԝ*(YL=D^L_߸,պߏu!DđrhE&whSGWL+xw ~_‘L\2i  ؚT]k9j&iE$V у jel'%wȁI('>}z!=vxɚ9}rP:*%wTP:j'!\%#vB) QsTvꆴyv/~~b%nR:$疔;"ƫeXB? cYo/rxUKA$wm9 0acY9"akDFwk ƥδCw@, 8\r&c ״F%λ1Q0X!:J d;ٗe1.H1ƕIQc6 Jvڶx k: $`|`PaWa5Jp߭3*v%'+H)F0-T-ut,+J36'06IŎ3=j9t2[%p熔\moIaRgo?@W&l!P+KR /#9q&*w{EnoU͝Ж_JGpNMx׻t6 =(S>D,@|<xxb|>,Q:zJl*$hoը]KKO*5\g+#PP{}vPAIJ|* 5EOW2j~t~O@Bٷ5'J,B^zZFZ'LݫtԒ1Ex8we/¤C[Oң2aw|>>DvDL*huY®k p<$q* 3n0x|*ew8&=C7L)d֔qMh~sD>_O#6ڵrLӑm٥AY'a+aX[g"S)暮3Ȁ2 {{)?yaR^iVHBmSEҷXr8 ?+1iTI%"3I' ,­?MРB"\)+{ 1]a2ǂwܑfpsSB` Y(oSBF$#Cb'C@<_~dQCζu`:);`Җkh-I!B[_t3JVW2V <1/4?". brZZW 74-yGd̠t~ug~ Vń8G` Uσ􎌤V{ҹeژG'Q~p߯GWjzEX D%ާ7^`I.}K$,Yw c"ja W .$2a@% '["'N|^%; @I1 EqUoʾOXLu {rـ0ɕ}Y"+^;xRC쵅3ΒB+]ln{F5:ED6 ]FVH$l]vgDH@s;)viJ| .d})"^1J~1/&'-V;TZ[I1 zF/Onk6}.1ߤB8JrR%YpPQ/Z1?$3$FRhW3  Az!f]:eᵛ?X{2rvP=8AapGi+2&^ܲKmIGSHs"3(pio+Fx*v"*FϷڽ/ϊʦj˪W(2;5(ҤeWƤ U*zѻ|Jì&+m쓃ب0UCfyd4i&n)J"^9-8*XQX^)낯"C9Wv> $a JntJ Kâe.EGgI=+$rMWdzĪ)GA4>wX2Wգ>@vdiI#/#+K%ӎdOeIDZCVV"ßj&v"wv4R@[@x)ƽdnc}pjC&8$ 57s_g\ 3qKA)U?@;bZr,>}X“ -Dv^H!)5UDK2i "M63} Puu%^UӜ@ 6Ga]u{ϖ%Ww|5L7B8wJ}K%hs ⠶-S:TjzqO۴U$9XٱeRLJMl-"! -`-scu͒ En!>*6DΧ WLg柹Ü<}<ӈSg5эij $>2cT"̖뙣lnWȝs 9Νu0ƫ kL[]( ER|<+$xZxm4 +gm!"xgY=IEֲlΖoi?{X9286^tnl=Ȃ,da\`1{\UOa=iaʣ5}KM j$0? !׆v;L+" ‰º`=!JMv_*5ZHQ/YĪfUb?fx.:].:Ű^?uSn-R9^\V: P'9U!&nUxR68*s\sutD sC@RxgDNm=F> IjG\j ,:Q eo9;E>2W0hxr/g{OSwNNƬ[@M%/qjfOB5, &`PYX͵r`P wrZs:ȼsgFCȬ@M/=u9 n赓zhr8:W 6=bN4`>3cW9cTÓ*:?TNw7P5VOw}މ-bzPzlAዬDHźrgVDmIp+px: ^iGl>);ȯc%3] 3d13 ňԗua]|/>o6 4nI8xU˜M:)R8u.cGjy`tU>0:. 0.{BTNN|* mGgnsNĿp=Śn%lo ƅ,4& FT7 _)N?3v Vn]Kr1՞3XAO+wZ^Z mJ9.O8 ?]uc+q8TBszAXQ}y;;#%θ!f?_X֫k Jbֲ6~ɀDjh 8WIf=:#/+ox$_(¤%aH(ٟ[cel kk#A궩>y ;E]K5nߧ.Nm#YYzFyܱW W s]E9|wyO%/*>VM  [3y,D(=7ÓpR wmHvvd>&W'D_ oei5cLMv;ʵI{>#~hBuXw81m~9] vrV(lL:|vA'E%7}Ahh/(]_ moGU=y*-A)~ЁtL\.:=ru n xr3ϧPX]4YJؔS 8C!ܟA1w{~N,a{o~ NHNk|hs=!cˁ=i.}P\ #KۛP5Q hu2|yG‘.JDj [v>XC+ţ$Hu Nhuェgw:Y'o\Ԏ\_+ ;GPqM U% 3Vi`'Ant0Jv*FzoK~;g]_1sli\"4 HʲݯAWq9 k=5\+o:/L% Y B;ߏ2f%U= 0B^gA\d 7!s\, d 2u_CCk$u.uCeh]L:_ cP47{3fiD]C}B!2gS^^T5,&=^!(1FG; r>ܧK x-\,tZK`zhi;#+]^d,V4_0x]s~"DȦÔaJ6y{fW9 ,{&MK~Yo7-Ik 6{KFflG ˧;0!ᧀXNz:EA |B*B.hc3b5ei%:vŽƏB6"CX5k '9SlO̎Owܷ@IPpj(Gzn՘Jyf;<`Gt2ΞᓹD]<̪ZbbPRYBN_%lnYԇ@sE2+O) u1ꊕr^kPq6$fR cP9ғuԵ'6o%kavw^fx'p:gj5QG$^wmIu?\ߡ;9$3;"q~U\ODN? HkҋCҔL6T 7F[u#*%oIVWFQ295ilo[$^VxBaVWm i돛O:"Wan-^ew[mQ4C2C%놐VA_Bzt ԇ PXC/l?=LЫ+i" OO |efMȢ D4n'{^͵Lݔ|PqؖҀq"鷜R %L;͂G Ƭ΅VJ _\_yuudwV$0Ǎ? /\UHͫȲ5 }1#ɝh'JMmQZö<c6>A"C&}M^DXQr+cO-'Q&U>woBWR:o~ X! WU6'K 0HcJe| \._K2~? 6]%<"2R^m `S\'fpYkjO4LVSu/S +e~Dr]]콋3{n"#x83?)vk*on%$ G;\vIyXg; zۆTJ!,Ũ5vo5ϏaDo/U[Hah#WRyhϯZg2@TbE7du4hT$~ >cH]0ɌvSa:" 'E*5̷%S8jK^a6,dY@s1K8,#j4 KVe9]vIf&GoK=+ * !}h_K#w_W$Qz[0"j摉`F/ǽYd_ h~!ku}Ֆf>\k?pM{:&x<5(5mBu7?+2<Ӟ-#m,_C NJLb=)_)Q9JN%bԬ;{|Mؓ7G]oS@>S`ߍ^Er[o^2t<#k1SzR̐ȼѸUHF:8:;-tDY/9(yusMjЛd( d ђ믰 ֑=@nlfN|/?CcuHQ#ݛkjD.|V'Nϊςo>sK" +Dc9f7]M $2E4(|@4^) [c =fo-^DWgb9.g4 o< 3ERi*}AEH| 3NKDJEMBT}c)=͟Qö L< pMcbi4i@GhFgHYoJ+6 _o) 0JE% s$ >_2iy/ |X]:cUo)Ÿ0¡.XPfE}1֧xF"M<3_ܕ7Δ5vOES,OTW_w~l p\տ0!(+ GYY X::KDmtq wHY$) \,_?_%j]AVGKj܏op#2h(Ne>nH YotOw'3*aT0AVS9'`(gcOV3 xpOJb>7P03c'of>#C>إ–|ҕ)s,WFS KU]w98 $,5j'<(=_w-IeDz5Q;cSɀQk9Vb0V X1*hΩ[3Qli!wRE \SfSF@#α37@О-/z5Nsqm>ު"p4NlE)cL^ %i3.ndvv Un{o&hw&#b1,M٪0ͷzood$16Qh0eQ*\X*KJ09_JSjk*t*9 ylnD/IDZP&n !̷Z Ypq:>U#'Wnǣg_]CSН<s(hZG_PKC#R"A icon/coupons.pnguyTZQ+R,2ɴWK*ae,+1\E2'ͥ.[@8EL w4ƿȑaPAa|7rIDLt^J^柆WXXZrȾ|s}FC1e.db[3ע„7iٗo*<1og?^*Ǿds[Q`ocy4n5DENbK6.:` ?l;L/[t\͐({orۛ2?@%@d)~bo2#bukY`e"7c θ)AzǜIT \qs^Q]EͯSs.m4Sl3:|l:.";oiP~;aeJ1L(%uhlǏLSpA8zJ+H}ފ>3ewg؃0,EZJTr0x$skgBת|3 -գfO0}[p|@ 7`@]Z?N~Ϝ#IMڿOV}穁t/D$vw f<|Cz& L5+'K~kx.TfA^*wp-8FMA ש)c%[q kʥ #bryKdzOvxEXc;<Ò>N^O*9*Cf&SʞЂ[XgLbGrõWp^2Ǧ7ֻ )\BRT}aѴA0OsRǣ~mL{G{lf2TiqVxr$. r tryZ-7]>qטS0w-:P"#Q fuer"I'w{QS"}:/EX&6u[+QFsYuɠcgƏnJ6oo!>ƖyYUTq˷wc+=yYCj! V8F$;}P 'DoF.-nW-beh[Q3x(qd8} CPـ6\bY`7sMLy s:mnvS׭^_ű7πYŬ:Eߵ>so;,оB|eG㠌Τ9UqPKC#Rdw/icon/deals.pngeWT)7! 4;I(;D@zB)i H @#UH"ʽ÷of,D=~Rp:?=x ۥ<%#C_K24?W75_|{/wBFeEaJnC>12`S(לYm6^mo^vQ.z-38Ng+FQ;[8_t?~2=#eܣS\@пN%cҠHNC$QJlm*l5d~7"h\o%lQ6CzVM2'4I1v}wq+v-[ŲnWVr<1C'a2GF-|o1Fq,-hV/KPTb9oFfZX;FlZ6Y|)H P-|cT=R,}LHAF{gycɝ9_$bZQ>OHQvܙ)0OeF di%9c Հ ғtr" vB;MS3a ,kOw)]Q9/[7qL 냥[^"yP j9P-?@R\ф,%tpX6-kp w/ XX Յ(,䘼^(K~m2&[i<<.Ło TthE41%9q7E_|CH9 ,1͹J^|: Z fM7"W"fj~@j Kһ*EWWB7o-Z솃s:J'+(=caڵRK sVζYHgzn|ofCb;=]EִC3}yZk0;RY/s _{DCd |FxzVL[bdYґeTHjeN6IgЦ͗uMQ,9*Iz>ܛŵZ,Ji8aKZ0uyEMˮkXqmtgOw|DbȰkEAakn۶׆Ŷ+F4=as5)),rZO\-BQU<Ǩ#ˮR tvYsNL]cQ86۬fB%bV嗄yzrxT"T*4bD (V{c4ݡV?wϲzYذBTOr2GL6c01s2e1}jNzΫ`|XֿNZ>Ӑ-4־ ^Gr1M7¿]gno8+j#Ef<"+]9y)vL5lGcCZ$ނ+}aӷ} 6g5뺪˘+6_Ƒ%9]Z[JXó۟?gқn'%W,~t!%T{x-*{L;tӍ~CXU8~)"lNʧ]/DxUOF-:V" cַS''mPێaMAV}Sm5Mj2S**ϑ`'5NM宓`|ǟ+ۓİG??*ߛ>4˗E\.謃xy:eRJ@MGr9wEʾ P@2xd1*%N'*LOA8np=t6IMRW51W aU}*)k>T ? sWsQN| SM(9`"" ;~_w䥎K88I<:XAk9 `w,Gљkjo}r H9fbhe0.̙wz1'n>SڛᲢm,iqG~E{Î`/J;}OumbO0x`z& J3( *]t5;5EzfT/p(i+S1g3,u =d_$ sDʩ1;e4Ot]r?MbV:R0dfE 0y>)\T.i|{.p&I=Ex,愽(ΥI&F l:ΌtO"EyJI1hYs[/n*؋6kŤD!Oљ.y>Di(AV+Sh.Q=7:he@ۖa3Wj~)zÄ&'=|Lg5),̪fD^?jU-p(Yh~30k4=NupIRx&S:0ީPb̙)5Z|z(ƶ:/4! l0q3:uc0eoЎʹF̐1?RwFU2ќXQD6\1ic *?eeYf2zjs[rFr|` :E|Gn~ ]pthmO%t dU(0.3&4vBNV6#>D{?7&8EN;A*bm?Y?r@=n;N[!/e-G%GDt 62({ndlϹ,fVg,0l&ma ` L`r6dx8ZP:݈co@rUa4k].Ŧ&D}s@΃SM؊C0MTH$81B^- zrR>|`Sosڢjܮ- lFD\a|Եh,KaWa,ηEJz{s'C !mu k6 e޴7tMhOsW hyGrB oO^S61PDk÷r+@([&yYIu]uON9͈Cܶů3;!2*AvJ͟ %wc!Ql+Va[Օ _8^CX7`$TupȻ >p#SKĻlZ+ .C4HɧAǍH ޶c! v,k2fAvP Q3nta9y1?a bEp+Ё;(V^hZ7\JdwtU~ g:qqҿ#VaPp޴! jH /, Ru^FGHEj:CntI-ht&agNiHF3&u_C7u$3q)I Jw2KK9(50HX$hBg%XKԘ'jȞ˜3^M_O|`&ߝ(,) c,:h-2f"װӓ5}< hm2gщ4]<[ W{#h}1c-@.nloʀZ9ORݩnͮB-.pSI{C,*fJ_QbA}7ǘT]OP|h#KlOM !!O@ޒ4Ԫi{t BG#ʒ3?m' 곗Ť4Np2Sf r&jpmJ\Ƥ;@c[#hO $ GA!?@;^ dȡpGFǡ(ehkr qIiҸ }<~'~%i.+d1]CY' ~zrʫ@`?3$#c$. )Jɂ8϶n%t'AK9[r /r.94=#K3 zz+&vGz+uYB#fL{~B[,}m$,dz=kԖ(nK]K!c#)6濒AKwf—:3$HXy6,8RZ3r@b`Jp#h+{i3^1x2m2.uvݚ:2x *0Ϙ:ɏ$<2emӭv=oEc>Cۀ&;GVy7 @tWS21&S nT0t-jY T%'o2*)㋏N~䟨WEZ }mJ DPKC#R&Aicon/decor.pngxgPL6Nh* HDEtP`( P"M)*@ J)H/ JB~3ߏ;gg=g;#]Fznz222Gz\}22rZ%GR畠{'#^wL%=zizcjʛGw$f44g*fC>Խ!$]Kּ&mmѯyOԣi[O\ń]msբ*T8n^8P'yNW2kA^0&&xYT/H|玸`WTEeq6όaW)p|TͣmG+ȩ]9 a{j7L4R&ęG ExqP~u-g>{jm>KzVݑ_JnL.ǛJ}J/VCŸzՉCaxw.Ib?3ت)~R=(w (٧K;8s夷r.bxC0tK%ͅYzsU~dG#LTj vI(n*U ; G^.ؘվyM2[BQ=$ [?2Dc1KefcZiZ'M[k*9jEqWN?&5i:4ӾW"|t6T-*Z7d7\1Zq Æ&.0bCtz7ȓu[oݪM7cQE_2rcµ RBVDq 9&Q9D ;CV Z2)B:gd7N gԔP9*n]}ws\StoP@7^>M~0BJ0CY2 5m`=E,{p/ =]BT(.JM\|GBp҈Dr*w9xBKeqRoo9FNP\~=Hy/[!a-;Fm{@_ʂ rhꩢ:h7ў2{kʳ${b3C79טoV~_|goi1 | Kx J8@(- xx'd `TSY}﷠IJoAקm;lQ]X1u=FJ 8H_޿~KB -I3٘ZǖVe923Upت|ʶR|LH~IqFy]ats2iζ#&,n&|F8sHfovQ^CcY ̤ T=I0VU݁䭎Şn)6J }:XHN'K9_CۨXB[g̫){DB]AʗF!74BwӞm#~u g\M5oG,ũfE0Sr.vF`yaܯo{`t# `)Ⳣyow=[Κt _m98E'|Rq¦ҭ[HE,SlLtV-ݟ&.$W#1qV[*Bdb@ɟ{ S:_eE%g $rnsvsbjư ǰҰN rVIJaݘ͛|̢ My-.DlId`4̾S{ u:ښ"'_$IABꅝ6*]|!ZoNU.ìSCĴ: 22wuKVt7 86]8_w\7JCH\[@}_e ht{l*"SoVu)|$se8mKp_ݒ({Pp,>W_1A0&*-p:5%arf[Tw~^lNkg5/N6˷v aqx mhIצ5 {qYmC#@/paژUfNl"M78|oDUUcʗ j< sPP|Jl(JRq'zD:c"0xbp\,91oa&]g;9&j؋JT\) .^c1U,C  f4`['ܤ$sˊ Q?{j VU+%:؅I<EyΒC*/V^[ۜzJ]f)u4 S}`ٮ*Cܼ* )ɷ9Qߜv^w͝d1'c5wY\oà 5?̠g&64.ZJj N`Ώr-ulu6&}{(2Kc`a:9N4&DGNzi6*8_S#_CNWH.3:_F dFwN:ed_ПpI!2)n)ԉ b/IzzT3ׄ<-+͵|ıBǗ19m\rWVpoKa+n;H1$.J6PI(FE8b+ۢC6hO RBͿ*+ o-!0>[BRMi**>n?ҝ(6ӗ_d*dj:OYCEeLmܲy+ttjqaxb༚1>&[BĮ8q;K%;|Cx}sՄteNgfe f; ƄG\ Ou֏d-OÔjo>Vݟh<8Cr>CWT0ހ2hkTX4 a>I3SJTKrQb#@[-# 8zA;SQ^XϒA8TJqo.|P.<7y=*8_>(zzCIpa;[D?zĀTPãL;P9t&=NQi;>'O .kP'&Zw@ڐ?-PgO?@&חxI]Yaa{üжk)ѕnJRX'^S V>{=Px}_>|N&cf<85@ß繭o_F JtZ-] z[,>4_X>$v 9&J-J Yv#~ͅE7 "f@>̐CfbQB#m<0y2.%V6%Z8b;BpۋT%+IxbG-?GR(܁GJK qq6#hL?jҹD7T0ń J˰s*:_h p@{qc5!+-' 5(E{8r%RVHM0yyܪSN>8v2zɽ~έ"tUPPu;1doyh3^rh--ȘXRNZQ OҠ6rbX94'aWʩwί/emx}*WrGI,R:fh܁BGJvQ6_ w<»F'JS֮Z$ZVypII]+Zo mŲ\;W;yzErJR{DZM?.0[A !UTg˛td+v oE'h7 QժyOB2kFz^iҖ[uc֐&:3u?"gY=6zXPKC#Rz:icon/delivery.pngy<vYRu.u9b.ZiM9c{P)#g%WD99\Lg^133&4j/ gjbDb/?<  >zѨx-&jJ2IGaUxDR֘DW6iE'{t-22Qኈ84lg{%*O7ɢp-fuH"IתRIJXi_{*g5NTyn3ve~<ΎDҴ"'{jUp7V]DbNMf!K;DPm./Auft S{@׻,D#QZ 5!mRʡ rV ]5_Moe'*X2Ļ`2ÊhD2 劜mc";ѽA=c X8x z]}>FGv|Qv޸ͭ";h;\h*̟g o"s0 @rl)ء+o{IV)00h~:Ud>ֳ0v\X)WpaNg`䙙[dO/T^s|yf`jd qϝƒ ̰#tQYbH,r&E"3}h,'3~aȦNJt^ m FBKt#~4d0UAE;֡m~W8%9  뇨KOxEҰ/?s=K$X**lQi=9%q#do( U^ҹ/L=Ǫ<,#8cz0bݢ^}oacV)^Ia?)i(/Wѝ/} +aa]7X{?f8ó*gnR9.>[4 }۵b `lmjAAv)O.obvG-3M4*׼_ɷ':*bfK:A =֤#|2~Vd Vadōkl@so|xDnwJ511SӞDMj '|[tFяj7apcQH&bR ǥw,6bV_g!yҦ4\5EE mW%xn`U "ׂ}?omvwؔ4xaZmNlm;iv1jvhoL'5mhWhht=(Y)ZPD;6d2'+jj%?hVs"/ Ԣh9{4* PνoGdۻ-qXK!yO U]] RؑEcYpmvK,pߜof!r)m}G\Cx.yu SrK"<|yy*>|Ou2ѭw.gnpE(Z"ӂ BEJӿ:>n!ƸK(/ch SX띆3O=wD.W+L 튐3>m=GyP ]4itVaa Rr]E}pѫ]C6DY1Zo]݈~-sRXwf9k0xZL܇ee?`/*1f@n@;*.k}yzzo yJ/u+b5!uh)-;^·B9M7Mx-A}&XKI-銑8!>M$,~Bڪ{tq%5,@x}6XMg.I8z?Ul}@6cY};4Zv^?Y\Ya$ݍmM.݈.ƖFTPKC#Rfaicon/dry foods.pngaPNG  IHDR" pHYs  ~IDATxqWNU" E`*ChF`0D^/F>KALW(qس=s] d n}UUmxЯř[WU(W?Vo/z#_R{5z>r@:h1AHmulDuo{5VB:\VUWOWp%0Dĥ?h+cuJ" w^*>""N;[M,~N8ADOe/|7?ɂ>3 7}a921Ҩ)+Kml:1ۇ;I3(a۴& b-_<jt'e²8rF!9qW? ˰Ex*>PNta{ap.Jz2ф5Vk$ ( J`uh6@%Xx:9B`>iF*\g~ 93ap\S^;A\G+NEՃ׾:(]D=l%hMqDjh< 9uF;c?sVdB$3H䇰 G=Ι*I0W7^.^aMH#%=-XF5qOaIZ\-R c E3GX52}`d aI¯y-o <3FR 6 M,n;OYA4 2Ρ05H<-6-Gx0gs]"q[5I`plDoL?3R U͝z,1*.JDXͼݎ SۄOWB@"6qXRdʋBy,X$8g•jfn gN LX VKwJokҝKrl{{Y'De}r.N<ψH~Nj8^|*ĭ$z$iZ~+Q\fVPU;Wzr9hL% SjZ\UI!SXbF~!]=~i 級$qS:)eqݰSq1}e78 xYؘusBia7, [)z;%Z G'{uh՞;d xk`-B*չB=Vh\0:bx5/!a_KFs s?%?YG"m~$}ʳZϛH!ʷxr d]ul}S[%xGyy8vIfGO8Ȍ)#/BqzA:{/ +#vxo,<*6R0 k,?W)9 +Y2ϱx2Y2PD>SW0@<Ě]J\.!<%LLt&1ao.3YA11}kJtj\>,g') ޕZ9+K",k ڵ &,kje%,kX[*^AzF޺FupfxPׅ=dfI z.z|Z":n~OtPZ Q\TCa]:@c94񥄾?T/:-M8^9&~n+ ^aQuuR#c%LC@8i}b]Phr74ǼLÅי: x8{"ܚzOlM - ,pl~8}PcuXٲr^0nA,5t|rx.5]գ\#O^[a-6 ".qk0S+jڬ2-)7`̷^i!s|j+&+.:ȄK7(R?4 K Nl'(QX[p ~tv)leݶ~ۄbܮzi]F9q[3۲)5th,g?2s hJ֋sZM/x6SKw,pW}~2D['<kY NUA\SDk'g-*1e|EgFnac!o({Gܳe^~&J Kf 6{islga }2+oW%ී>.,o(,dܧWBTKB쵊y EQK X(~OovzTXpnEVq8 <ö! w/V6Dc;+x|pV&%t?h-,8gx{J)x:); 0ةlD] odƴ~ѣSn`]{\qGOÜjsoBG:2sqt1l 3|54 R6}K<>dvEP _}UX`*z$ȳcB9 H{F,5Z;:l>׈*!zȗ 6:oG35󑘲.3W<|#˳9Gv \::g{o[Up(Pđ;# oo8/nP(]FŠ:PGs$kc7 f^(u oO_SMG?#0D7]yHOλ2xs#x|Ҥ?#FnQA`vo}=$.|Tfc2K9*zZe<_кEzO-]*Q_ e)wxwՁ]^F$<~-_ b׬] WH|@"!lJ(K+\+_QA\g]a le>jHR6.=&;y;3$x(\&sL9W7\^?-,΢:sQcgSKp_\=(xcӸ%X Ke,t~i.%Ԛjy7HTPKX֥K>#V "aи62Kyؐ5gMr io7mmqZTOgd YXw"rDF >F|DeFZ#=Oa=c c (,@Y5|ǻ*$fZ*>+EfGwRfPAȣ:]E_g5ӧI9mmgzkiqёœh>%RZ>͹s@Z8O3 !mi#ްlV "X/9ӚsZmSLf,& : |Oc50c~/;3#vKfϩ[%A%XL@WVB \IVsY Fƨ:/$yWpF+RI희LU.MExd7)<2Y`H"BeGf5˟ |\s "ʄBR(t+` ,!yX"WV=.Npg&yct$beJC؆D|)1j!J/HfRO+on qu|E"DU+p=F_Z҉ V!ahܐO3HUULI^^nP‘CKFUF%lz拰 E9]b_dU8hhSOLUІR3c9 GOwC_UҥiXv~ѥwC`?S:N(d׳/", 쑮",2}PJ:<8d{5= XRd %%f58$b $ O UTD,([!@%z{IENDB`PKC#RfȮicon/edit 2.pngPNG  IHDRz{A pHYs  ~IDATxq8Mޝ3V`wmQv*ؤU*XD` "cUh$ JogFa~9 {}}ec$16ǯV0緌%^Gx1d/D'bce G!:ru@~-'I_F!}dboh{QANy1V: +H&S %ј.M=S UFtswĚp+1/D ѕ/l̻wXܑd-=;hD/~66H3$(W-L}S#IĽejD>&1ҍh섢4@ӎhL$"ouȵ"4O&z{n׽yn@eHeM|yƀ(nS%XZ4 e3gR*]7'AqR_S!ՅFtP9D)WhkwuW4E$Gsm`ֈFos~W`iSEuWD{B0$>cpߴ:khVZ35ƨnQL ("i݈tu 41TpɳJb} }&mWƎi}"!)d_sm}W&.z-ѡ+,>PJ]hc?"4۴l_-r]_4&sEO"Ab )f-Uh-kj!#;_&RٔG>9T"zJFvXNnOoRKWلbF;IFvh܊[kfdlg+=CaUó:wѶ%4 3$cMh˜D"$0$YEdIbMU4IVdV: =H&zlbIf:$y;!=ἄ3xb%iJeX XmgT)=U쉟a-(^i<M9b)$ĥh u=n,1T6I>/pYmgul|.sQ*$WF?9j"l|f[>U-=SMυö ;Ei?ɥ8f'cIENDB`PKC#R+ icon/edit.pngU?ݵR*՝Yy0lɼYsITmiq5Ft<7yu5 Pj\69sEuEqr(mQw_G7 'g,I` y*gi$B!#wA;LaBf4mou `M Xw7E҉vYtHn'~롢ĬBu p@Z SDru)Ѵ⭕ S҂>|Qؗ-,;n%AZw5ʼPA`V\BcȌ]Pꕏ[oGf7[#^@{^ ^zŗ}Uφ1#"Vn;K,\lEvkMץKDl Rɬ4KyH`OgSJ1}dLGR/;eSDP4 %jS)X< ^;sm5,d~ШJ^a\*7x6uMG~Zj&CR qYVrW iEgc?QG, 94mAR z%`p2|}GER6`S{eC1 }E0Dy^oR}!I"g{VWp93Q^s6=`.>|\x7P9t = SnBJӏIV]#<1|â yh+yBL/mtG:ZEw; Q0@ƑkfNk}- z Y16r;-[ɓ-1z}Yl+Ѫ-zİeV6,zpίYD]Ƣ Y}4B7ZiV>E͏ZQv{v7T wn]g= ч8ϲ̿/ʼnL.2{}kIUqx{F8FAoSXy{֦4Ve-wLNa5z&]XfҀJ~(NPp.OF3](Q3d8ՂJ;A.V^vBabLI<W+̜^}2~j9s 9G>XtkS4+O{voV8 t3uiSPgb'Ph+d u<徥7[^M X\Ic+㖍Ҙ1?2ѯRq@`jф[f9&2SCI~ˣlXYkCS[ j2c;5B,|}aܺϷmL5I11V:djZ )܍n 7h ҫ& %/۝:#,:@$".ۃ16=*I[-_OL c y%K-IHCG7 .54KK"Z2Z%QH;4Y9ޓW .I s$پ1=#!,Y1M3뻼pf{bSp99`M;7W$dٜ􅓮MbI r"LT*8VrQ,Y"َasUrQY )2AL6纕 2?o@_.̑D6ݦ4 $E(.D^$!ܧKÎnЕZ-<)ԣ }Ȏ݃*VH 2(M֭෗ #l,Qե\U4c!1uٴVTUAR,$Xo.E?j-:;I3a}\>"Ǝ4;c!+I#+!DV96%G;kr#YPY79Iyj u#$ 9a&%)m.z_+^0U2bfYՈ>IH ~8ECJF$"]J;'!jT ڞ3 45I*W@f5 IZ{"@mш*NRN7`,zQ^@$@C]H`4`3O$6ېF[a@^#JhS1b] яD}DH JP% qh`փV*G#D_Br[+A @KW;AFHQ- 뿄 C9^?4hE$}k\7)$~")vՐ^ `@ ~a[{{D)"vΨ̙?ő5[ ;p[O") :J=De$P%) h'Q ]A/x5h_[>:% ;/ P6BTnFA|%)uƚ(L͏$eJѬ*!zWwߡJEA mJ=D5@w?t3dNYZJf C$€bfGaه ӢAF=UN3Oj۰Τ[$oB [?ERj=3gޡiLQ!S,Yx̱- |թ vaßZ78@#c仯@y$PUc%IUK@:&Ż5`H7]9$(;:fAH3k"5lI H&ɷ dQYQ(zYPm 9! P E˕Zz!)4dqEO׳7ICK EjVߙ^1.:J/HMVX sISKI$n ],kp@EOPlؠTXUv>9?Q}4r 7Ҡt Gs lJSkv]? $4إZN%ʺDJ*h4IJ]@ڂQ;.J.8=&I)-Md{( eEGa$d&K)j''kgꭍ&r$U @];i#)ko F,s oYdRIJ"NUEI zR|Y؝zl҉GOESI_RWtl-U81u {2G$azwyGOGm<-dx")lGcNYxf;&J 7UPcSISQml@U"sIQ\/EwTcG2N86%vsvQR׿dIJO&Q0C8Q(]d>{B_I`qQA9gQMR!OQ.5 *CP&cYJ,")U-$ CaȲ>|4l8ϔA I*?4[TKԯU E̱TPoK~?yXJ}6){}fk?̏xCs 3e#)\.Y BT658Fc8 =%~f;!%f[[ǬXdO~Zt>(!oV>wS%MRɄ !c`r9V6DG3L|TDT*qk:w16o`&Qf+Oz")U8WrGOg$6/[5?jOL7͠Sum k@d`vC{m,# B9:#N# EWDa)E'I.ܫVnf/ū9Jl/|89Y|%c7nsO)$&5 5ֈC"OEZ sc(PIR,U"},P4-E@Qk:m%CD[ nڈ`^cucе6ԓA80/{_Q bHj^[n3T,PMVTX(:$W$C'ы"IA,.֛^ XǑDdҷ"ޑԡ%]Ǒ9F$mu*rnwϢ,H$M+S {ʈΎhϑ9ٓ?J[d1C+sBk@%)O#ӇB1ͱNIENDB`PKC#R8G$icon/eyed off.png"PNG  IHDR|Z pHYs  ~IDATxmG7AK/?:RA BWT LU`@0+VݙBw>7;ߍHcZ΍1Wڛ}11LÅ10̌1oNsoY#sBW؃4>c9EyЗ=ggbp~T [FRj_Lr?G'p "/9+ ]aɴ8wkZs?G*tfW ] +š|u%w_.Ft puyr>O*tpW0BpyR+\밷qyR+ao"5:.Q]ɖ)}15PhSS+>rηCo8ipT~r֦C*vU`݅vU]' 4H8wMuswe<aS^PF~ $hnTqq̉ȡ_QF6A0k OD/&׸[T脠DswVe+I%PG9qD/&62C V"ՌR9D=WaR^_Ep;ªGDͲ( KST}rjaXnB։s(E/N|Dz JJr-u W轀PKctoOqLF#k4zPkx9}ةD^UpCqs]#6k{ _G4^P50* ݙIuS)ӎöӾ1Th4S-vRН*b(/W!Flk$xW0'ϲ|DqyRr8ý0P V]A }}1Ĵ8YDŽ # \іۖ9r[H'M*{ErrDt{B2Q$+tl[XF)&դP0p؇rj.8U_c͗lTʴ8< 6LL:ҽ{a O}; H6 pۡ*!TE]װ$H7($ vtGta7VM 9C>9k<@AcXCi(;-Z-G{y's{r# )f-e;%\Q0i.l-5U :hl2 yt%$pؿp~D$uǍ"g֘,"ĜaN:R/*.uQTRqEV&}VLHl.xr'iq(˓}ЁI .]#X~Qk ;A#.LIJSѝrH)f u]]fs~z@rx3kpo %gDTe\ntػ9+ ν@EkYpةZyM]}_J _5BGnIn˩^p%Bc%trl_#K | \ZH#6BZ`a?هGrޣ *(MBC|=''ao}їMىgW IVх6)'xd"0U0k m*v;"-,MW"Si\IDtQHQʣF&;IxGUD*$P4Ȕ,yzН8E!SV]6t@W\ېt1$.% ޝHS]mfV;M[+tyRSvCXH5ț͕BG=/0m>uo9?P Hf8oOVEt.t?xXSSά1g./;+PLk-`<770xa̱7gƃGW +[j{=mD7;Z+жBzîh_:^ZBT;L$]$Wq͸FgZQC찗Zr}ܵ Bר/Epcv Y(kFHeIf,oaWw*hWGךw:GL>6,Ȑd]D~/BDžy@pMn4 F ,U8gU*V n$vo8.޶G:MUj ODp['pfs7zyz/)wj[r'5: xBx T0ߨ#qk !ȫ5et0i۱G!GT;Gτp;9K”sK Ǿ^BǍ"1Mn\adU $]7̝ϣ΀7>" Q͟DڻA]v^;v \ Cg.l~9v?p-$EQʿ}>|n}Y 229\>hst=YEq,nG66X_i'(-=+ֽ+TP׺ķ-C˻iI,naBGtgi:îaxJ7brwsqؕ pv|X w~%aWqD&Le(ބ: ,pi-y)!Mg;EБ.Q:J QktuaR#t&ߔndݼ#"IEΚ#]`FwjU+Xh\4%vvrUU"Y u#cq2.We`${~+Z G@WY.iEhP6hPvhPRAAqQGu 5$,ԛKNKY4T&ܯq]ɇy^%)X#n,P 6U];.,`܁zCƾ*" IdIƾFTJѦEHmHļP8{&r (wVaBm9K1<5牀[t@eF&AI,eS`YtCᑞS {_WŴyޕO!${~: =#tts޻|M;?sB\IΟ*𘄥{ŧE[CR$i#l{Z~aO,ڑݦYHLJDo^8C~2Kyqg*i`U?3ݙ* mYzc6J՘gE@kjgraC&0ηZqXbtBkz`DKF^s^Jh&'E@^G*͉$ 3jpx& /|m(e)G? 3V .ia­fz6o~?S ֘v,%sO|]7 x4C@i*G>ȗȘc#eWv!_"KEhDSD9\ 8yE\ `pF@D?`s:`)[u=8既]0yT 씀,զ^E{Wz㯴% Sίr p\Y[Ivna8~>PonE@f~K0X fƶ EPukch 7젙G Z'h VF@tA[MKH\Zx*~.=gk1|[fmD@P* 1$,`] >R0(D@P&i Jb@It1e?f[uts00йP@DA`s2& bi uZ(DAX? 05 VM 0ȵ tsO ͘c&Y@iLr hK\C* ń[qq&&ܚi[c$(TT0@IEPbb3em8@.% (-(V\2t#(S*`⶙m ɶ8HGs`.2ӝ" ̌~kTΤP:a@J}˱tۄx~r9}W=(H,GY"`a$/vU}@f72 (py59 SoHgepys78? n­V"\>!I*VD (pޗe9 %;%P(j{e[uI%UR6(+imS[+p|]-V/j-SA|K@uB|S@u@|[@UF|dB@#!pń| NRWAKZaT@-aC@pݰH "_h\;n[V%e|֤),LZJnKlcʭ0q4^V $DCXX'`ʰbҝ"ڕu^V "iEE*ʴ/D:a%nIENDB`PKC#R#4 icon/fasion.pngV7khh s5e0uTb.? Foo.KBhc.[J%w~99s<9=狶bb@͋=<|9jD<#R7t>Fɛ!@Ʉ|YuYEgnB ;튓f9gUL=#5wd$AJ|[U)>l«{ Gj-eQ _Kb$Pu/#5nd-dη3Kf?ٟ>a42y]Z2e/"c,s4=N'*dyıȍoǕjHaԺQɷ]Ć0F~議~d<<~Rʎ9IU1K>3—$ VfzdXnyHxP~0`PBq&?fE\#SVt꣢ޢhZLlrHlήb6iC)y n<ߚ, Z-kUϮ]KnJνqz߬5n3I< qi"_y0L6>a46>xG3 ӝp]P#uH Sw 3 ߾8mc*ʱߠ eT~u~v u%%N[K~M㷶2ѣ 4bi+u@;>Y 3bi{Pp$}'xmo㫌`yLPT }.+l\ N@ q;ӛJRiwLnɉ˹q@É`꯿?_y &=h8h>s5]H`>`#܀=%y9-&EU݅㹝Z%a-DôA"?s]fQA XTm'ESTs/:yq!29&ckLHt O^>Pc6[~>~m/L'鉪)#G7mi^ց[-fpkcIc8R zAڈ}}N# v{O_EZӸw9i U-`ˮyj~~bucV(VXESick.pߐqH f2#Pƿ˭RA+0dؠmzN݋~)MTŁB}1}vz^`a%)̔MLهT$vY1lz!k6..v 'Fl$?a4R& 1z:Ш#oteU99PYDS1w9x۴\OX0~lSU &=%1?zw' X5II81[M΄7r=ۯ! YV7joM`V %">-e(-y_ JuG~ysi: ]W'[10QG3TQ]D<_[2HJ.gNm8>0n nm z((};ZQ0$#`yr'*ek! {Ae%e.α'.Y'/_}R}D|iZlUonT`EAˏ bF4+c[>go2+qj%PP0ߘ4<QNMB( _FirKf NIvG_Izxn K+|v#b;O3){ez t굛:_ Ulvy7z 'JjLVL q栣)N+Ͽ3"]$V gƌ/yˣkڟqC=r(}b'LDs [\HDP=JW*obC2F&B :=9D($ݫC1P\GY_o 2c(`-)co{ʳ&\ud=~dM}|a)BB<+ǏWvO $mg9@2-w#|мݥuv%W$x+&'{ pIod L5->L M6q'74إيNrO>xˋ$º MZؼ1 7>#a5O<%|(؝[&id/[Un>EP}B/ ੟XgJ#&ťyy YA„۬,i #(Es1kJJ"m3m{MU < _?h%%B8g'u!kc,_&x lpC tM&`kkPƔ̍Wx|1{e:~+ XR<^#YeqK}Z8)N[5Y.YO-}kJɋ-GHm |it47 _ BSƒB|8sGLmqvR"LVI׳E+mϠ,(b3pWFX%PzKH)6ڶ " X KMHZJe> E7U͐eA~#/^3kN@/fN2 NKToʿuV qG2u"LvRC}qH,g* mJ6. `kQ귊7 ?]wZ?V:cr<#sh.cEF8 GT b6t,>W)HW.=wո+2ܸ7>>1KjX-ҏ- T['墳s Cmж}xVG$5*ۯlq\zVHܔ-ZڞbK XƝh/%LR Uˊ#̛''\ھ"O$s} C58P[4oyk3#~) 'yU0+?$9t?j<HWj9R_SJjZ14?:@$4]Nm|Fy5z61{&ǯ8ڊB7xP.oy&tufѸ{R[M&$j'sw лm|n!Z&?z\黑\T2:t;'u9?1бxMZ|hue׃%9%4Uc)Ym uzN~cF?x9=epIT\$Y*ƞw_+礲'(vt3A\ZЛ vwn[6܋J= > I7/炕e$_[%/CB%zxAO"2)0%;7vͽTwO/ˡ`s%=[;bz :)OGD WCR5H)N{#!?|K͡Fn(w~Tײ\JU%+D:ՏdC'7Ix.. e[CĮMõh>UK:v&yٌ38XB41naj&c^CD(ƬB߳s5:rOwL}$V"I1o6{D0/jId Fi]"—DZ˄ #g?B1,qֽgk! CEY ?ŸZkeMٱqJ&VS? }&^D!;U+&W,X9Hq3X|ߠ=]+>ݪ;Esʤ7>.0M+>nShĔVemm9,er꺂őF0 hܦwW^ w՜:X9.2alPGY4heL| s kK ĔRC /G6$f11qj"GcZ`EwY&|q'K23"KJkosn6;U})Uu0 {ѮA߰cQ'Vk"D3ľ)*ɃKcadh0B̠:Ks_öīBE@ߪϑRx77 lxU5Dc5;1K椝˃}d%KV0"Eb'z Et&7I>.1PO1| FQGP Jqym9GPKt3j_]Y*vd=! bl0k/<&04W!=5 `,X E ;o,ѳRprDF$E7umT _bɾpkP3u>؜to}{eFrqTK!U)T/:J jOQO@=,p@f6Ӌ`1 .F oˢ4 G6i.NpRF HW;+qaIuHEF^ ˩\˂\ JE)980ҹ)FW!LD&Oyqtш_{w؂!|!\5C= ~r|8u_ 0dE » pqKOݡշM-"(&K7J bmmmͬ>ֺ!rϢnZstl NZYfn(fε 9zBZ &+720D!BI\WJ3EMZs :;a1mV?[xSxIʚ Q'_+1(hXNBI#mNPKC#Rmficon/filter 2.pngW?k3q30JBPcFbCQYM*Fɝu,=6J5H2u^uz:@?0hH m(`̿L@ 1!08$Ч]9ҽ=kSg#n!Ƃg*MүF1p4y;oP[p}L% |-^Jo~n/VrZN(ܸz qX8*8JoE=|^bld1ⰲl߫~ (#fǓQ}I=5o8@dI}oL-"F:!#$j!`?R{IF~EӭqױO;Q Eפ]^m^]1 hgLw>KkC͈k&I'hl87_kQ-)U+ΞيLl!@wX}pζA\%ev jb qrlQaFhgnJBA/JARnMbVafMS2x?)zJ9675'gC۠76 2v7Vz鑄Šsƫmah7T"9<.*6`1(ʙYZ%+^څϗ('R,\~y 8$Ic˧}JݕlW'_݄c;9̺.- vW[Jѕhu3bɱ21:9q)'-\՛%!slFtUyhH,D'^9tA9I_̺!z~,Uc{ 7&?,%[Ѫt M7 h)u_$؋B%1!XaŸ]~٩;!}>}u˔i뭲nóS뷈;[id<.D3'*,(};*^Z23jb~%h*O=fO!"u27͞V\B95pwJ[q1`&K@y(1m,̲}%0ʾcte),Յ@fĪPdaB7v'n]\`&wO~cF2B`R ~Egj,gmDw'_'駿Fu\adv!f6+h~ 7ScrO͔9mscUQvd2KūFөCtX67*݀91zcs|"qGAr3uՁ CM$ /_<];gޥ M2{ lVDڿag˥|KkOg@ꋵ.w5PH66a!ZWw=%w}5a ܦpR3]Пzy.Xg_^3|teR38y k6.hxV<^t}ߖop-A][H >-3[wx"IyRօ둛2*,rt/ٱ@6Twy)&@^琧)srh'U6Q 26;UX,昻4z6YIqߍތ>)j7! bv6b2E伝-V2([ $ReJҳkߏfR{C0& dFL'Ek HY0;q+rP?]Ӷi)& &1s޴]C+Hsh]=UY${2̭۵PGMv&*xI~?sR#VjF$PU>]&_qVd?Tl -@c@%Xs/ltٿniTWFaؼrp-E܌S\[lsZP!@XG%eL;hU,a&"%%ߎ햨(V6g S`fSBmYГNrɪYO[Nיp-d`Ī#O'yifr0IH5ZY*o]BP l\² Ĥe%bmkFY@mf\*oŗ*ʡ4_|\X^Va M0^^W /oνS!EO^Pa+=G5Ī:<ϭ^\35,op"2ɸc1jr; D:&N]nJCa&=sT}:#D5Lx+]-L b`SK4DfuIG;.Y7{ɹ˴НB TIL=ޏVL25‡UX#P;'TнΜ-v]'eIUlWkczݨRyͽJ+$9ݹKRKIwqZiM`ƺצJezr:"|$NQp\5ow/) FuD)6&NT$s~Lm@@ɡ5%Q: s+ p?0 L&6&[52l7P GOfg<{y<#XisapMOOh.bѨ=3$nj[?$7)mH)QRV-dF"ȯo&qd0QtG_rɾC:Mͫ4Җ?=WDVE>Fkq|瑭? ffgn/~^^$}/8amt#5Y^& Iw}4.k+ %"g`[L?˱9=&Sŭ^ QJ$nW㢡[v/& g! F_A$T#y?V{>4 s7#D။m0DCu 2 W=`.}_?b|<_Mə("IgY$ !Ex8Q L:dO0)mHG{/ۇ/ޱ:WSfodg㈮APKC#RzG  icon/filter.png PNG  IHDRS pHYs  ~ IDATxmIľ `]F :"l;"zsf>4yd2)]5@.=Ï˗/+T^qKgn!ؿ{u bVU_CpD}c3N!L.[BrÄX"D}R` >8;"*ce!%sp2!sWN|f@WذJ̓ נ`㕒d\ֱV<↘/IdF7} /3N̄§LiuIqC$ =Mr%9H{)~\~4S.p:OhIKa'_לNsr ܐRpα&^ ]Vɰ+Z΅[ L_iJ:d BP[3aW. %ܨoY s{=VMSrXCU3`jEdD\kyaVq %35pKPzBc[`;*@,2ҹ.PX/C9[5N+:샻P?7para련n@xtp4lwO9'jiё+>,/W2c Lf;/޿~Msv-Aur1ds#\hl E> -y@=I>7nw  2&$ mgT,wQ{#L2)eP[.EiJ'|X)b=aE(͇%Ǘ2$+֤37 U-Ub  M=Yi.nSqoƢК[&ctq.bTCcsy]^Zܲ.nYرqC 0BVSqǩFt-Dd5U@7Rn3Pz*0!_xG. }.9*r*\ aVbeu.LTZ ~P#o(0CsH;#.$|Q$e(9w#T1wŝRxΌGK2N̡Y*Esqg>v`G..hn{l\܅@cxvawYDE\vt(%[K ܗv8.Df\ 1B}*zb̊XnV ƅ?-յ~sqyQՊm 䆏p'_a/0ФmLM~DFq_\d_@ZO6m\OQUTlnON'JIENDB`PKC#R Beficon/flash.png%W <̷ljLQ"ȱ3G?(Ra9"J)_QB?׎y}D"F D/dmf[y|IZce;A\.NvHhy-[V+BNjL'4VkKW̰⁹柺:^1ȉ[mY2v!4d~Sz)O n#=7ZAb;o./ZN2ӿMa'5NY"ƭi}А]VV}!,$_ 1.fJ?>cH r}##._V3Qvv~"'r4yVs<|{R$I7:tX+tB p\>AG~*WI|{꣕}SW_czobVpx"UQJPVYJg4\т+).ȟ_8UpF&Ps(seUNZ{5-ԄB\UkiXPqno)-6z[#nLnܧJO=-#9#$q֨h]ExMPh"1R"ȯH^Y=`rq3b6WC;"5zUMOÜy6@$ۡӑgaD1|55b'9nHfnfd8&D(`&ҍm6~tR'/Oll}Fh9,#Xݸ//:8D2M qb>y&59d Ud4)bL[/o 8[8쓨oQ/4RTy{|;xܓS D4uMݦWڈ/Ply/領tq>8h4אYkS0Hg LugvV>Ы*闳_qٗ Y~?Ms[D*v Lq΂U(nm GHU ®ˈ;z:{.{sÃ٧S,gdBlY;iPɈ3Kχ /wS]Gp #$,|E1pStɗy] 8K.#&Ѻvo8ҚaT2LՠINavDr(K"ʸӨ㵝 X+Mݣ̏Z3R܁?ҧu|_eDZ2@7YA. B?.NB׺M˂!zCe@$N1sii|^mMh7m;'SY mA!Rc8OW]nYo!ћvû*efں`a1"o "J@ L񗇽m$ƕ~ͶdI91tN`EO㡖 jߢ )8H/:~zWk5p*<9Ƌ .QGc!M3O֥GՓuy~Z=[RYR"ﯬ}wnX<@JGQ)U=A;)yoxDWھrЊh~(L8͉xȴrB8n;| B,A$Xzd=g PIpwcC=Ie?=;-/>8hʓIKzd]>uMcS{xKӸe!E}bi~~,lޖfF#c-@#IYU%2kP$Ռ2P( zF%HkOMwE$yImQ^Til(eqtQVޕe/]h\(4{exLD1*0($nԗ^3%({3} <)[Fum!p;?H5cFzV4ZDJvwzVP)pIokZذho&X@rN{QQIɵ%@4445}iMb3FCf divfǚ:KXv`vL3߂>Cޏ0ZVpaT巻;6@} ؙs?4$+].@F>_"UY~z/La;epam%VGKyoH8G+Z0SI#CMyTPX~][ ,0qhB81k' 4;\ނwW3#( XV巅Yiof,;YZF~1;j=" 5?XwMtH#DNɓ^bٟCPϪ+, JMHj@)Wi 4r"d:s;WIR28Qﯴ0wC6[yr8~TP*MمzYkʾ#t3Q8纜j_- $U'rrmԤ0 17>,1 25}|p0)>1G]?⡾(g}QȬi͔]()(dEƳ ~v]Y 4g۪ekeT$N3#*Z Xۈ4HʼnEedII>f)}=#!p YdAKka` !~na'7AGS!޺iJւ[6=ÿtíy~ )8q{KOVpхD=R S6w00PKC#RIicon/furniture.pngwPi!H(!R, ]"4!A: %+%TiJ @v)*b"MPA$Q@B# ?nnwm3>g[qуY]#.O";hWvkor/MYVax,#QZaQO1vx<$i'ݶ쑣^(WU&=[]wcxF XdAb#Q9֕ ߳ϒۯ &_Kz 3<>ģJe;4=~J~'Uٖ (꠿oM^dl+&Ll K2c*&Y<0^4rKK)]"W^[yy-q & w!$M_'c 1eB;9C|W)(S22Xo$x#ox\31Aˀ* oselģCT/3I% +w&L'&Dq.˞w^qY38Zz uZqOR׺9>@m56%hl sTD 2iD nFb ظ0gD+X樂lR}8_vf c/:=WEt?ݱ򊩥.~p6M]ҮŜ%be R@Gܓ 𛽍5/PKC#R\$=icon/google.pngPNG  IHDR^ pHYs  ~2IDATxOl\WLƸdTiHdQYH‚ݰɤPAijT lXg,,[ KʖXV+-"dAw|y}94$r|sV%M۾8/7jl {c(mߪf|IaWͪ& T !C !6z=[ټ`M(H;m BFet `^X"lPV@I0D.#XIveJBd&ƦA#XNc'`[%iM#=Brl ޶v0R_).^m½`9X B&'`߾`9qbNdj& akg2Xv6@Zl"g.[,a^ ZC]\n^k4N#X &O :PE`H-'_*ѤD`[fFnB ï#nbZ2-Fle3h<7e KJYKZaH.`:]q,=ZؽYd)f+ FXߏJ&b!Xˀ\4؆F c Yy#lTa#oYofv#U/9w7[h*l,^Z)NxD6r*NxA%n̡y`Nmq Z ')97/ o~pkŸݐų !?; /0ޤl6R>EpRmMͿXV6 Hd!XE SM>+žbt6 ӣQ61dH89@޽~7fp̬C Ƌ -%!/|XߓW1Gn=&vi Is:Y ACq .32cC5g 71Vrr-Ϧ;q1D2%Eyo|QJ*wЭSUPy$t1P{b["}c 72v{Dc}@3ΨD;L~!ś0\#pr|0$) Oś@E[޷_zKc&~X]uxHT C+D"qD|Tf?7UF&^8F`ؼNۛ;E+\aczE@-.Xۅˉ 7m =8tpwm)4l:0EBOѣg14BWۘtG`㛣~˜j,^ƉlgG-D裢2\CNYsqczbŃ?m`.ȫ[EŸb"۱A&3LO:f%ed OnfO,3T{lP:w'}H.f#gfQ^*fb֬%`t-0F[X#509 UT  !1c*֙~5<8D-1J G_F8KҤf 20 =0J`eX iX iX iX iX iX i+_(NG3$bYk`hPh!x !Mz`{`FbfcI K5d0ӏf-cD=pL?ښe3TA-1$ҬWĆfF`aE&6EFfzQEW%DL:lict-7%Ξ~Gv7\Gk/[<;Ƴ""`falT̴BDX _4jQ"h#`YIYڃgfE gTt~#w7Dni|CuGFW'9 |pnhC0Ɉ⃯O'OՇg*P#O=Cqd!,Ժ鴉?}xE/0 dd`Vcv6B]Y(^7tE*^B,NHج$7bfG~% m0Eβ8qafM1?N3qDң8ˣ|c؎׉M8i)!Zʼn+Sk<]`/󜽀a*)N`ytuO/V+ 6m#Aa?2✯EBX4+7'ؿk>YܝZ"fW^GR1sZS&ʻҶ}l\*wچ] 0W'tqEDWfk(NE!J{m,Tf̹j,NE1 ܢ 't"vx*oݨN$1h@xj?kN*:sUe,ڂ E zr oQ/K!'t#?$vAyxx /<{I! 1[IjƜ-6'T@n}ٸ6Aԕ2}_̎'CS:!,kBe͍kKŌC4&e!}0x`xV勍b@G?R&dn>zG/G0\Y*f<[;_Wj8Rj-`R=7hg>Oܞ w7_ > i;~Fi}Uk_Oܾ...84oY 'jp;t1D;7Hē×u$`O+ZuY m G;_·u,`ql=6 =Í9xȫ}K\j.C7Q-pe%b=hdnjasW5{X]ɻSkUD[K?3Fւr.M^Dq'jOLԳGt]\&8"(z.mFl5F?=g twLLXģk-QPe, ?:r$Л&"50nBTJ:Gb:h.zX5mT$EF Etf0.`&D!}qt?"`"&lyU?P+8et"~×I:TB U7vdQ(z߰9,.'="Jر6L8=vLya.&\+QWD$TG,+  PPQxE#`q(Lg_ ft[ NR(նӹ؁r "Z[p4QzhT 3-I026ǧ iڔNRJ^1,xY41/ 7kA^6!OGIRk[Nw%vO ZѢ[0AlaʅY@ST좭D$Xx[U'`;ӄȁsh]]UPVf KnXm;NBYIENDB`PKC#R4r/ icon/grocery.pngy<ǧ[-4T\9DQ˕ʑ#Gr/~ZF0GrMZI7 xz|^^{=le") ).=Mn 6u  6}&f.bX- &Fo 4>A|z0CPC ~ya($O9FTz42Nt#vUP7邫7\0,k &T܈40ri?LF՘b#vVA$+p)V0[)[}ʣ}r^1Ҭ/}A⚴ 9){k韷_nPf9n~6:꼇&_8*VL3mn"@lnF* v䞫rMaPpM2R$=UfB+OBV ΝiG }µ+ogS1" >>}׷ծߡFRluUk1w7797k+ҼcEgx[ sK@fNe2j=Io`5P+}׷dpnE~q qvS4ʳH*`K/셇 )nqM);vBTZ-p];4U-;iy|j&oZ1Z倬2Q:ڐ&wI2$6>S݅.Yt5/;k{K#8?zily흃 2v 4q~Џ"4x,ӳڮC}x6 dA߾ga c :H9^AۧEܫ ka37ֆB>,x΢ )6Y~b*@W,8fo>@23Ft^~N+WvǧͶcv8|xaY 7Dٷ~jOm̼Zh@}r,ֶg48oksz=y-u|gaqH5 YL <ՠ0߇}n#x̰)}s?ce"=Mmɏ뺜]X%7]1ϕ6r *}W ttTÆpxS1=z}H,-MټHԘ8lO(Z:V&!_IdƩ[#2-eY|.% ű>$m|%ºѥ's3wņ -/ Q E 3rƽ6<e"OL@rXx@*0tN `R(TO%αNq3rf#1m~I|vۘ#`tU֪9 CP1 YNYh'o& F\ K?.>4u7=T!M,sy1g\ʩK?{À.\Pu`}[ YZ<1QlgfZ FGtNV?rgo=R G(~L&ҁ*US 3x:<5ė؊& K^HgՑR?I5 nDIz;KGKl1>L Z")#Zqr;e`w0]$׺N9 \x{o[C=b!^uĤ`:0K:j~&8rC+ӤKpy+Xd;Co:']PeEu5b{gH /(6Z} ۞qrL V^ޟfh%fu~$JU޴8rՕ+W[S 8@LQbFq@^sI;h#Oqrb0qa3?}g,ǔ~>fԻ*A @)QG8W;ա8n}6Oap͒kO*S.\ n|wg901;zDs?r#ȹw{to~;E5Uf` tMV$=3h(miԘ6qծ_*<Jg߻ViNұsaA`/ 3ީ0U1eYq+BjZ#qņJsg'o(R 6mc0KC # LXM_cTKC)yN2/'Rn@/^/<u1znYgs@avAa:oĺ(ӅHb"dU|#׊ߘv԰bVDQsQ=Mn5c/sWbM B)DX]'P޴t,bJEGг5_.ߺ26@n%F 3\K$c!B{uբxp2>t];r!"`)EgҘ1?3H0+͖t/bmWAxmK%à2Hj+ޏHZ Wuxq&W}=*Sk͘'!\Q#j { ^|X:Ǹ50槹ezsi;2hlHLׄhl4dzk(ڙ5{< N};:Uav̛3Bl Z crR[ۗ'sYCʼn=#y/*g(e2R K \LY rr 'F={M>j{8g,Bbᨒd|v%J@e)ゼЄ,w9lErUN}ANg%%UXJj^h"|޸}ka.䒗}sBȉGҞM9P%'r0z/x*nD< Qz8y)fw !o:?J7N E?9üI-();EaxTSn.Ld!T#8΋!9;@(BJezf Du%.__, MT jw R }s_ݧg1p;R+#YWS |8~uj_|8(z|6-f! 9S/^S |SSPfM>k[*q^{I(!Ć()wxe ce!l LLE" LYa-&4-U1o\/@ M-ZVHݙJ 龨/w>"_M('?wTjVm8?hA>-: PHR,5%y5l5u ZNL͒5Ń9M#00Gwms rݞܢF,xuO͚]WBY/pǽ{t*ѤL5q=[zu\xH] ǹ+l{q`Ru_d ޷  ͍Ԁ J}.Rx3"_OQYポL'Ol $$[,hkYKͺ8śv^wԀ"4%2Ӹq:T3SW&>tu v 7puN_'RY)ՠJG>G|VEZ:+夻L!JD*˞w~Lno.aDʄ+~-(Gz}EaJnMHqЖM鬭~8_[Ea/R7y{-ՁغSf>8g-eS2vQm/7'mtWW N{ p9iFĒ]Kl^ QD@;eEC!)O+P˃ӲE e‰dUqY( g WjBSX+Ǭ ;V7ћ/b0^BD*yG澿<(+ Y[~~uRCk]ϸLha vzf{PKC#R4= icon/home.pngV{M @rGE&:) ͷ%#ǓA c)x ƭ]}'>;?Ӥ9*h5>0TF`tn˛VDrcoYkmLH%Ha;;U۰ފ~E OkFvs65+YZe>)%hNkoE&ժwfDi㫄,tߕ+eV^6-]}Soq _> 1Ns9W1l'Ԣ2Q8FZTi$,**7*ORɸ(JfB87$>,lM(GDD|9b{*/,䣰+rÙ,D7u5}-t^+>j#jh x\r9ʐ*7܎jmDT E:tϩ؋ېӀ%),`2%Kv&rNJԦ0:]xt @A4R3{di܀B9{k刱lWS3_l>w65^PxmwGE;IU \GRNjuŎV?}2r SHWn[ּa>! ,vdJt4udIEBx0ƙenp'tjc*){kEhiGig9W{]/#3hxɐ0l :V. K6<Ԧ'6ꑺof֌-BذX|4 ,#3BVSirOЊ|:)/u#6Sw߰V+=4P=F lo$ƅ*66(gc,%F2H%&QҞ1Zѱ̺sӟ=8؉7[8LcUdNak1LV"Y|PKc}mƣ4&ћ?H"PP"E|<{zfOZ 0>W'{+GO a>{w qCCU3iŔZ!L[gD uUiUHxbzjqx&Ufj7N?(lљd߆IOov1gc'1s 8#CE4)9#7!C$X`?Fw3Kt>w[Y)7=ե[dHqG-tk+L4*j` eAa܋LZ=귁52Ś&zTIȢߢ2 KG S( +9%Eş;]$W(7\PY5MHtweuz>=u]'FuLlټl0n&(e.t"/rtW:-1+qk6` bW+ؤRWA T8{6|I@SH"H 0m`k~뗀!޺2M3 nv[*zO=< )!A}D;z1H|K!vT,J9vӫ#FV{!ǓA^G"OWxj'$힓w*8tZH;k6X\Ns\Wc@|a-mWbv.nLRAJLIJ?ptUyE1"`>$V3 `sVgD 3~w@4M1[hxp1$mf!2-do8 θMq#@~kתy9|,@}h6Hi2X}WlA{>$ݲw0. {u#٥!d3ʧ27{#kW;{ 6܌߹Dx8}~aBE@i xúWS @#T݌x;'#nv"Rq;Q#4܍f|'w5~s"?F !+H$nj/F%TJSRD86)?yI<.l"F."$Lܙr&\ &P1R+g!+#%+"bzK8NG^ xK8nvE>=@`;x#3;. q^e$<;Q0opzdG\)\58qXp׷즒R~$k,bJOm4V'n7271y<5e#h`N5727jP"wcx?±W} { 'Ud{keK Uڦqt=Q Xɫpp3Ժ:)%odLzzj q+8V L.榦`J^ս W3cO߂ኅV L,) '6 pyJ^ W .7ܴx#s%`U\ [P1\R;*XnJ^ռ W /SpLjx+!~ nJYXK3p@,%~ p L8M +;ԔRJ^TɲO N+c%oAN)' B%[0`2VH])<&* nJYTFf 7aidʓI='G8Ȭ%L8=LZx-\#Y%/ 7  Ϙr6Q6{0s)%3&0rJ/PSpBP#:xX'~ vѤH%}!)?d%)u-h‘S*P jzVuⷠ Gm#-<̩kS(M+u㷠 Wqt4$T{: !W7~ pw(c)9WXJI1..2r9!|7w:^܇m׍߂&bz`t%~U q472"]xDkyWo4GlyCV |u{e`66jWE+*~Xnޓ%THp(yM|Z]qP#<+ &ArҢi:ՉHHD%Ap\-w>35pHmdfcCq#"[ r >o 1EMbB,`[GpevoteC̔>w5@Q,PM .jGnzU68$] mF檴 %VBRMϓ*yU9iU4M^ E -Ƕ &r۟E/#9mm _&äRcxHC e20}bb\ Ř.öIF.+8:J^e%E.IFpYR#W{B{+ 7UVۼf bOh~o$ R6pͪo_!|B%o$ q4˺IКot Ffu@@Fp3J^L.%/NMod a&7SϢP_\*7L3H.6%/3ŵEuФ6/30Raح?d pÞcunnxfRt68#MY]ԁB4W2zUD^xmrd[Hp9>걔s1y:i¹PRy-CC!@p‰%*ywL:{P2ώ>G$jJ;+osYOaukrG<8κdDypJ^ s{sZF WaDxlD ¹H>K(qAҡ&+SC89n-XɋkLpPd} z r\L)&9I NL6:)XˤˠfI*<"ٮwNLۍ<4ytix2Vo'H8чiiI.Nt,ԩ'2{>8jC4Qۀ@aLꝐ%M }q:qcRCo"#IbgΕXMgoZ$\=|zj8t~yQ&Ng>nW-ƟI|¥.~۞&ߏ4@Ik T%G8ߧKsrz9Ԓ7MLKͺvOg_}JlªaUrspuyH-WݚRpi 'ߡ:ȀM?L'?Lݣ^kUn0IȄ\~)ޫCը? BbƄ5A][$ȇW)E(y8px[{[/kĚOp!*;BGOpt4:6Dp,_ܺX0pb)=u<\q}Zt:zMp^/3?U|Y I)7u*WXZ_G9NuX@ P݅z"§imdGY}XRi;!L~$N`v.ݍKlnQ-ҩ/$ qdieK—G6f$~zy'lw't+vLNG4LXgxb!E]x'vm-*-W/d"i3%dRVX6Z _65!_OF:#ܲRcēp#8uԝ'dzEjDHN4sWvpCȎDǀGUSS0y_6P׽GuB=V3`3p x oigsǜ|8*m/$m脰rIENDB`PKC#Ricon/laggeg.png sb``p   9؀M+gGd13^[mcHŜwJG{h?KoWddPcz1@۹ $ y\6X4 %;amZ.^z>xNRbv>]sV~f3音x=\Zy7d}[aN!@& B+Jc&ڻ]lM'U̫z!{vrBBo\9[fmyoK?l`\!VpEϟo=j۲Ud?]jr'_Jd.qsCK zí_g[/%r"m~aa#_&H~wfvWiy2gZ@;TkoPSuo֓onݧtʆVL6F5-1,I_8 JwXfO~u]YZsN[)?|kꋾioW,{SrOʏMfe~E`nl/:A5ͫ/'9?s ozrk)q`.|Xݹ[Oim_97w_c]o 9ckJ//0vv)+|WxeЯ7W?׆'wok>^uAkĭ{b13{|?\EwPluPeW[tKˋr~}`׬3W_bw~dO)}4p.w/Dž]YWo_-[jeSBPKC#R]Uicon/language.pngW}8'䩓JѓiD%Q8bZ(:u<&0EbmL囇t&lX4[4=8~q]M:jjj^njjȕ9 K;dpe3XRMMﭗK{Bx]Ⱦz~={As:5Y =Gg[-umjXEi`xRrGX2zzD6RoVCٓi#΅+Eb enRsB:h2!д?S4'2B v٬)=((܍6SGXoӁ(+yWg:H=5(Lw/}k^CJ S`FC4u5}:b2Rxwe\8;wg4贑(yF}s4-ݮ|.^mYxj@ "p˚N#U[sԧt (QO$#$l/|켫! Zҝ2.Ėeiѻ[G cUBȧ0/(vQǼpƖ( K66 %/$g!5!)KVj1W\PVKaKU/Z1/=RI"].]B1WI;[{4>o!qɸ/VbQi6KxNx 8 >C;! ෦n*%*Zy3{Ƅ+>J!u|,}@ھ{ Wr9=oN|dcg;$oy#; oQِ#ډ+]Y9>wA3Y:2&2O5&P.ܦ=a+9C{׿ݸPP!08a~>*f5ts]u;U)ʀM2ˤ$ tazxj7²mJ,s[5eاc$aǮ-OxDRIҟ 6WATT|ySֳqCjf]h*ȭ큲r]?m_Z6ˆ\`alLv_t;5Z((! ZGH^KZ&Q߹38ϲz[.8[\C{Bk*>b1ùmCAQ~x5z`7B MaտrbV^uQ&l˰z:^{vfV=01NoUhHg7]ŏlqggN^ aeUr1c̮|_%UQ/R=B}W5$Ғf).-eUT_p29((iWA6;,j%&WO{K,_k *Fu3L[Giݚq_M)eCW{ =5܋&^3}hݪ^ iTI}R- "Za;A}cu7NHiX(YvrG~1gUuC'<)o[=Tw gnZ&,Dٔ\~CR,*v]ECUS_L,x2fac;W2'M Z Gmp7_=̙̅g.TߜvP_[ y{z'-ZU*θYఊ ZQ*[$`4(j0J/hv[3]oY4JjJoUSE-%b8K53PYVI$E̥ڙ>z'H/^VE2a(M]>weRZ;lӁl3~跉f8Z l~aˢI \ݭr؟z.+F2U r,Ⱥ`vPK[2rK|BO^-͕Q/KGvX1c'S;@6>= U}Lq^MSIEѥͤMr.j#S594ѯY3sbЖOt:=O@ĝ 8t'Nnzu+37&v+,ш jrEY̍TS<'Z!qrh{`MDDO1z!,GW/aLZ}8m9=R>/ƻ+ cޚvVeK'Wnw{rd~C c PG c7=},EIse:TJ GZ}r8W#(}2wKzJ V(2֗gN ,uEZn:J>`u$ࠡC-/p2Otf$R{b7ߎMdiz Wq?G=o ?Fy$2^W~fxwkt7PKC#R(k)icon/logo 2.png}WgXSMMU$@ ޤi%PBCG% #U^H*w/|ϝ9gf={̙`dIOI赵ԍ(wW/LbEL 2]_ ֔ipf4Yָ,s/HgŒ𝅱Xv$5L|eRy58|k rqmtܿC/ @-QX᧮OmJ z5kʔ -O`b1%4PHETuNt|48DF}d+IDv[:ev5"ˋa?)<6ߞ X|o_D;V㭬5׭dXrG1+#au4Ƃ G &}w4KbB.=2:DU<DUX@fbcF y0C7!bsx;|pAcwI#ul_Ms85KEo@U?! LFZ'"IQQ Qs&kw\,_O0)PC(b F*.E+̈c#@{Z E ގNDl16 ; Bg\6;m4%0F%846HO8I=Iqr@9 ;sqNTbw̌DDiEtT!UqD<zL=ĈzVGD x32X<`oG_Mn<;TP 6nN=-o Փjکp'}@gN'NTO[wl=R zxF])?pFB[5/`z%y@OT߱fդ73ͥS>c\!ݡV X.MĖx3{B ;&B5\XіpUY¾䁷e#K["7B*D+Zܘ(~mLؼqb{Hgħ mcv Sh`Yq6I|$d>4 cA?s$wļ2tgAmuU{~$2[-z#y`?'uvāǧ`Isg'Cӭ3}~ܲ!FK`oD+OLw!COEՐ n#p5k 0FnpF':>P1~l{ #n|e$Z8bx;LV@-N2}qyUXDO)qs0nƿmݨ+㙔>#XcgHl@o]ÍvW`,DFlyĆAγߔ/#@}eU<8Qʃ(JxWǹL:zV!m>}*ّX),-A}]*7q+ij]Gq߯|xau0/aGI'Eʉ߅[.Ig|67\zuNş~'i:[NFx[xRFD>g>m𧞴> |.d~ gOb"vu"Fdnߡ^ޯ/ao Eջn )ȅi<=66a1^`x\{ް?)pMj P:=O H<غ:H>TΒ6UMs`gAϑMwv-x^_hU5H:,7^1 A/n 2^^Ao>Ed>1 073iRk-5yM}فEXLgB 7R?E v^ c#,hۮ+Q[\؇-=e sޤ>/:d '/<\N|ykϝJdɉ:13Ք ##~s{ n[nfkgɚ _p&bŻPX%SƔ~nW.ФASS$ NcN'g%;0ATA.I7h3 }grƀ{nYԽ(lbt?-h g9S /(#frw7] ?yV^Kjj@VK*1tIi4]3ԯXzߞ@0ܹafY`^#gEU/W~\6VF3J*ӱz AhoB% %HB7u?'WO)<SN9cp:a#IW4ӏKMZn(1=] ]e|)I#ӹ0D־qscՍ06W/Ub6 ȣ^ӽ>ƓqDF걪zjN7>s|`#c][I5riBHK`†_y(Z~aC.ПLP=.:DcV#=!WL~v;wҮтqt ._pbcJ~Bj֓{AZ?ISKK9I jDCg;/DLdLM0h+NO1[(7|^1hƻ+ #3`:%s4hf0F-oU2GOlVMDA ,᪮x6r"*SzQ೬צ#-VߗС5u'ر:xJZt~'ѝޜ RL]lN6񋛞n)k-LspCmR Z /Wn&~jF/%knL6C85>:Myz~,Y+c%mQߪ8IQ2?02䯱}s@rK2r&EqYH0 =xd޳=^,ќi:bĊ9fOsFR쥐y0:CMzzOwֈ'RCmEГ\]_hķ5 o@T AJUG W.>ߣسi" m0g P(Wlts ƑuJwf2C8^ˑqQ\"!3lYC^yo}bK^ ).[:V)~׻zW0~2ݻG @5ݹOYt_X[ٙQT|LofeޮvtC]]7*?e 냁7!\?cp\nG&ksMIj<(އQ]ۖ?[MsWSS(>xnS,i՞`}еKuƱj~ !?x|Saf{M.|sFeLu '$GA |~]ʯN?R{|vTsu ;֘اSJ 9A沺FRoED9j'-P}̥r/؄fHE6vy!jw2vlw#]~=f;śVysqB XGuL ^I#߻Vd-Qly`4_%tށT% L:) u-ISU}gu-lC0č}6A ]P {ou#AY\4iPxУ*裦:/G`ۿ,^7m/_ Q>}'',kjge`4 {q0 nxER Eɭ_Jza7T ~9s%Ah+K\ak4 XbT"]a]a~ֻ.CU۩݉Ao;Čq3T|cTИ-_=q؎"s yv.y`S.H++eȉ pøjx_ʺ"AKAW$TGP!Ds±ӵT[H#s$H淩yٮ!=~;ӨcE>4} *C{W#Vs`K'wb©Kȕ<ŸCg3 +MYQ!7/e,xp@$*XMKlI 'hY=yɇҎu;kpQf1) qGdJP .VC6fV37 E ,.>S+h|ACr6oXZ [JzXe1LiS;Yꭔ| oD$RK'J@)׺@gV_լXN󎄶,%c̉Ąٝ킖US[OO)Ͱ #P]#aQhnUȕ84h2IaJ8t~6}a︤6S搈2a:7fD{\&V%6x˙7F0m5܄>O}(\\ICQsC΋6꼢s|痞`Aйf^֣g= 沴#̻8kCB=Gbw3 >\8=4js/B^eįt ?H?ibo(hREg_ne_4x |AC!Fe|.IjJiܱ(V;29J00oiT<6 RÍۑof“)u6B{ p 48 .T%>?H LA"t??E =tT$C DzZNE~V'yw&2%vR "`/8VM5|)"$MbL;ӥځ_7xnu\֟?_馸WtlŅBe&>T  7Eny f qK i 󤁪I³:ȳ&S$# spۡGBw K^ͽGn&jW8m+d}Qv|o5LiS4n*gbϟ{ha&ɌǴrTXf;:(nY!>L8u ad@_-[tnP.OEHmAb#ޡ]Ak_O5(t]Ir_hÝdl)ߢ=Va0SbX׼3Z;]v:8)p\ȤTdMۏkMlZYS_gej3#3BμPʰwؚq)wRIC6vʪY%+{¿Jj@793sҽA_3i[:ߙ1i^{OF#.&?DHp>\Bn?7s!ޒz&|JKxooxۗVJ\M8gٹgn؋3ZǢ41M%:fOtT.  hZiEE߉"Q2Jw>`y -5_`3?z OUUf NE@5om#WEdGkng1Vmw꫍z{uVhҖdO`9⁶?oQ$-(nY]= R4KuI|FS/17mߝlkd >|҄,`Bi1kvub-<"[K mΨ+.6p%iϦ?&2|gru1:?U,9z L3e)ˆf4(.Z٫V*A<8.6޵W<)]K=B괜[ݿuufhI4Ogu^qǮ{oKSc5ceF.8Q{i.KäPg$V3byGk7G1oJ&*nAhF^=9M@`d}7fX؊.o1e`jn\D89s1$ezѳ;J+~(pq j!َ/L Sҋ=c1] V$)A|~v~RŢoxfJva4imaE 2 A8H.yλ3,IC(L5Ʀ5O0yQA:Qo=۱Ob`VJ쪇jҔZ%,Wu)L P͇D,M߿Ɏ#jͪL' h  y6c"ߊd c|oV},5W$it̥E@m[l=I6,.vbV4;u 0gRUJ' #t^{>Ga;AoJܣN*̬6lGRto*GOaߺN'5 z 1oE'#ZԂk>|dfRr6g&Kק C:}f1DrwՂDzqʍh.b4Q]g=ׇ:gs}\u&HpCKmԸBjSw֗z7E[frtUG6_Su:{ϬQ{멸`͏F¸Di!ĉ.V*,O%S1 ?DS <𹈜xpPky&RX?LK#ȀgPuB5؍<4Ѐ!PKC#R icon/message.png 0PNG  IHDR;w pHYs  ~ IDATxQJxƿ=:SA|* B*RK*S!*t3 :0,i]vk3[\޽ٿM,͉10 Y)yw\@kc/c̍1*6GzQll{*%Ä_7cQ^3mϽ1J.ww0ce>EnE.\cy}!"ޤl[O^^`X}n/R/+|-RZZ`jg]I|ym(6LrEyrkjhtǝ ʃ46-B_!4v`Jg fPK]'ޯjn _ؽZjοb~E;K=F˂/.#y xSzzh6$(uKm5ZNwuzQli\]Ves><ݮI/+T#ue;A|1`Gu1?ERKнxU,c}kMi[NRJ']JF[j|ArBr ok ŋx6ٰVjYɢ5Wγ@HYt dm{Ql *NRaQlA- SŮxmD~keiH+pod@Ϥ1S[;v[jmU/9#Xyw'?4֮j|0$ϺJY 9g ?t SR.VjlFc.[j8F @ߨR뾈UjZR \2. NجG۝[?8|Ky7 ΁6 ƼV^fZ4}e^XBk֭<}Hevl:H{"]o训"VSsrN}r=t^DK+]_3#CNm@S߾/W R _D߭S#RKyv`bݐzwԄS-~l|L??s W9;ssH qmD!f}txySRZONN\G{Z*B1m(.>=S+GnsZjYU rvxU&qjk"% ?:)-{Ee#P~ک^s+{/CΞ)8'R orvϟtu&'sVmLv(9;/ݙorvĆrv.-rvZKrvHr?59{IH9{zuH 9{uI9;ndSg?Txgd%!g?Im٣A~CRA~GRrva^jCyZ gB~ށy\rp A~n s\ u͐;B~ 9Nߐ{{&?R$ǜM~H@N9<ڑs6yz l4AjER,ל(?- R+"-@/*=\QQV"%j9;P~AjFS@lEڑ.} H@DBt#. H=.ٛG]@lGz ]6gG uO&"tɳQ~b{QhBʜb@ uG< m]~[=2HBomYÍ#{!tIٚ-$lWZ?# uc]hP:F@J9g!K"ك!vxBlB!vXZU蒑rZ0RO@*sz0CROI9[mOROQO9;HmKROY6b#KSB6b!;S!gz~b듕ԩ ]R<[lN]K|ɃdίBl=^FE*_-Qx_1[emQlRCMR)2cr:G-g$]BW܍dFiIRjNFrR#tZ v6ݝ$F<@nL^j ϤF\?aFƷwK] P:ks/cjRy;p2@`@Hх׎o"ˬ` ZШs@r,MJxz]/"`211С~ZKGaP^'vZJd~mGFi_4Ϥy>8&_#ݟnC]C\Z+M H4_mdz!bkmy׶Ҧ6bC-MS+mŠ}dB߷uj]x+2Y`1~U~mEAoҮeG@RG7Nm;/_ϰ(6g`{g dXf;8vtW%:ZB4Y4{6CM ;2vPdd^:Im~_[> YD6>GPzzP rG [$`euYl)]菝yu 9l~Ym{s{_40%:JK]E֦(H ;JES^B{ݼU̱2 Rg sC5J]Esܐ 2P|9Ѥ"#CPX G!.RHFѫ C`l.ZaQ2fis1IENDB`PKC#Rdf} icon/more.pngy4톲 Ll3 &Rǒط̘0j0!$C $[Y} 5Q~|?=Ϲ>{=z?Yh{ g`f0!8PkCbst:aCSwyWm/:6םo7xW{[R;ox^^{wGs;c_7'?%DT+Kv{Bwat_΢$6BK E:sM:0OLd NPz 7!( M2gE0#kX4C vi?U Uc!Hx.kO)\/@ozoHQFgEYG)=n\L*pf ~ɚP[/dk| 9qC%:V̤͜ qLCjTV(;ڷ ֔3rݎ定?4·;[|5 + ۀn½[0MVyX9[I5RϘwt܃'tG#e*xJ8ݟbKy\vls /;V)%+lz~},ȼ:kov#-ʼCԵܝ|^lGE LjnyY5䌎3|ƧѷXUyT؋k=Ry KNNpۃf ꝕxO'y1)L44 ~;zyN؈)4 r CuCwhWdS/L)pmp׻-B{R1]i}4(R_}rL؞hY!T(bieOTɖQql%]%'f؇F@@r1{ };M@s .5ԑ~x`΍q9 668ZZ9M7Wg NWcHKe*z(22\!t=zGo6~},&L4\)JKj[__U M\Xe̼xSʍO³ͳں-ږoX+, ֽI=So8ӕE<9]d&w/QŹ;E0&vTyG9 Y9gv '9h!hmìhcZWN;xI9QBf sf !F/V2=("`brf+F>5@2qZSWjT~[ܵJ⅏ڔ$ؑ ?+T_N wfF~Z')뼎a=mW¼qQ2b/ orgjWr;Y8ؒp?kϧ-|fâSH~!YHb>7h?J6/R:BDF$`,[A? ;}}`YPix@&y@m  $@=acX] !7ru}Vc">`J&m@_I'hEX(Jf+0NFK䔪 D|-WQRGl[YDĝգTf .؆hRݷ*:]u:l ܎YG]]%b0gKɘ8= Bޘ,D]5cφ KuF2z9\OkeG`[fI~xy0-+=ӱctMW\\=C>;;_>|L_·Ni8H3+F]%qǼ Fj G/β%Ki/N#RkXE\w:5Ha3?I%=R-L~n9f:7EʾM-F`̻sE>.HK_S\]`s K{PKC#RwF icon/mouse.png PNG  IHDRP pHYs  ~ IDATxMR#9UDo' G Lf psr N\`u@nvm">AMg,KRRJ`SGfOOOӷoQS=a3.47{_>y74 fw[1ƞ6|DQ8S]28cǝc I >wphbE@ORR?C|4RȔoŇKfGdD] EaLV|᪅x")ߞA 915ce'o'XS=s,t($Ւ(fIeC >V2S]~,%-)߾+c*d)c\)ĂA(>\FH!c7m82MB8-]n]( @RB(6t` Q M¸p qz/a(*; dN8 vX'(*E?6)wmQ!>YeDQ/slb$JAC'e(*f'"QP'-O6\Bqhrs|n5k*=g7>1` {$O|2ۦs'ɡEBF*[,q 3."oR4Կa\:9GX) sx#BgձlyFS`!cP}6|ҺuX{HA0Xߧ|XHN4JKBݕR "|D@)SA0@, bgp0*Q@,]{~EϥmPm4z% 矊 ]2GS>F[+5ˢ X@d`A4hOXnItY*\ orwR 7c@Xk(>4{:[.WRAeL8RUZA",o3Ds|6ؿ` U,RP*WqLnʣXjD.-D7$R Wbºi Icï?3jGk[(Dnz A8 EɛqfQThYJ9Ca"N`'sKu;r/JV7'u'sWIgO)`NuϞ?~CV]wL)OA7U:P(P pp> 0 bCлıolD!Ppp=-lv0=^Cb䡇:NaHa𹇮hKspQDDÃZ nh,;_砢Y)l^roqtWM*GXO)u,G:NY]nb,_(azΩ󺭽 {,'nv<+@Tm:"-O;F(CtuSIztQ"yEOe<Ԙ^WUR"°ο"3rE#j+%%؝_ѺNGTQ$پ+1oށ_ e4QCn6{|5&C\:G%(Z.|o| 'ʎJt^7a)p*3hPeb/ Xg;7l 9CST{>%5z +j!D=gRg) Q{9S ~ҍmLpT>oQTBHF7vGN8W{o̺bA4袞3B<[YjCzH śO%( JBta!r0js>P! D!-c]ţoNQHZ]"Q!+^VYZ >jgBfWi* վa&oN "hD.BḪmf)9+y\Bf^JlЊ '>G.dzFXGp\:7peT/:t"H1p/LJLDcdJ TKAVgE>4l,袞17v)]8ͽFbF=w!J +]Գ3n 5[R(1Ј U|\RDz8>RDNPLP9Mp{nEK ]ds YPչ;l-%mc蠔-qQSyPG|YrPS5Cۣ-$MʘB(gZ pJu1Za[^B9c5>T*qoW N0hJ,:yo1e- $|>RN -rk~EӋGūB,bk B(gq(Tbs14@ZL'coIm˧PASU>-'`Gsi)1u$KX j<:PY#Eрxo)O4Q4r,qag. L@g2EM}׊$ xN ÷Cd M)ߚIENDB`PKC#R8A<icon/notification 2.png<PNG  IHDR% pHYs  ~IDATxm[2xT +H@tf*X t*TAD׌UF^th^3kf0D[$?_~Zv.ҍE VeUU㪪|;UU)=""PnBz4([HR~H|̪{C,_BM:ILϋP,4u ~C=}Ijo!nu#_HP˟WVw,IZn5ax:5J܇n,.o }Cmp67:>X]QVy#V{πn=ujW=r5"ꙁg@d $@ۭ\"H_;Z> < Jڌb2l㐄|zrNX TEGs\PHlf9h~wrw@=Z^P'.GІOiFTD;\xa< 5F HBM>BPh@{R 鏥MyS ca zFTB-3 V>$ZvTB-]}/ ([=},4fZeS~t>gЂo͸DࡖnkK7:Ƙy UjiY;ԟsv2iR@Ðc~Ocs86-7w$rЁ_w'y>>4[ Gomt^?t9/7B rTm%]=,_M)n~[%7+%4@Ξ<?Um~KB{!ssnoBSò'7`XAݱ+}yh],~ЬO{E%zSNW1>1@jzJVH7_*tԓȁr. }׭B-/tGz]ڷn[ǑE?zN+l)o61acnjjFM߶5S ʬM46CqiZE14-^JJ?6f7Ф&PKhb}M[,K:}PEHa_1Pc BWW  [X :JP̀پJo>}Y)|*^PGlzIXٷvUMǖU8Vj+n¢Jc(2%B-C1J#̶+u~ >Z=F˜-J1 \ƚ53KCCH詬\7ylV`Sӻ}.jM}  3M}i4ec3ԡ6Qoie{='lY]ѳԡ(ij,V ):ԡG~!ec!{: NI6f*l;܉\q҉P_UE؍9-M'\? C&9YV Jdɣ@)&,ҖK7y<0X5ogIAݒ0#n6 5I<5_՚P]8`+ԷUU?U43m$ֵ٩-X&Еݮ{n4bè6=98V%5gChԆcX#bIj,h%3Ŕ$-| R^$%%١' u/' gTΥ7m@Ɂ HzzPMߦ=׉yu4}W#˃PnZnG)82t"Tj! O^Q%Ci+sC8h9dZHI&(6C waF4Kksכ;Xd(gw3ԡI,X_u27O/it[_v+WBFŁT|XQg:BO)hdM쁳P"=1C"^=[wZ[jjÈl*5k`}B-K5?F9 9x250<l9lB ^VOiJk(U25CGS=~%P/h*?ր>Ϟu) JGO{([(BfO Kj@R;Tr(!;8׸펯J-3 .^eˀzxcwVՃiF{vKր ׇ*vPӯn=0e ]*uŜ5` :Z6y<fnuU]+uE̙lnjF[|3rΡ hvP3`?lLzoyڛzC.lJ]Qs^j 3GM9VQp_hҍnLxZ9D[&3 5QԛjLXY5`D!C(8B j7SE7`eklySЕbz þw5zҍ[=xe-`p~ H.ϕ^wC_G{ڭry FԄ:=)',DJ)2"Ԍ|V|9#ebN9cA_d# hW1Gt)FoGՅoFR;ދSJ]_m'M޿ iҪWZʜrVW]9Nf1瓱ٜ8KV z0*sʵ[|ho,JIvh*{3=bl4߬ o9eZWMӣjveur8֠ BP9 BR iT1Bj=s z~(r8^B+%њS0ƐT36Ŷi:ow&X"C훠[=f4"5l}3oL HʠDizhS\ŚDizP\pWzџN_9Vz}Z'&JsET>ܖ>*eҋ;V4 ~8_Jҍؔ0PW>bi)羽5]M=շ f** KV^G]&~08`[/n4j.M!B]VʥY mҔ w (f<ޭ9yy?-?#'do38)?"d$>t|Fo]Ït eGA1(B&Di{`1sQ' h]Խmq4Ω)@Ɔ==]YzCma)5ȑ^++($]{VYݛQQb?8fM2-'nlzuU l }YUW۴)nݩk+ejZ`pEV0."--c*NEBqf`ENy$HvyNYMa1Vwjj$V}t58^׆t D '|VX^_P pI9Ē4@ZUq;֌/ogJ/ &fEcDWͦD{&$CR#SΤ#ka +y$rZ o+O 9E*L2R \vh/| !A"Pb epi-} 7X+;Fmȳw4]cU7o0_VM3)X&~;/ eR wS*eCl]Tj~hrbOᶾ&e0֣:M[AL/%}kY̼Z1ӳ{D$I[Huͺ>D) "[2Ls@MpmC4eK{xe:-^1cz]-  2ZWlGh(oiE.76/R@FPf[R[%7#d\)aktXYϣ*r!.H,$f#݂WFɆlhn^} pC,BO@ZY,d:#WcY-x}n آ͔ʞC:xP1: qIXI+[K03sU{MPcޭoD:iLwvHs4I]*VLWL T08Rjrha>:8 xzAR/R,.DgdRx,iCF2#⑹U]#Ael9)s!ʓ?$lNq.|hظT9d14A!owAasCLOTG rԅS.ڿ=mep*2S.2Wc>f}w8*%pc9 ЁPx c8Ne?uӈ8uXf`[L D=>J%|pP<2㒱|?\2/2;>(\Qj#,\;k, ]PQ9Zo#m@zL->v;6O<;*]'Wib4iL`SmՏ)^f&D܍|yvch|O%^:L.*"#.K2M;'z~CC(ϝP ͐:ЁyjV#jU$k(9JYz T?$]FDfiZq0!gN@D9a.[~߼ؙ}{L2([mdEB0H/g,ԔGѠ"/chצ@ԌJW.|A>z2g_]Os6Y[X6s H8\4  -Zpx<m{S)3Ns.P`p .x9-zXBlG>mS|v`@86ЭKg' 8K ɂ\MQx`n7u=zhs*Zk{ 5bNLZvlyi ᕙM]М+XAZ떬>T'֯*FSi/ cS ~1ٰ*̍!,̸*N1u/r/E{(9T8Dꡊa_JFܩQ(PW7XtSD2kW2]v5݆(N?s03kihEY1ߍRrvOŝ!t8׋ hQsI -d(>ٷ z,B_M2M(sz=\ S{SeZ~v{0%q dp(u^ҽ3B3"`=tv#LGadww}9-jǂsr?ҹԄc8[[j~@5CJ ^tj J͜: i$*z9\2dK=̙{ \˝)`;nĜ{ͨ_j:|T0 ,۾933[h"^>M?1hL)7pPEg,3M;UR{P]~6goPͲm (Z1s;{Eivǜ漳W>RTᚣ4DTJPKC#Rxٙ>9icon/offer.png9PNG  IHDReߨ pHYs  ~ IDATxmIk_&`MF`NF`9#p+K`LE0b\1/:-5~ԫ|a >uVׯ_eZlϕR-)&Bi}z'Tߗ|pwI)uWbr%#kw/zy*AJ1ëm"CٿXy̠Pz@(E1ǟgQ_>uܰtC41+0j,͒ r\pj(JsbyFP BP04W=u)T"s ͮVe D eZlgkC:w̍ B(b{H)L)&˼)Y PvJKJ( pryCY6)!ܖS9b~Q$LmI`ɒdX$9KR(s_'%Vl(g)u("P$YPNw` |J}f,j/rÅٳP,Z Ӿ?)1Ţ(j]/"[ ŢJ(Ɋ]!%npB1%|3ꄓGAY{`5qmәXPJFAtZQ ę/]s鼝(9s(h vLg7v(#<. $({Y+`&apcn2f{fn NX/c3Vަ,('~nſ[I3d,t  .M̹NaeÙ·NEj %7l~-5B aD3v `Ŝ}UVs;~ŚN*p3.m;p 3>u2田a8O(D%0ŒVؙG _4?[L[i\VQXMHk8>>-@Kٯ`@~L!Bp =* A%0ˆcPBvS3.Vpl"sR,XQ/iZtWL%:OdnΎ~Wz0v(K)6Tㆼv(   ):9 ~ I+F~OWABeZf^4At3J8Dh8B`p0FWC'EҴL0n * \/i'WBa(!BCrާTB鍔@T`8őPxI%m0h%Hh*C砢HM:"4 x^ֵ+[3 ŴRpI-"4Oۜ3 %H*$!B#8IŊp҄/^^لCF_$!B{):KJN!A(YCFJ8,K'URpp쇵R.j ypR|y8 BJ(ῧŖ+={57^KwpEMBԄPb_Rr7'%zvĮ.4-\i|I]'$V+uA4KH3_.s i=?iIzpSN4$I2Br8!B"O~5$p ~ss_5KmZ &HůЗX$c8#jpc8{~4╨+ uU(bQ)Ko/׋ӉfDNA_bEN'h~P??a:\PV`¯p5wx[щT嬉96{1ŽgW(bČQ)ac fUcp 9aǴ>[1h|%VSZ^1W9x;ڣ=R i  pb7P=^)̕pXۣTЫ8Q~ęGbs4=++ĉtrX(*Gu+K#a#l;eUqj!`أTS+T)8? CsD1jB ;aN~;J쳐(S](3Jj"KEõaD)cSLJ HTV<@Ւ!&RYs1!5R$*Rg<5$IEYxٰԉvu nh[2b-$!RE,;TXJ2K\ð''jEid/k%3j"yT }h,wF(uq/ &8 .uZ>J(8A*b}Vbd) f4HEB f!WHT<{00iCP`|}窢\2;f òe2ᕄURKc.{qj}( JSU gs`26;]AARBfX9K°Bu^zʳ *q/iw((Q|=;]:JܧR_5JV XnIENDB`PKC#RP#  icon/option.png PNG  IHDRR pHYs  ~ IDATxmH8XWAtX J+8D@ [8VRV4I-1B ;l c16:>z/|@;jC؉^\;9д8csR;؆罸~cZ?fuo潸޸O,a+?gk,/s vuq%pe hZy) f(+%J!A8K\8[<Rc!GN(4-i…4HF|1zҍH6 m^\/u% 9kG)FqI`' F'Ы7,! 0B!m=M!yZ!2n)qx~Q@wᚼJBR@0l(\Ppt"p+ x7-ر:w'H^5,=a¶/zEU@]<'[C1 6 F~441}+j΍lZ]ªm( dީ ]M6p-gn{F[J 2cD$lF olntL#r؆ 7sr-ޔ& U" 8G}; fIT&&"t0&"UObNnB@wyJg6&g>.l=)Qݿuc85#:O5|:0:фzԮ!/ >MB8; 9e2ZLRv'@'tN&])MPWuN&Q&Ѻo?PvNћ_=yS@${LHgM.~lݑ TQ3C/"-h{X~s>+`pEuOpۃObM-<0y5X}0?5a}N 9]ia&]ml]Aw2K}X6wԇgu{E]tD E ^Сx^̊Briqֱ Z)-GQoms'U(s<9ƦB;p@emKYǙd0˯Kuw8זZD;8 ӅuiQa1fGP&]ryY@#2Fde1" (cDPƈ,Y@#2F|XuvưǾ|Rp*mQJy5Ҋh4($ gI'Cs, x8gbLJGJDDx"a+!GEbooߋbj,9Oxj|VH8tPQ๩Ԋ)Rt/}cD !3wf#{JBg$=q1JhuUP56lhkTP+| Ӄ*.P9^[еfµBZrE'D `pj+Qӱf Z@ȲS}ؘ\t h6jǣ.+Lj:Gm3Y@q'E½*X{'oܨl[ e Ui! ԁ3Gm֌@ :y QkCǁ ˻.mNzT-L @2O@gL{+39:y/aN舁T.Bg*ďHn J]ԇ*w^VWA!AI[v& ۭj"m"'#`/YxLD@56#!^M*u/VZ@I޾lD]j{'?t4g)/㨋jL@0n|6~8f0 `p- Q:\gZzvmN׵1v6r&pBZU@Ȳ);O]E{+O6#?>2 VΝ.m('>;EoϮ?g$KOzya8V  ;SqK+ƾY"x(@VEW""QJІs1}炈> 4[^~}ȵqyT@;U-z0G4 IģzpS~@ӀG`{`3dXkOo Hж:݁pDm LΊQHQ B&5ɠACZg<,a7)7.z;QiNmMj%݆F=m 9 i/ʥgN :ɯ6|!1277򍭪IENDB`PKC#RrG B icon/privacy policy.pngB PNG  IHDR~o pHYs  ~IDATxq7Wj _s3v*SA ,W T*\ ,v 57aʀR<`nؖuw `qDC0+3?8) Mњf+32-(_ҶjzeFG?J? W|\S%{)/kocxeF|GDs'kJ< =g#KSzEIzEYzE$";Y,$=m ,q|#n' mY"~ SA.#(n}*t^pHr,|G"2fxWū,1,1O0n^#JB~X#&"K >Y%{23"@3ֵ-~>.BFu\d[z\B^WȎ!?y=f0dS] M䱏[`IpHW"J9T@`cWST|O@#$I=as+3i?RTgl:q脐gMa8ϺXol&JxЃvR:ZkdMVؙp.D)snlٸkG&ojݽL8o\xٌnGv2(]dpö~fA\,' 5^lxg*^&LORº3,]˲Eu9N/>>\[/T,so(|uAŃN݂oLt~32ݍ~[C.Qv˫\ż 5W߄”lj`WDhFk r,s>uEBsq`nis)QX|iW?$S )HTӮ|_RI<:i.zIJTV~]שJTzm>*.ޖnnzz ,$ջ` tܓNx\ votىm5]$NeEi[o%Z]3>V|E?VxږX41xolbr{CDWb048IENDB`PKC#R> icon/settings.png OPNG  IHDRHz pHYs  ~ bIDATxm9ƙ zbW`_Q*RA BWpJ*\A bU r񭼒rw93;? M}r՟?$v;6L1g~1fLkchݎ1 qmY$%c̄C$0F&kcȸ1xĈdho #F%fՒؐԒHC#v"C&ZH E"!{ w%DW"-UwS,ŒP]jIAuK Y/B"i (`)"f? a7,P_-IT 4}\G3s"N9羓 AX< 3ehXnn .kDzEzjEU ).0v*K"FC~H[: TT,!FoA"gVgK˴CBkXk/E22\z ތJ2 ߩ%!L|*EcĉMּ ( *q~NQj E P%.$uy{Ŵ%>)xgx"K"RS. फ.oy% JQDq}'\uykJsD>$=*9OߘgkghZH}Q\g6ۅH*?{_lKz&W} mܚΉĝE!0i+\,k'g>LJF e&tZamG`0MUq =m~Xd$.&U{im`tOp LR`.ݶ<l(rWoN.<-&wF'3p%qgKj4ry2;\Q, ]TQB+ _̝ةSP3?JE+a|h3FJ|Rȼ2P"59 {'( AJ\ ߃~P 2h=%P0ۡ c.ԇ(? 똺 I))xjWs)b{ʆC)VK̽emyfc{tB"Cs Q$1 ՆvZ$ʨv*G+-"Q*Q(HJT$[E½nGM0;l^"rG]&D ܐ뱯cUH2Ӌ. ǻvwhZ"qD@-']}(LH璜1&Db0g?` RX`UJsG!B,qH{)rGd#%QugSK29;vVws ϩo;CInW]qN>PL n),q[r*=1 k)6nϭ3A'!d__&eƼnjGLr̾^IVXOR1]LZ,B\W1ءogمت ܾfDe3ۨ[`(hk,:2m")v1xP#\[ŷ:MuYv&ٟ>s "[\sD i>5pߓHoi<7pSҳ8~v)>Ciʖ"cq*E]5{{/D,cw*(2m*RR/VEDZP,GQJPk ?(rH1IβzmJ X Q|i\G&'3^M]by,;3Bګ-WN O҅5̪GaRN6\ -\zzm,g Pŋ>'UMq b|ju#7w& ރ[t!! 8By+JJ.hpzθF:i1"qylK3%lA+#9cS`hLm5Ƭ n.XbRlºD%GTFVdE  E|@8WJV ;؞It:SJ-Rsywe{A)9!'aRx"QOe͌#*:frZ)cN$]? HtzK|TJ-s -^1 y!$?(xI!tƼzz!Bw70baq1ֆON?ݓDf7ͼ͊3?q<6 C e>^|JϹb[BZ7 p( {04V{ !d_LmKa<"m\mվAx1 b۱6`S w"pSi3;k#$:†}9߆Z eI-`lᨧYfvTaDi^*WŦUӎз:C^ b':]|;:i&uyʃyZl!C^nbfرϖۊcjIƖD*/7QVݜD8M[re%3{m@^nA&6jwgke _"/mk)]2pDX01vʠ;EԗsHH4̶nI#bGĎIk)[2}--K}1=aaQZY ZgAH[W㡯nbK,I2uOq.%Nt|x.)By(9`.|@I8ήܓ(]*P.( zn{,De lSK`K)%#N*TXm̩ÿo6ex̨D&:r+GYU4chm|U"[5SOZ=c]}\[G>R+OW/h󹵝%-hC/fm?Z Eb!iOcVS LΞ(,LsH+qTtc><u>wֱ8cIs>y/c#x)L`T 7͗oqm?}s \VM^ZC>0_f Gy*s>M޲yHG=بZ|[ 6|,s]bd|K B f9 4,(r %:$r+EMjL0;`Czj^~3d4mFlb!R3+ۂvl.v35;C숀vHlAl;xDmm mހSl5+uH2 ">Oؖ|0Գ/- ~O{@=^C^6Yq%'=!h )X ByZ-טSAd%!:gfx bfׄVhzSQY=0YoZyAlO=bb.cei_!|v\IENDB`PKC#R1zVicon/smartphone.png sb``p @< H,8 <"@ݺ? ,.!s޸(q#Cٲ.R#3mlJ~0@ف-`2͝EB]#.Ϸ.OX2qRXV{(aS}j^{VݯT/ӵo8&ډ/v{=vCfM;ջ)zKoݑw̦wYr* \A&EsqCݵg2OoAqǕrn7@(AUESax eᝯưKmVyo_g A?*a-Lk*3%iūAvt,-h̜Kq!TXM xlή=⟾yq[T}bR2"Mݯ|[eX䪈o/-{+4޾R5U^/է yhxG{~f_:m.,<+Wxm ϛ};auCJɤC{;sE>e~]1a >5-w*xSm,⾹oȷY$/j=ވߋXq;w[<ߓзd_߶1өXP0xsJhPKC#R?icon/starts.pngEXy};3dˈBedd"wǽ{<}ޯsT[3;&pe?` s 񖈋Db[dÙ.Hۜ"w۩QdO8^4[aKQ| e@Vj{%NZ]昚$d(/t/N:X7rOFJf܎_/Q!vgv! pnqJZpA ryJ>'tcl; xװDͦ0iNUN %j#_*7M l wZ!Q+:FUܚb3)/kwE(RMeWJfA~y*9b%^.yhmZ"UJҼ^\ٔ!bvc1Е5Qar>X$XF &<9ZJD?6o[ `f+zHo'Z ͤY᭑I{U., cHCZںB _I g \Gae&e4Om+gIX /yŊ%E,R߸§G))^?NgpYHWU%͊Ӌѝ"dhvj}HTK-=ɔ:"} MoR0@t?vKϠ1CE'EUeN8WEB U%e@SITE^#ZkUta`,P<@CfUpk&U(WMXJ9!Uzh]NݸQg4ni( Mf8s@N(Nb'YLXռRsjd*Fpɶ¨9VˠiԂibB|(Kg .&hʬc"`I!8e/Yq)smth,$4~ʚV:jl%9N C)cEY0ޤ>ӽ=8ZΫΪѓB6/zQ ǍZxI[4@2R]TEG~p*wJ<'2wh &Ҝm}" jS 97$b `a`D@rTe7`;ءԜQ0X Y@vhvE^~xk>[p&gQJ^|@z7 "xW{Jn=bxm^QJ'Ϙݨ֧A{W~K5kPe5X_;1PKv]mkӟx_b@gdWey=(zcu3 2fQ1G=RsI~F#,#cRlJ1B3_W_ yaBLC)E W0oW6LȹHV܃>xd)AsXb&HUj`iKl4!i*Ѓj,1ch@\"OMMڈNz('9Ll wbr3W b%޴W|,w(Fp`"Ϸ(&݃Lb,5"J9|nFo\ ut@5 }mb$MG=q?U.ZlBt> 3<&oϊ}I%*#푶/O큑+ba:?*m߹uR5W^259CKڏ&o7`,qEK~~^ q?MJYlsZiݢ3!)HP +*YlDUK& 3ZnBr\eXF;%nKl{y|i_v祅lH^Z"Y/G`:ש??p97Vr9O w䝛P] k'͆Įֵ"nZ.2(ݵ-+ 5vW)^ȅ+[iRgkDwY煢dG!b~U='F@(G}ۅ *?54M(ۅ8'([lUZb ;%y';K SHЕqM7cףA=\J•ح`ȬRzM9t{v@E [wT^Ԩ)Beʄ`{|+`sG>~3M*L.6>:di<}&Xh\na[<2/C6έmj8r_ R@'腦J5Iy6FroJJp%?JMNcz._"ɗtd^qɜ ʝY&4ضfpS&/6w_3d&3x^zLnG ua撌9y C *zZ3RI(*/?LDPi'ZE=1s/:~9ent=|kKsƂD֙k-ITnlxWFׂcO!4SlтT͢ fߧxh7w} Oۂ]L?xIm QGB;>?7! 3ke#b)m-WzwDd h3m> ZSMجM֒L~&>6.G%Wn'pP4/4E!PKC#Rjv1gb icon/top.pngbPNG  IHDR?"L pHYs  ~IDATxQ{*Grx`,e "X`!*Epkm f>Svi4oE aW3 XV[yTa8b\~WJ*WyHR~z/st7%D0 )D~QAE jZV{?"rAI} ڽK4   dJE Lju\D^bϢ< LBE҇3VukQ#OtYK *Ø5u`Ff7E  "քFmuf:dڊ rW 7u3-E8Y F❹R9R0"dmq̸Z"D(YC4UN_*wh0n#4U.:JGp9]ԭ'zn ú }Шѓ㛤uCw0zߎ#lMMKR0fӻVoԋp m`mkLN0jUN?}|:7*N$#*;˵gHGyq0b7L9hb=3»&Y8r -O`%sP% ˘pnaPWK+Nqjak7Ip!\L0-kW%%kXkU̙[R̢q9c / _R̢9w`a}QK048a[:t|,  x%▯rj뽬B4DQ9BL`Po^^g:#Y }zr Ya]p/[nm^rXA,Ϧ`CNw"U0RY%0+ۃDMf?||@0_2;;fCHZ0( QbײR? 5!b`Z{PQx]6܇c& [R <[ C=Wrd^N=OJ.fn1!NeRk.-XqAXkp'{8pHJb ԽAAIy03d!+ N 0 }*؆+8Pc:&qᒡHFVS4bf\%b CUb t2 ԸyY/)tHm9Рit/M-X>8Rm #+W0.~c@ҔR|c6snR70"`CoÔfkeLC ĺX꺡.Ḧ́9fʤ4W)H-0n3tw\Xt2{EJS>s01Q;hKSn(2F78ǁK?0\]M/o ]8qOJ/fZN c+ݱbX0H`Nq\̴e~ 1/%FX443q֫vy*qÄ2vQ`J]Ciif1- IHiJ'3ۆ,mD \r [4A?a,J0 )M9*pmmה!14-I耒/)C S*RRz1Ә:;\s.RrUX1).YIK+)9ba3kILP"R,LIRuJ\wSj1jZ9wJK_L(3̼L?%gJ_DZI16)MdfGr/Rrq:(iQPҔK"H{Gg @.ubf LX~ (ɦQuX4E9dONLRs]AwEJS/f]7M.Lp@hϡˉǩL۝{yyg7cY\ܿ\Jk?]VߴKf{LU`qI9IB %`Hg)ɜ'\̴_wт!mМ b]zIc*,L"E9^19be|]PKHzR?+ 1kR2]0ö)1yըCQ8GXȐ>VVoofZsY0ܬLj.kXխՠ1  G1D6[VQfdKb)R{R w1oR1vns[01pCA j4xX-V0mp& ͷc+=)3mj`w҈ C)ŕPp%p.fm`Ոrw]{B9veCs,c-sn﷽Q,O< )mZwɰm>H>;bE B٦ZEP‰.A:޶3-PlWouGԇp5&(c]qSԌճeF馞ecI8Ku=UuQ9V s~tRӵDʜG|{WŢZEPGm7ќ̌1i{(?t {H-6 WG$q-`PhcZ QdwT_Я/~l2G0|$F\W{½3)++(-]'վ*m7]EPLu%^ x ^+/8y.]m79u9y1vQs~ vJ׵HUTvc?m¨&E'V5LVGvsYQF)nnsማƈTiF0g]\tv->bD%դ!ŭm,K< Eh!:,mD8xW0JhUXC8ArMb_`@NRLcC>a\552Q^0S]<3g۴ɅrdښHA:6<-rs mM|NH(+$%դ9E[EPZ$gDp'M)!;4!Sc^kX:U~ |g~-UJyܕ3e,W/O-L%`S-Xj|`&d>;՛BsY 2Ij\ {NԦ<&EkLb,4^b ̎uV.Mї?3MT>7c> D?%¸aI:IENDB`PKC#Rp:icon/wishlist.pngtPNG  IHDR+ pHYs  ~=IDATxQYϸϪL0#97XD`@2@U<0uWE 3cK-ug?]I'9>r}l9~j׎OZ2GWG'yUO]I!kAiy82C`T-NpN CC.gg%tXk៻34K ,Xr߸W] : #+0`A \A\+/7I }T->IEܛi 8!qo߫)Ur>)"<ˑNjʇ .%4 >*#q3-EPEaQ s41|BGlc/&~CtK~T- vq{< .c!w鲷2'L uU p *H C7E="~$3?|bZC|雖gZQ[Xw̢{W}T-b<)ՑU]1wkZć]wV бj=Ŕofg BUcF-}M"\n]1a"M=S > ѿ¬Ә0)f^տדbWOվՄUj54ٜ'/E?{k˕$^:l 8&XQ5=FC"&v!mؗo3'R#-h&4D?h5{ILSp.Zzq 0f[eNVbEm>ma76dE.&@d6+_(9>Uj%,g+yycbr.bbz'+UM" oYb`7a>2mVz]|_P=IPOHBw#D[?@{55ڽDnwrбkbZԣtXAB7ʰ/#M`1&:Ն1l{'R{ U]&0( ޮ~E׸cnatrV]3pkͪo5eMpV]xjoknd\ <%uuyV7ۄ.)f?yHJp!l:$3[d0)',eguH- a H 1@jE~SwAׂ|ʤHI[ ]Ȇ!:TW Sr8kQ꒱;j%o=c(\l"遽Ӳi#d]h4BJ-u`Q!}WuuIi%Wj Az.j96=_A*)*%F z:HݫT|N=N$Q?C#(]x7!pߥ"HeYtyHKG^S>4EG"bIđs,I!B/x[^.5MB݄/Gc- =~\B-$Wf&⒀(2]G߆D)m"t&UH$’#@B,̢ ɟ#IBdB'(tBE,Dr0CIDنEBPe"1Fa&)t>pM_͔ؓ0t+g>pYଯ>3yB b^9bT{~᪯wHZT4z]GiY +$H3BSH90t$ݲ1nc:!2(X6Z:N9ZuR*F뵵NSѪP:Vi-j*\jU'ĚѪ%lWIIWOctOJ@HvzNBGvVŅptkZtKZcl#jcg+Yu#$;:[sӢ;Ӆ'YWK'dǜ-G2CZ#`ѝUߣ Or$YpnH⺷aեmH.Hk@>s$uo,Fu%.` L̑TQJw[`Ý搘c,.tqL)Ge+%<6ҐHQpEpM,K'“X1)y/ h\1{I(pw%k*t\KY$YTm$TܰF,U 'rRpP:>  Qx[Uum]zӋD܈*h$Uj0:Pr'׉2qpk̄Eh\fXZڅVxCDŸe1:+48DŸY5BWt=!4Z\c\]ƱN2SzsL9d{o 3O~e$ގiAAS oI{ ise0'HF@39];֚ ZD|[%)=QLq[UFs)$VI͢[bOTQ4E~b699CnmMʿ*^moHRsR-5! bf1LK2McIIKՒ_bۑօd-zLc\@KdؓFih\rs=C+Gȿ䲸gak b5G7[n& ^<;%0mn جnZdkx0DDtmYM nu66VT1yR=m΢VoeWHKLoN.g;Ůȳβzc Ş.k.rrŮh%Ş$TWRODBwo5v=Dd[^ۄQKo=1yq;5Fs=(΢ *p1om-}8^=Dekk[50jdږb-z5+P/tg(7(r{(t@@Bo`,ⲿ"SW0%͠3O|Q`$vWI*F"guc ŗ׶aTu9o0(Тoز'y6(xEoeϦ" ZZvD'E~]cbGwBؓkㅮ{G C4|4x`#BAG2ˡ;B}xV ކN ގb,vکyk [ZE>1t}G -j"O ]]{,UM.:þuGA a4[lvs,х1%;ƚ\?W)P BE+9w] ]Q8InyaUQzPrҵvYhmՍ&1:ر/&?%o3"2 ό;b^\IG\qq:EnnHgֹ =ƙy,>@X^\OM?aY /F^F"/Z'K[[ZCGq5v =`<GП k#=2 nq#Ÿ& e<<2G X ]2G1G -zfY 3C'@˧jn9b#~cfBOQzbP 8#?nǤ`=Ahr KN'-z'81ah1rӇBO'J=38t3Bx=nCzf xfP2#31zg -zb6|%xP腀ؗ(qsIENDB`PK 0Rdeal/PK0R)E-!deal/2021-01-03-5ff1dd1502fe8.pngzUT\A %8n݂  x [@p dϾݷ{ϙ{TwWUuuݎRW@#AP~ 鎠"@uwy0cS:^J֞]8S[KKcO)Ϳ}%4\H37!/qp俎q5#!cs0c軪-57َy]⡅1OVwLRHQxstrڬ8ݚěķ}OXпmDH9061ZB# *M ±#JK[d[PPZOBo䱕ix{$J]:Z;w{.ھb!#:dF=yJEؓ[/ƀg_*$|&mߌ4BzjN`כ{LhR3`;zC㕊?>%*::HܝQ#lG6\ت(b`%@uz th+^Bvuw<4[\P}upatHV4Iҕ2rE:QRg]7o&L,[:|bU[NEb{Զꞷ9L6>(G@Eu̓æ:0 gM} EQàs]勉:(Ddg=(Z6T ZtƊNI16i5غó&6Nd#,~Xi~zclՕFfmPķXmxCJ1 iM9w%%#PaJ3:2R)`շi5_/zhq.]+Ǿ|,3X'(5/uEjbြNhCmCbuɘo{d(Z#7bS/<"B<3 >ξgLk?x4`0q992LFcu1/0wO H+gn]^xgz2V(7ήkQBޠE<槼PKˤlŔ76= s?7\Β<GihkuVutSq;S̕.Q",t%dGW/ vqzLK? +x!RL'4z'Xj oPjоS)מl4l7 7ɹ^ z"A_/,qwZLAYSavYNN=auba.5 M`P.7N:bD'RiIL*]a-&}~H/kGr%QfPfh @X:[w%%q&y7PJ0`c~/徥R$f OԿMvI+B(!lR122z:IR#=ΠD{ D˸3#<}c᣼ Z>S_c(TV3vXns^N-#>Lm}vlTҷƒNWx 8}ٿ6\W6-,[w_$W[-jW5?O\с{Jy2L=gv*2s.ڟBj2JF^coBEXK>;8d8奱 'e+ַ}!8P0vJn[2ڴ."v72O߱kI6Z \QNA]MpB8Y2Oq@6R@fpZ=U"f3_E ~AUȉgoy"CNo]HoErc eh#CVk[52ETT)d֧(ćlj;jɏT7U:I_Q,BB6h8AG[(<܈- Y?6~׸cp"rX~b.6 h6:h~gDpO#Xv7R{TNVAiz*rȥŧk< 9Xz!2BEfLz#8D}'<=V>ӱ25zKq=($t]8&Z[54hpc`*LFLܮ&gڃzAe5)|bиJ"A'tggX Zk ?+<0_?xg'!C3~yӹ$͢sV"VYM.86%x5z^OVwt%_%2ͮ aPD4?,)Xsu:kc_ yP~wyoLt>3ǽd@*m 1#/社Xz Us| KK6IK+Y,y~j;-pXEJIa͘n|e* `@şUɇO pS@f(\0q?ts#XNE)^Oש"]osN}`+wf:uЋJ8ɾ>H3Ӥ26OJŸRK%)Ly{bʚW._`Chb >)?{J'cjOxX2Fv| *5;7 _fʹ>)CATM #)eƲOd IE?F'\G qX6(WIŋHƴ(7cO=e&΅XqxafxM M9loKJl }[Ϻp $SO kfWd!(2iS6d10#l+6>slͅB{lJVS.{cNO }C"ׯ;`xKd*F"/* zbY'8 em48њNs%񝇓lޝ\~D((z"kՑupM #Q(Jpp uP&A履Y.w'=V9u7!80 ƌU87RZۭ5SgTp5qpba9K`{j@FoWTBhVzg`#UjJv zX[#GcK=UɄ0gF%SlS[Hksi]fSX>VpRg/ >04u4&Yk̖"Qnst\J݇];0@ (R'\*2iYĶlzjxo]'%T8Z'|}s<| 8.vP]$Qrf~9€+@ S̘bQ >*RqG ̪{x77M%r.ԕR6ڨ|hд4 CЇ!DG-` ҋ˶V8:wؕfytT_1u팤7%"S3PTE%Dͷ~ZCea֥u_]iԷ6 ^1Tڄx,Ρun%l r0_>7u:hT46t:;HF8mzrv߸86tw#J |6cJCȻt6K DQ/<S![o )\@[[qs:4~1$+PQ; Dʎ :}ؿ2;+.]rGX6 ,rv"gi-l<`7#/jX4 ȯ8l{ǏdNwI59dAz0^V5ۡrFodho+J^Y] !^5p|2@H%!tG ZXOGԊ`ٲg3Y|Xku_NgWs6iJat`FzV4=&tΟe7̏)4 $¶9נ $ s."Ln 5Qj&r/]Ƿ*b]>,WαRZm<k3[^EJq Q{1Z*j#9嵄zAFbD-1aHUԬBBG'ʓ"S Lh!oД>^1l %>黴W0ؙBZŒsEBh:qዱC X5Qh(z?Dy`VUPJe5k38򟨀ESO ,Zn ]"`ձ'XڦITKա$]~dM^򖫍hC, eDD_;&jDgZCee׫[|MV(͗d]/A?Ϧ(Yn 5ڰ(|"C boFۣR+ Mv_gn~1EP/gxǖ nMM_R7oSt*߭4;+A2|~!C\&>ہcȢ+6u.Fh%0s'Q@|#ŠY,.6xe-SW>(cxs<.ނkWUl,I}N.zTԉBHV;SHu0h#)@ 4z;} km*kH4FS>8^m,Jd=AoJGNQWSWrx??;Wjݠa7BL!ctwZ6RJݒValwUqrDˊ"䮠'ܯ#\R8u\3cl~Iu ,?@&o00mj`q^ QD>t݋MB׵ߚ2*nn/=>:,! S$MvÏ3$"f1ߔaOBX2oGg҃}X[ʶ+_>*K?<`[IR-C.@0~b,YPS~SUٌهBV ^ΉGial,zYcEm5 ՜rFӽ ~(LkÁ ʵYb G'}t.Zrҟ{>N FF?fl%b{㡏Ckt#}J[c]|n !{@fiϊ^g% G@E&k~95;6@˜Ɔadgպ *㣪"BX>VASVi}JpR=*=+>"g/!k #~$\bGζ_߫vZl҉O6ek'4Kq @U4m?=:W?=pIIJ2>! Y^S6i@prߤYFTJ ;,baO@^adr_AZX&A3snz];>f֯{\N-&kIIx)zbO-R?HY| ܘaycd 'BҠdԃF\0[Z h^KN^PmwSK`,|Os\@VH= k3_c-E-B_d9+1>X 967Q(B _eSLSea] 傂FSڬWs*)eQ>Q&=3qdAcE+6ߘl[Bt.dcd^s,9ppg[4߉a:5CM0GwK|>Lx7?9fDɆ&}-{ZL} ? #(EqB8 ġ*Rifz=f+q))-<8rH"a'!͓An.~̱_S9%0os<ۡosZ42-sΔJ1'j𧶲j\>rF;2.Z7w=mmNXZmnăolМX>Z"rd^pMާ4߂{54T5NmXr:ڣD\M ݟ.tfcqaú5|~iaMI#^@`=ٽ pA%3³*{~zۊy>Yu>XƎҶZqZyfF j6r%9XPT>Q皇zXo2WBAGa3{^rÕ<"7Zq)'ܰ+G{Q~,+~Fϑ$D4MtRƿaaAqq6F*ZPߚLS^sDm-h*eۉH9 ` ,gb"0W m(z.>+=A=OmahG^W=(cXSB8^" )CX܄G@ޗ)*0[&.F>Z#qP^a;;GӀ Oܣ)XYX+ݧg]H ~ZFN7.V))#SD Ҍ|QRj(f2:QY\"w>3, -7 UG|ֆ tx!^1KSNxTT|lfyb*R)rՠؒ!XiL=zR(jMX~G2b;HT<퇝\:;h kSy?/P$5 gE@!F&^);ȑ럎3-N ~ 6f{3/118>9mϺ(ο**pae̓/j݀I"]?寧xL`Iikk:i-mm<<%![yyꄡ!Ő7%Ǯ*!orLŵo2E!N  101%y2Lf"U*T?:D=$uUk~yriOy>xl:-SI+J:R?ua@ ɭyB$TS Qh :7`lxbŽ6:xQ K\ylg62ʎs:{w| R/&ޜ\r .y<>SN&][? (p=%yT ;>Yj|-7jLWBd "_R力,wK$ h6LJ% ;];M& _HfMb 5*ãQHs,ŤR/s-obk_T3 Oq ON3L ybp$2cο'DˌoHe}:a"[GJzR u.~vy/ۍJ+Χ$ٿL#KGW$\OkjÉC䕑h MTFP7yg|Brgaf/6zgZp:H!.@%&o >;;czk:8v<#7cD>⯮^7^`kޏGN  66Bv{ɸ4uOq- f @CaǓkj0<?M~ ;P0iKi%85{ YLbk0Li 7*GsekIvF ҲQY&0 gϕt;  @i=p41U{IO5kQ[WǏ {כUܶ1QKNJ̋&`ޡ[K ͦfѩeeFF2rR9ǁ:Ca/0o u {PD2gBDᓪXd3 y 9K {bZZ5777} ܐoyFuxq F+pi%D 6dacD߆ ,  k֛_m*Y..PئvKTA-8ԁ *+oWR1/˿)3>bʹ=p ]C0![wKBZD%QaxyK•~Mـ)=dZMMͪ%ZU,TSBMjJOq&^c015bS Iޏ9Ԉ?^HNCt]c6b [ :::;9_d,lKNFna$u(-gG{s9CO $DPѝxV*_@&:k=(hjqrclS46nK'Eqm59nWzW.f!<)Y?[*! >;Uam"I7w);B9ꁅTu{Cea\nArYVXe-b}̅p##?O̼`s@O?ZZZqNz%42|IΑ0+q,X.x TUv7woɿB_ᇹ.Q-/s*D:UI9@pŅY e!bAE1&ƀ`ط_)5Q20j,y"TיmGKU2pŎ(J lra|֝P i:h;77mFFF^_.,,) k3Xqy\ /Fxmm"3B)<勼QO}x%74'1 򗨣Y?ˊAaM)^y9 /`yYwW !PyGwEJQ36ɽR 9T.K >|K_4CHMNV'>IIHLHhᛣ}_b@GGEA.$"c)q{SYd=\@S(GaɊ[~~~tIy@h;-~/(P6(<4dk٦X]ko![p.ˉ" @Ǐ %Z]r iikX7OmyZ:pt q?a5Z#Rnes/\Kl]y}3ʉ@]]].䰦,2Gl 66hHqeh$]TW{,h2//OM4W=}|qKM>#74e{9 呔;Y z6v9֠sŸǛ ׇ,ei+VLJHvhͭgd$t4YL8} vԜ(ID[ҐߚD!eOnXMCg)<:n"-zPw{y7]z ;T? jff֢4auBorY&J2%x XD.pQ1%Ӄa˫?0Im8 q^k  hvA\Dsݦn fr'''&pnmm% gkq_ŘOyiX3D(Oʎ;}"үeAAHiÎwz=?~'@) ;(QPX!аo{>j Ui<2r1\) J?w5{07za''n%dᵇCeg_mx|R,>8 ÇBw{%z o7?e1==VT]drubh(vqf4`S_?Ko#{x ?mZ#b4sr\ק*Қ 9~eeKc)@٘37C* klTՉ|iwf|y<3:޴&ҥ8 Ofb<#GfN{vO!mfE%M3{mwED&j?UGX"5~MfamsMezOLWa/4^ n]fJ 3NQ $a($0RI ]'7vc\[yiȟɉ&MT{Sgr sm_bWo]Xt9w6kn C%@"S2uj=Ilap57^h4ܴ/IkMElAL?"bb.De|)ݷUKeK' Nۂ ePE2r]ё$I3F<^&߼wukC'].Os8˅![=W2& ,[CwMžd24OohiRD7Bjr` de@ 4"nq 7ƻ\X_ ;m3WslFȕ&VW!s:ɞor4 t$ԣ2 ~:y_rb{_'z<<<,6z,ԦShPUU5ix/Q1e.P _s!Q*WI6ϝtHvBz%Jcyylj4*Pa0bU1=akkK1kSʨ{#U3vE~5CÁ>>z}{v a/vB4xѱt`;8tws/t]Q׻0?XA*}d k@ChRBKMޭ3MN459JYb [[/< $lsm\~fhh|| L%<']ۻGf mea)PiB?4%(G-][YYo|J[W}OJUseX\ '?w껻cr :WUQ [|AR<6?@};kҍ1JXsq)q[F`-OX JطdoC!"J @ #}jxc2\{4mqns?H{SHkGFVWXkHwϨ,=J˩HĊ d[!5!K֯%L1 @0(\^w`i&2m[(ֶ$ 0Nj@a/CCBW8wbdVr{.\ bo: Kbl򂞜 عTDpq;{XۣުIWմb*ږ4-G㤞'N/^9^g- =u"0߫!فJGa޷ #"ofr'(;6ՀĠT-nPY$'=UY~i\p8D~[GY?],҃Ipv77mnzҐC"TT7+ٹ>^WAƈ_Vx34d$Bd@mU r ߿s2hDo04mNqHg{zvkDVゞbHPAqC oȿ=8іo0Y灱6˰ɽ&nTH@$֦ X/82>NANV+^b|P ;P0iKi%85{ YLbk0Li 7*GsekIvF ҲQY&0 gϕt;  @i=p41U{IO5kQ[WǏ {כUܶ1QKNJ̋&`ޡ[K ͦfѩeeFF2rR9ǁ:Ca/0o u {PD2gBDᓪXd3 y 9K {bZZ5777} ܐoyFuxq F+pi%D 6dacD߆ ,  k֛_m*Y..PئvKTA-8ԁ *+oWR1/˿)3>bʹ=p ]C0![wKBZD%QaxyK•~Mـ)=dZMMͪ%ZU,TSBMjJOq&^c015bS Iޏ9Ԉ?^HNCt]c6b [ :::;9_d,lKNFna$u(-gG{s9CO $DPѝxV*_@&:k=(hjqrclS46nK'Eqm59nWzW.f!<)Y?[*! >;Uam"I7w);B9ꁅTu{Cea\nArYVXe-b}̅p##?O̼`s@O?ZZZqNz%42|IΑ0+q,X.x TUv7woɿB_ᇹ.Q-/s*D:UI9@pŅY e!bAE1&ƀ`ط_)5Q20j,y"TיmGKU2pŎ(J lra|֝P i:h;77mFFF^_.,,) k3Xqy\ /Fxmm"3B)<勼QO}x%74'1 򗨣Y?ˊAaM)^y9 /`yYwW !PyGwEJQ36ɽR 9T.K >|K_4CHMNV'>IIHLHhᛣ}_b@GGEA.$"c)q{SYd=\@S(GaɊ[~~~tIy@h;-~/(P6(<4dk٦X]ko![p.ˉ" @Ǐ %Z]r iikX7OmyZ:pt q?a5Z#Rnes/\Kl]y}3ʉ@]]].䰦,2Gl 66hHqeh$]TW{,h2//OM4W=}|qKM>#74e{9 呔;Y z6v9֠sŸǛ ׇ,ei+VLJHvhͭgd$t4YL8} vԜ(ID[ҐߚD!eOnXMCg)<:n"-zPw{y7]z ;T? jff֢4auBorY&J2%x XD.pQ1%Ӄa˫?0Im8 q^k  hvA\Dsݦn fr'''&pnmm% gkq_ŘOyiX3D(Oʎ;}"үeAAHiÎwz=?~'@) ;(QPX!аo{>j Ui<2r1\) J?w5{07za''n%dᵇCeg_mx|R,>8 ÇBw{%z o7?e1==VT]drubh(vqf4`S_?Ko#{x ?mZ#b4sr\ק*Қ 9~eeKc)@٘37C* klTՉ|iwf|y<3:޴&ҥ8 Ofb<#GfN{vO!mfE%M3{mwED&j?UGX"5~MfamsMezOLWa/4^ n]fJ 3NQ $a($0RI ]'7vc\[yiȟɉ&MT{Sgr sm_bWo]Xt9w6kn C%@"S2uj=Ilap57^h4ܴ/IkMElAL?"bb.De|)ݷUKeK' Nۂ ePE2r]ё$I3F<^&߼wukC'].Os8˅![=W2& ,[CwMžd24OohiRD7Bjr` de@ 4"nq 7ƻ\X_ ;m3WslFȕ&VW!s:ɞor4 t$ԣ2 ~:y_rb{_'z<<<,6z,ԦShPUU5ix/Q1e.P _s!Q*WI6ϝtHvBz%Jcyylj4*Pa0bU1=akkK1kSʨ{#U3vE~5CÁ>>z}{v a/vB4xѱt`;8tws/t]Q׻0?XA*}d k@ChRBKMޭ3MN459JYb [[/< $lsm\~fhh|| L%<']ۻGf mea)PiB?4%(G-][YYo|J[W}OJUseX\ '?w껻cr :WUQ [|AR<6?@};kҍ1JXsq)q[F`-OX JطdoC!"J @ #}jxc2\{4mqns?H{SHkGFVWXkHwϨ,=J˩HĊ d[!5!K֯%L1 @0(\^w`i&2m[(ֶ$ 0Nj@a/CCBW8wbdVr{.\ bo: Kbl򂞜 عTDpq;{XۣުIWմb*ږ4-G㤞'N/^9^g- =u"0߫!فJGa޷ #"ofr'(;6ՀĠT-nPY$'=UY~i\p8D~[GY?],҃Ipv77mnzҐC"TT7+ٹ>^WAƈ_Vx34d$Bd@mU r ߿s2hDo04mNqHg{zvkDVゞbHPAqC oȿ=8іo0Y灱6˰ɽ&nTH@$֦ X/82>NANV+^b|P ;P0iKi%85{ YLbk0Li 7*GsekIvF ҲQY&0 gϕt;  @i=p41U{IO5kQ[WǏ {כUܶ1QKNJ̋&`ޡ[K ͦfѩeeFF2rR9ǁ:Ca/0o u {PD2gBDᓪXd3 y 9K {bZZ5777} ܐoyFuxq F+pi%D 6dacD߆ ,  k֛_m*Y..PئvKTA-8ԁ *+oWR1/˿)3>bʹ=p ]C0![wKBZD%QaxyK•~Mـ)=dZMMͪ%ZU,TSBMjJOq&^c015bS Iޏ9Ԉ?^HNCt]c6b [ :::;9_d,lKNFna$u(-gG{s9CO $DPѝxV*_@&:k=(hjqrclS46nK'Eqm59nWzW.f!<)Y?[*! >;Uam"I7w);B9ꁅTu{Cea\nArYVXe-b}̅p##?O̼`s@O?ZZZqNz%42|IΑ0+q,X.x TUv7woɿB_ᇹ.Q-/s*D:UI9@pŅY e!bAE1&ƀ`ط_)5Q20j,y"TיmGKU2pŎ(J lra|֝P i:h;77mFFF^_.,,) k3Xqy\ /Fxmm"3B)<勼QO}x%74'1 򗨣Y?ˊAaM)^y9 /`yYwW !PyGwEJQ36ɽR 9T.K >|K_4CHMNV'>IIHLHhᛣ}_b@GGEA.$"c)q{SYd=\@S(GaɊ[~~~tIy@h;-~/(P6(<4dk٦X]ko![p.ˉ" @Ǐ %Z]r iikX7OmyZ:pt q?a5Z#Rnes/\Kl]y}3ʉ@]]].䰦,2Gl 66hHqeh$]TW{,h2//OM4W=}|qKM>#74e{9 呔;Y z6v9֠sŸǛ ׇ,ei+VLJHvhͭgd$t4YL8} vԜ(ID[ҐߚD!eOnXMCg)<:n"-zPw{y7]z ;T? jff֢4auBorY&J2%x XD.pQ1%Ӄa˫?0Im8 q^k  hvA\Dsݦn fr'''&pnmm% gkq_ŘOyiX3D(Oʎ;}"үeAAHiÎwz=?~'@) ;(QPX!аo{>j Ui<2r1\) J?w5{07za''n%dᵇCeg_mx|R,>8 ÇBw{%z o7?e1==VT]drubh(vqf4`S_?Ko#{x ?mZ#b4sr\ק*Қ 9~eeKc)@٘37C* klTՉ|iwf|y<3:޴&ҥ8 Ofb<#GfN{vO!mfE%M3{mwED&j?UGX"5~MfamsMezOLWa/4^ n]fJ 3NQ $a($0RI ]'7vc\[yiȟɉ&MT{Sgr sm_bWo]Xt9w6kn C%@"S2uj=Ilap57^h4ܴ/IkMElAL?"bb.De|)ݷUKeK' Nۂ ePE2r]ё$I3F<^&߼wukC'].Os8˅![=W2& ,[CwMžd24OohiRD7Bjr` de@ 4"nq 7ƻ\X_ ;m3WslFȕ&VW!s:ɞor4 t$ԣ2 ~:y_rb{_'z<<<,6z,ԦShPUU5ix/Q1e.P _s!Q*WI6ϝtHvBz%Jcyylj4*Pa0bU1=akkK1kSʨ{#U3vE~5CÁ>>z}{v a/vB4xѱt`;8tws/t]Q׻0?XA*}d k@ChRBKMޭ3MN459JYb [[/< $lsm\~fhh|| L%<']ۻGf mea)PiB?4%(G-][YYo|J[W}OJUseX\ '?w껻cr :WUQ [|AR<6?@};kҍ1JXsq)q[F`-OX JطdoC!"J @ #}jxc2\{4mqns?H{SHkGFVWXkHwϨ,=J˩HĊ d[!5!K֯%L1 @0(\^w`i&2m[(ֶ$ 0Nj@a/CCBW8wbdVr{.\ bo: Kbl򂞜 عTDpq;{XۣުIWմb*ږ4-G㤞'N/^9^g- =u"0߫!فJGa޷ #"ofr'(;6ՀĠT-nPY$'=UY~i\p8D~[GY?],҃Ipv77mnzҐC"TT7+ٹ>^WAƈ_Vx34d$Bd@mU r ߿s2hDo04mNqHg{zvkDVゞbHPAqC oȿ=8іo0Y灱6˰ɽ&nTH@$֦ X/82>NANV+^b|P^B)}ft륤j5.Jsrܓ5lkX׫yX.8|1`x[p<_Ԭ}\Y撸A&s͛7w~`æ52_ 6 㗖/^ry#+/Ϳ @@64)V#_ơP@Lnbg7}*j aj"v>v.foi푱1$m7&S(iۙ}tiꬫ}Id #lq827Q>.퓓DXh^Ƀ%p8ek捆Fgg'lK`LII/Y@&GZ#nSVVv*tis vE~F2'66;'GkNW'.FÇՏ@zĎ:'07ww۷ $2GDHAPyM[QQ "33}>ԑ+ǸYiiv->5~/##R^uh~|4[zw'.:'GI]Qk-%<[j/?  Fu >+ M9CR^qڔ5%w-sEm|}V ˠdce\v:Dyb-Z7»bYJn49 z73 :X>t!@pc)fu؅ylWj4T@UoSJ:?rjt(|I>(v]Ue0$$!đ^d#P4*oD͘/ZܙkWYa=}`oMުQfFI*< jr9@ Eϑ[G#fXYD%ԍ^](vJ<*H ePN&{^|'+72X .c#nO>BtґkQ>scHD w%O4g#0p/ʛ=M$:d m~z?/wr)>tA=~R?[;>/%ٌa1+X6v,t ;F70 Z->DW;ml7KVhFbCW|J|JrGUW&э8?*} *ӄ Bj+pwFP?Ӌj:9]‡tl+b>TpŏJ tVKT/g 85Tm:|E22rG nF/^&~b4I[c]W׽4=Fgp` twRέ}b:e+AD0mr>i=Yb2*Ei'd60l,R%H vOeaa**h|QF8-%ZrX/kڼدeF@Yz<_eKW)` (DlS`bsf q>oCWBVYKUܘ=FWQ&0cY'.e|`O{Bh>-ЃB; JO텒E}C%uM>>S."B9fQ^<( 6? #Ezy)#&v#`m'GPium?MvLOQ/|wuOVV2nJ0 ԰}?7ҎǓFOy=߳|2lwMSWC(s`b$uCe#k 6(βO1yFӸ2 ;U"GV4V,J[p"K.ҕ^^]#':U1Oe#ʂG za\i˾W溑Ɩw*߬sw5|cᰟI%C6v'Ƶ+ԵĢ${RIF- }w^hcY/& _+Lc(U:]dC̐+HCNʿi$BclE[*cH ^M4 GegSPjDP,Q[ R0|K%]pS!꥛E5yOzc!ɅqT"CmS{ kfl]h9h>{>߅K=]¾KeNC[r'F;sA jj&gku10nl.:)HK`YU5{PkgլBA/y/)wL'w&6!cN4 Cz8d߶^ܹwx!}1I2 OF_6fz! nP' NW/nYb'KNOo߶quMu5`bE}0>g[8lk_uN[ 82g=ͪGK&,VM\;Ae@0sRP%]r1|7J!7uoo$O:fF("c-M~;EBt-IN%d 柁NpXt xH|Y E=n=u#p#۹D,u=7emܣ8ԡWW!⴫ }}<oFڰ7=b֐̄Sm}bk=u?jǕHYWNxz:$ًݞi˼e`DTA^&! s b@ 5-bF>4^rEMؘ!uHR7[L נ@b:쭄l(؂,ş5Ƌ:|llIhnjر O3^Q$Yfa ۊʈ0:tyN]ʼb-Ӂ&]`7G!K"**zSa`GČ{'ٝM A#kV7ݱ3'O\B xhI?^`#z!њ&;ëΘܡ @\SOIɰBϵ6 &$ kXM?b41g%V~=/ VHj%{׋_.[Ԝ "VWY;":w%H_6|Tc;t ^\n<.??Ű::!"#_aUÕ.z:y%joE ez`cG>nWPRxk4p6yӿ38(c]4?PKV$R&0bV%category/2020-12-30-5fec18324123d.pnggPS[ǃp4H^ UZ@wEET)" z'BPzIB1DPBBwxq޷ͼ79{뜵[{NeV~Vp 4~;#U%_}W߃!]4Υ=܋7χ4X5XddX-_TCi]NEJ] ̤ɁfbhubZrM0xQ{CM+c+LܡGT(9`F/p6S ,^2èҠ|5SU꫗},,-:::fz5/݈~URRbvkrf7! (3FM0}2֭ٓ;;y A3JQ6I[{;wb |FBYlݽ=T\'(tO( H' 3xgB"w\n:œ0z6>^B)}ft륤j5.Jsrܓ5lkX׫yX.8|1`x[p<_Ԭ}\Y撸A&s͛7w~`æ52_ 6 㗖/^ry#+/Ϳ @@64)V#_ơP@Lnbg7}*j aj"v>v.foi푱1$m7&S(iۙ}tiꬫ}Id #lq827Q>.퓓DXh^Ƀ%p8ek捆Fgg'lK`LII/Y@&GZ#nSVVv*tis vE~F2'66;'GkNW'.FÇՏ@zĎ:'07ww۷ $2GDHAPyM[QQ "33}>ԑ+ǸYiiv->5~/##R^uh~|4[zw'.:'GI]Qk-%<[j/?  Fu >+ M9CR^qڔ5%w-sEm|}V ˠdce\v:Dyb-Z7»bYJn49 z73 :X>t!@pc)fu؅ylWj4T@UoSJ:?rjt(|I>(v]Ue0$$!đ^d#P4*oD͘/ZܙkWYa=}`oMުQfFI*< jr9@ Eϑ[G#fXYD%ԍ^](vJ<*H ePN&{^|'+72X .c#nO>BtґkQ>scHD w%O4g#0p/ʛ=M$:d m~z?/wr)>tA=~R?[;>/%ٌa1+X6v,t ;F70 Z->DW;ml7KVhFbCW|J|JrGUW&э8?*} *ӄ Bj+pwFP?Ӌj:9]‡tl+b>TpŏJ tVKT/g 85Tm:|E22rG nF/^&~b4I[c]W׽4=Fgp` twRέ}b:e+AD0mr>i=Yb2*Ei'd60l,R%H vOeaa**h|QF8-%ZrX/kڼدeF@Yz<_eKW)` (DlS`bsf q>oCWBVYKUܘ=FWQ&0cY'.e|`O{Bh>-ЃB; JO텒E}C%uM>>S."B9fQ^<( 6? #Ezy)#&v#`m'GPium?MvLOQ/|wuOVV2nJ0 ԰}?7ҎǓFOy=߳|2lwMSWC(s`b$uCe#k 6(βO1yFӸ2 ;U"GV4V,J[p"K.ҕ^^]#':U1Oe#ʂG za\i˾W溑Ɩw*߬sw5|cᰟI%C6v'Ƶ+ԵĢ${RIF- }w^hcY/& _+Lc(U:]dC̐+HCNʿi$BclE[*cH ^M4 GegSPjDP,Q[ R0|K%]pS!꥛E5yOzc!ɅqT"CmS{ kfl]h9h>{>߅K=]¾KeNC[r'F;sA jj&gku10nl.:)HK`YU5{PkgլBA/y/)wL'w&6!cN4 Cz8d߶^ܹwx!}1I2 OF_6fz! nP' NW/nYb'KNOo߶quMu5`bE}0>g[8lk_uN[ 82g=ͪGK&,VM\;Ae@0sRP%]r1|7J!7uoo$O:fF("c-M~;EBt-IN%d 柁NpXt xH|Y E=n=u#p#۹D,u=7emܣ8ԡWW!⴫ }}<oFڰ7=b֐̄Sm}bk=u?jǕHYWNxz:$ًݞi˼e`DTA^&! s b@ 5-bF>4^rEMؘ!uHR7[L נ@b:쭄l(؂,ş5Ƌ:|llIhnjر O3^Q$Yfa ۊʈ0:tyN]ʼb-Ӂ&]`7G!K"**zSa`GČ{'ٝM A#kV7ݱ3'O\B xhI?^`#z!њ&;ëΘܡ @\SOIɰBϵ6 &$ kXM?b41g%V~=/ VHj%{׋_.[Ԝ "VWY;":w%H_6|Tc;t ^\n<.??Ű::!"#_aUÕ.z:y%joE ez`cG>nWPRxk4p6yӿ38(c]4?PKV$R&0bV%category/2020-12-30-5fec18492236d.pnggPS[ǃp4H^ UZ@wEET)" z'BPzIB1DPBBwxq޷ͼ79{뜵[{NeV~Vp 4~;#U%_}W߃!]4Υ=܋7χ4X5XddX-_TCi]NEJ] ̤ɁfbhubZrM0xQ{CM+c+LܡGT(9`F/p6S ,^2èҠ|5SU꫗},,-:::fz5/݈~URRbvkrf7! (3FM0}2֭ٓ;;y A3JQ6I[{;wb |FBYlݽ=T\'(tO( H' 3xgB"w\n:œ0z6>^B)}ft륤j5.Jsrܓ5lkX׫yX.8|1`x[p<_Ԭ}\Y撸A&s͛7w~`æ52_ 6 㗖/^ry#+/Ϳ @@64)V#_ơP@Lnbg7}*j aj"v>v.foi푱1$m7&S(iۙ}tiꬫ}Id #lq827Q>.퓓DXh^Ƀ%p8ek捆Fgg'lK`LII/Y@&GZ#nSVVv*tis vE~F2'66;'GkNW'.FÇՏ@zĎ:'07ww۷ $2GDHAPyM[QQ "33}>ԑ+ǸYiiv->5~/##R^uh~|4[zw'.:'GI]Qk-%<[j/?  Fu >+ M9CR^qڔ5%w-sEm|}V ˠdce\v:Dyb-Z7»bYJn49 z73 :X>t!@pc)fu؅ylWj4T@UoSJ:?rjt(|I>(v]Ue0$$!đ^d#P4*oD͘/ZܙkWYa=}`oMުQfFI*< jr9@ Eϑ[G#fXYD%ԍ^](vJ<*H ePN&{^|'+72X .c#nO>BtґkQ>scHD w%O4g#0p/ʛ=M$:d m~z?/wr)>tA=~R?[;>/%ٌa1+X6v,t ;F70 Z->DW;ml7KVhFbCW|J|JrGUW&э8?*} *ӄ Bj+pwFP?Ӌj:9]‡tl+b>TpŏJ tVKT/g 85Tm:|E22rG nF/^&~b4I[c]W׽4=Fgp` twRέ}b:e+AD0mr>i=Yb2*Ei'd60l,R%H vOeaa**h|QF8-%ZrX/kڼدeF@Yz<_eKW)` (DlS`bsf q>oCWBVYKUܘ=FWQ&0cY'.e|`O{Bh>-ЃB; JO텒E}C%uM>>S."B9fQ^<( 6? #Ezy)#&v#`m'GPium?MvLOQ/|wuOVV2nJ0 ԰}?7ҎǓFOy=߳|2lwMSWC(s`b$uCe#k 6(βO1yFӸ2 ;U"GV4V,J[p"K.ҕ^^]#':U1Oe#ʂG za\i˾W溑Ɩw*߬sw5|cᰟI%C6v'Ƶ+ԵĢ${RIF- }w^hcY/& _+Lc(U:]dC̐+HCNʿi$BclE[*cH ^M4 GegSPjDP,Q[ R0|K%]pS!꥛E5yOzc!ɅqT"CmS{ kfl]h9h>{>߅K=]¾KeNC[r'F;sA jj&gku10nl.:)HK`YU5{PkgլBA/y/)wL'w&6!cN4 Cz8d߶^ܹwx!}1I2 OF_6fz! nP' NW/nYb'KNOo߶quMu5`bE}0>g[8lk_uN[ 82g=ͪGK&,VM\;Ae@0sRP%]r1|7J!7uoo$O:fF("c-M~;EBt-IN%d 柁NpXt xH|Y E=n=u#p#۹D,u=7emܣ8ԡWW!⴫ }}<oFڰ7=b֐̄Sm}bk=u?jǕHYWNxz:$ًݞi˼e`DTA^&! s b@ 5-bF>4^rEMؘ!uHR7[L נ@b:쭄l(؂,ş5Ƌ:|llIhnjر O3^Q$Yfa ۊʈ0:tyN]ʼb-Ӂ&]`7G!K"**zSa`GČ{'ٝM A#kV7ݱ3'O\B xhI?^`#z!њ&;ëΘܡ @\SOIɰBϵ6 &$ kXM?b41g%V~=/ VHj%{׋_.[Ԝ "VWY;":w%H_6|Tc;t ^\n<.??Ű::!"#_aUÕ.z:y%joE ez`cG>nWPRxk4p6yӿ38(c]4?PKV$R&0bV%category/2020-12-30-5fec18aaac934.pnggPS[ǃp4H^ UZ@wEET)" z'BPzIB1DPBBwxq޷ͼ79{뜵[{NeV~Vp 4~;#U%_}W߃!]4Υ=܋7χ4X5XddX-_TCi]NEJ] ̤ɁfbhubZrM0xQ{CM+c+LܡGT(9`F/p6S ,^2èҠ|5SU꫗},,-:::fz5/݈~URRbvkrf7! (3FM0}2֭ٓ;;y A3JQ6I[{;wb |FBYlݽ=T\'(tO( H' 3xgB"w\n:œ0z6>^B)}ft륤j5.Jsrܓ5lkX׫yX.8|1`x[p<_Ԭ}\Y撸A&s͛7w~`æ52_ 6 㗖/^ry#+/Ϳ @@64)V#_ơP@Lnbg7}*j aj"v>v.foi푱1$m7&S(iۙ}tiꬫ}Id #lq827Q>.퓓DXh^Ƀ%p8ek捆Fgg'lK`LII/Y@&GZ#nSVVv*tis vE~F2'66;'GkNW'.FÇՏ@zĎ:'07ww۷ $2GDHAPyM[QQ "33}>ԑ+ǸYiiv->5~/##R^uh~|4[zw'.:'GI]Qk-%<[j/?  Fu >+ M9CR^qڔ5%w-sEm|}V ˠdce\v:Dyb-Z7»bYJn49 z73 :X>t!@pc)fu؅ylWj4T@UoSJ:?rjt(|I>(v]Ue0$$!đ^d#P4*oD͘/ZܙkWYa=}`oMުQfFI*< jr9@ Eϑ[G#fXYD%ԍ^](vJ<*H ePN&{^|'+72X .c#nO>BtґkQ>scHD w%O4g#0p/ʛ=M$:d m~z?/wr)>tA=~R?[;>/%ٌa1+X6v,t ;F70 Z->DW;ml7KVhFbCW|J|JrGUW&э8?*} *ӄ Bj+pwFP?Ӌj:9]‡tl+b>TpŏJ tVKT/g 85Tm:|E22rG nF/^&~b4I[c]W׽4=Fgp` twRέ}b:e+AD0mr>i=Yb2*Ei'd60l,R%H vOeaa**h|QF8-%ZrX/kڼدeF@Yz<_eKW)` (DlS`bsf q>oCWBVYKUܘ=FWQ&0cY'.e|`O{Bh>-ЃB; JO텒E}C%uM>>S."B9fQ^<( 6? #Ezy)#&v#`m'GPium?MvLOQ/|wuOVV2nJ0 ԰}?7ҎǓFOy=߳|2lwMSWC(s`b$uCe#k 6(βO1yFӸ2 ;U"GV4V,J[p"K.ҕ^^]#':U1Oe#ʂG za\i˾W溑Ɩw*߬sw5|cᰟI%C6v'Ƶ+ԵĢ${RIF- }w^hcY/& _+Lc(U:]dC̐+HCNʿi$BclE[*cH ^M4 GegSPjDP,Q[ R0|K%]pS!꥛E5yOzc!ɅqT"CmS{ kfl]h9h>{>߅K=]¾KeNC[r'F;sA jj&gku10nl.:)HK`YU5{PkgլBA/y/)wL'w&6!cN4 Cz8d߶^ܹwx!}1I2 OF_6fz! nP' NW/nYb'KNOo߶quMu5`bE}0>g[8lk_uN[ 82g=ͪGK&,VM\;Ae@0sRP%]r1|7J!7uoo$O:fF("c-M~;EBt-IN%d 柁NpXt xH|Y E=n=u#p#۹D,u=7emܣ8ԡWW!⴫ }}<oFڰ7=b֐̄Sm}bk=u?jǕHYWNxz:$ًݞi˼e`DTA^&! s b@ 5-bF>4^rEMؘ!uHR7[L נ@b:쭄l(؂,ş5Ƌ:|llIhnjر O3^Q$Yfa ۊʈ0:tyN]ʼb-Ӂ&]`7G!K"**zSa`GČ{'ٝM A#kV7ݱ3'O\B xhI?^`#z!њ&;ëΘܡ @\SOIɰBϵ6 &$ kXM?b41g%V~=/ VHj%{׋_.[Ԝ "VWY;":w%H_6|Tc;t ^\n<.??Ű::!"#_aUÕ.z:y%joE ez`cG>nWPRxk4p6yӿ38(c]4?PKV$R&0bV%category/2020-12-30-5fec18c05a123.pnggPS[ǃp4H^ UZ@wEET)" z'BPzIB1DPBBwxq޷ͼ79{뜵[{NeV~Vp 4~;#U%_}W߃!]4Υ=܋7χ4X5XddX-_TCi]NEJ] ̤ɁfbhubZrM0xQ{CM+c+LܡGT(9`F/p6S ,^2èҠ|5SU꫗},,-:::fz5/݈~URRbvkrf7! (3FM0}2֭ٓ;;y A3JQ6I[{;wb |FBYlݽ=T\'(tO( H' 3xgB"w\n:œ0z6>^B)}ft륤j5.Jsrܓ5lkX׫yX.8|1`x[p<_Ԭ}\Y撸A&s͛7w~`æ52_ 6 㗖/^ry#+/Ϳ @@64)V#_ơP@Lnbg7}*j aj"v>v.foi푱1$m7&S(iۙ}tiꬫ}Id #lq827Q>.퓓DXh^Ƀ%p8ek捆Fgg'lK`LII/Y@&GZ#nSVVv*tis vE~F2'66;'GkNW'.FÇՏ@zĎ:'07ww۷ $2GDHAPyM[QQ "33}>ԑ+ǸYiiv->5~/##R^uh~|4[zw'.:'GI]Qk-%<[j/?  Fu >+ M9CR^qڔ5%w-sEm|}V ˠdce\v:Dyb-Z7»bYJn49 z73 :X>t!@pc)fu؅ylWj4T@UoSJ:?rjt(|I>(v]Ue0$$!đ^d#P4*oD͘/ZܙkWYa=}`oMުQfFI*< jr9@ Eϑ[G#fXYD%ԍ^](vJ<*H ePN&{^|'+72X .c#nO>BtґkQ>scHD w%O4g#0p/ʛ=M$:d m~z?/wr)>tA=~R?[;>/%ٌa1+X6v,t ;F70 Z->DW;ml7KVhFbCW|J|JrGUW&э8?*} *ӄ Bj+pwFP?Ӌj:9]‡tl+b>TpŏJ tVKT/g 85Tm:|E22rG nF/^&~b4I[c]W׽4=Fgp` twRέ}b:e+AD0mr>i=Yb2*Ei'd60l,R%H vOeaa**h|QF8-%ZrX/kڼدeF@Yz<_eKW)` (DlS`bsf q>oCWBVYKUܘ=FWQ&0cY'.e|`O{Bh>-ЃB; JO텒E}C%uM>>S."B9fQ^<( 6? #Ezy)#&v#`m'GPium?MvLOQ/|wuOVV2nJ0 ԰}?7ҎǓFOy=߳|2lwMSWC(s`b$uCe#k 6(βO1yFӸ2 ;U"GV4V,J[p"K.ҕ^^]#':U1Oe#ʂG za\i˾W溑Ɩw*߬sw5|cᰟI%C6v'Ƶ+ԵĢ${RIF- }w^hcY/& _+Lc(U:]dC̐+HCNʿi$BclE[*cH ^M4 GegSPjDP,Q[ R0|K%]pS!꥛E5yOzc!ɅqT"CmS{ kfl]h9h>{>߅K=]¾KeNC[r'F;sA jj&gku10nl.:)HK`YU5{PkgլBA/y/)wL'w&6!cN4 Cz8d߶^ܹwx!}1I2 OF_6fz! nP' NW/nYb'KNOo߶quMu5`bE}0>g[8lk_uN[ 82g=ͪGK&,VM\;Ae@0sRP%]r1|7J!7uoo$O:fF("c-M~;EBt-IN%d 柁NpXt xH|Y E=n=u#p#۹D,u=7emܣ8ԡWW!⴫ }}<oFڰ7=b֐̄Sm}bk=u?jǕHYWNxz:$ًݞi˼e`DTA^&! s b@ 5-bF>4^rEMؘ!uHR7[L נ@b:쭄l(؂,ş5Ƌ:|llIhnjر O3^Q$Yfa ۊʈ0:tyN]ʼb-Ӂ&]`7G!K"**zSa`GČ{'ٝM A#kV7ݱ3'O\B xhI?^`#z!њ&;ëΘܡ @\SOIɰBϵ6 &$ kXM?b41g%V~=/ VHj%{׋_.[Ԝ "VWY;":w%H_6|Tc;t ^\n<.??Ű::!"#_aUÕ.z:y%joE ez`cG>nWPRxk4p6yӿ38(c]4?PKV$R&0bV%category/2020-12-30-5fec18efbc290.pnggPS[ǃp4H^ UZ@wEET)" z'BPzIB1DPBBwxq޷ͼ79{뜵[{NeV~Vp 4~;#U%_}W߃!]4Υ=܋7χ4X5XddX-_TCi]NEJ] ̤ɁfbhubZrM0xQ{CM+c+LܡGT(9`F/p6S ,^2èҠ|5SU꫗},,-:::fz5/݈~URRbvkrf7! (3FM0}2֭ٓ;;y A3JQ6I[{;wb |FBYlݽ=T\'(tO( H' 3xgB"w\n:œ0z6>^B)}ft륤j5.Jsrܓ5lkX׫yX.8|1`x[p<_Ԭ}\Y撸A&s͛7w~`æ52_ 6 㗖/^ry#+/Ϳ @@64)V#_ơP@Lnbg7}*j aj"v>v.foi푱1$m7&S(iۙ}tiꬫ}Id #lq827Q>.퓓DXh^Ƀ%p8ek捆Fgg'lK`LII/Y@&GZ#nSVVv*tis vE~F2'66;'GkNW'.FÇՏ@zĎ:'07ww۷ $2GDHAPyM[QQ "33}>ԑ+ǸYiiv->5~/##R^uh~|4[zw'.:'GI]Qk-%<[j/?  Fu >+ M9CR^qڔ5%w-sEm|}V ˠdce\v:Dyb-Z7»bYJn49 z73 :X>t!@pc)fu؅ylWj4T@UoSJ:?rjt(|I>(v]Ue0$$!đ^d#P4*oD͘/ZܙkWYa=}`oMުQfFI*< jr9@ Eϑ[G#fXYD%ԍ^](vJ<*H ePN&{^|'+72X .c#nO>BtґkQ>scHD w%O4g#0p/ʛ=M$:d m~z?/wr)>tA=~R?[;>/%ٌa1+X6v,t ;F70 Z->DW;ml7KVhFbCW|J|JrGUW&э8?*} *ӄ Bj+pwFP?Ӌj:9]‡tl+b>TpŏJ tVKT/g 85Tm:|E22rG nF/^&~b4I[c]W׽4=Fgp` twRέ}b:e+AD0mr>i=Yb2*Ei'd60l,R%H vOeaa**h|QF8-%ZrX/kڼدeF@Yz<_eKW)` (DlS`bsf q>oCWBVYKUܘ=FWQ&0cY'.e|`O{Bh>-ЃB; JO텒E}C%uM>>S."B9fQ^<( 6? #Ezy)#&v#`m'GPium?MvLOQ/|wuOVV2nJ0 ԰}?7ҎǓFOy=߳|2lwMSWC(s`b$uCe#k 6(βO1yFӸ2 ;U"GV4V,J[p"K.ҕ^^]#':U1Oe#ʂG za\i˾W溑Ɩw*߬sw5|cᰟI%C6v'Ƶ+ԵĢ${RIF- }w^hcY/& _+Lc(U:]dC̐+HCNʿi$BclE[*cH ^M4 GegSPjDP,Q[ R0|K%]pS!꥛E5yOzc!ɅqT"CmS{ kfl]h9h>{>߅K=]¾KeNC[r'F;sA jj&gku10nl.:)HK`YU5{PkgլBA/y/)wL'w&6!cN4 Cz8d߶^ܹwx!}1I2 OF_6fz! nP' NW/nYb'KNOo߶quMu5`bE}0>g[8lk_uN[ 82g=ͪGK&,VM\;Ae@0sRP%]r1|7J!7uoo$O:fF("c-M~;EBt-IN%d 柁NpXt xH|Y E=n=u#p#۹D,u=7emܣ8ԡWW!⴫ }}<oFڰ7=b֐̄Sm}bk=u?jǕHYWNxz:$ًݞi˼e`DTA^&! s b@ 5-bF>4^rEMؘ!uHR7[L נ@b:쭄l(؂,ş5Ƌ:|llIhnjر O3^Q$Yfa ۊʈ0:tyN]ʼb-Ӂ&]`7G!K"**zSa`GČ{'ٝM A#kV7ݱ3'O\B xhI?^`#z!њ&;ëΘܡ @\SOIɰBϵ6 &$ kXM?b41g%V~=/ VHj%{׋_.[Ԝ "VWY;":w%H_6|Tc;t ^\n<.??Ű::!"#_aUÕ.z:y%joE ez`cG>nWPRxk4p6yӿ38(c]4?PK V$Rbrand/PKV$R7?"brand/2020-12-30-5fec15e19fceb.png{wTS۷;vAE"X齄BCދS wAreSލ `|&o ]RIwg EnX~WՖq6~&:zށH>IWlc6mFPIf7U ^bێhq.[C#cH ^{Oq>\ 5k Ml#Ybf g̱Emqˇӑ=e}Jp>J&ʵO:UKw=CԠ{]rNO}Dr l^(ЃF)j,Lg-_𾄇  nb)$y][\&J:,y f)$՜wɉYuZ) gS[|Sa|&L2pQل3NNVp}) h͖Ղq!0wlK3O85o3yzIMvOOO;7 etE2lfہTa7h X-r6*"\Ja zsC!DUi&3˾ᶘs +2 Um NypN+_zh *꠫q@\vsf@0kz艊P8RΫ/rcCA0p_jcS\JzALس/Phȝ{u Hr A"S33sG):{6qR(Ggv][0/ȋcy< mWIyʵgֿ0}߿,r~jM87 \Ű+yܪ6O߽{58|>&JZM`U×sTs:O8=;ummէ ? ;!|Cwa] qi~/RJg^b4B(*zw!MWyFnAOw}L GA_ٻ[ZX(po8+*߾}K-P7)A:HƐ'DRn3TbfbDVш](^{3]oRkѮ`vAO@Th&OX F9Sf*0ƓnsA% L0@ >}˪wL!$N/}^8KR(F{߻ +nypFQENnVcO:UZossw TxUki {T-PO{_SEd yqa&X6G oU67MC&CNc %j?fAƒUɰ ɜ[s|]6D6h98ܰ`G!F Ci.ϘfCE6D}K}HwM|g0#8 f]^@U<&-(пP\~dyaBK_L53I@MlA12h@`;e.V+OR^1DX711 @O-+v%Ԡ`[@Aku{O@{96XS~@>Ph58X; Q2swĮȭ oM(+_`~%J][ B4uQ.eL=µ>N.%%e 4y3۔fw^TU]rttTиLu\b_ 9A8 {`1AԎd"X+c %5JRnyL@/]>:S&`@or<^H44` :z8ĸ&XWL#Ҵ~D~ \ԩ‚naa_2̠/u rЁAAմI7rKZPP`߾ϗx o6ېK)'@ ,FHپQۅ|NNj^"ְ\I; Z[̌74K63.ݗm\\Jg\Ϳ]wf?|X&0 O0g;G!`$H1-I&k`e<&5ojqȖSO_=q u j:Nj x q B}w7FH2j@Y?o~ao:l6*,MSӬ?ot?.[ LGUT9mhDpjHt@U=I?0;cuvvr@vC{<7F"pf=bXΝ``{fgSh'<^݀b>uh"UE󀾰V,nFX~q1D9'Oi 010GрL𫶋"Aq_= idf)k9cE8(NKV!- y= ;\ G>_T<6NM2.f%fwBf77݃'9r6B ݥc_8:*с Q̞"rFڤ{9oINV}Eit@;{[mb8Q0*Bhͅ>Ȇ-0~"\Z!Ss l~Ag5 Ǎ~Z-mb v?5'>@99sFM+(7F kw\ L gNPڞG4(}}e S!ܟ +?Jo^j) 54ç0uՍzk^R8QA鑝lFb~>Y 0={41AMOM]\ @BLTSS Y]0}%ׁؑ=ʰ*&'[߬OֹΑ$L<4#lꌳ0.xqgl|aw. jGAه|.(ܴKraơ g@LUḦ'$? |*=Cw@Pb@pc%۴ކ!ٽʡ3.Y0>}#nrXY'DsۙF@ӏp$Wfl ӿ濫|\lW.ׅce",G !TIS E]|۞_0j\շiik7H8wWUEک +<풄>k&LM`xFâe#?ה23 fC9sZ =9#Z`}b,dD횇V~)gp0Ϥ^C @_98vضɨw­g+6Zd@Åуv0TdϰagKՈ]\\T}ī]6j 2.& 'BW-,cF}\z8{MTy+mrB0jF׷֚r+z/'L.{SMrN#aPY?ZXZv@anF %?O +?-Q"?7)jS -@ v\vfFzuA3qiRs>s(!S!~V< oGmYmǏ9");7o_ILm]g7uso34KBOz^=R퇾 }3i .;b<O\_hnU^jFȫ*zaeQ@$űt*[;xz~U֙t U[ϰ,xЯLj̐ow@˦kO{T$M5͓̃weVt\rb1XJ7q P@0~Jth]E[u*#Lɝe6{?c;)k.{VCR1V)n|팟nݩDW )R6lehȪ6xyiuLp-zͮLT2iҲJ6yy$?40$~.AG . 4pZcСvئVQ)]qla+zoɜa*0:2,@2tWЖ@=+ ?=Cw+pA$%eg(%P[介[=V?Fmen(/Dl c:Nrխ^j5s;B?H'돹,?ݎ7!”a>zל_ѧ4%W`Hs'Qr?sf(a>d1,P8yy[X¸c/a&>ɷB[XVx(gZ\zoNH5;4&wua+1T_5fn_xS^`T/_I/CH<}KIBT63=d%Llp#HĜ;feRvˬP9n*Iyơ8_ĸT,VRF`}2'ڕtna;. x^dA/M&S ͘@ fo~]kj1t'ugػJ;@tbLD=Uݭ:Z;f ju'o1x 2/K|oi8O k}<3d|oQ0G"~fئ_5aO+h`,_J]ZLR$굦푵m'I0.16tW+ڶj+s~VL̈G7<@oIɨGaQ udkjޡ~0eS})4/lOsK&KUhEv}mc5T .pFL9砧ڽ;[{x꥔Y)`}1kLE˨ڼi&"2ejawI&<-}I߶;C76#?OqVUE{p?L* ~v 3v`}<cJ=,lFC4GιU9YK;ȱ,A\sV2;IZt0F<$hNVJ$nK?gn204Jwfk^3_j %Bn^PeoD+3w#3>QēZ+L;\ )̖ R=|~{q!wWE.&;M$";/|^ ׫/X]͔/0GvMJc dv*КT4Kn}/[-7bi)˂sFЅ۬IV8hܠ Ui$on4ir//X <My=ZUK~f5ޘ/!ک.W/2Іz.tNG\ꙕuwiȠͷBy5A'*5"6kFsq|XLu>@hxyoWo0Jٰ51y;;5-:1";=FJIʲlYLK]7J-p\H :Q7i>ѷږln̊Яc~'10ttBcCcIA|Aɀ¢7;3]F)}1JzQѮ{D.&j!d5=:۬-Gl:-MXA<{>#YM;c1Ik4'7@+m<!ߩ䬗+"|xmU&,T:RS8+j)*=r?Չ8F C쟞ݍ~_a~P=i0@Wۚ15M4L \J2<)KhY ? ܜxR5=kn;it/1vhnKQ_lw?70,TTUE)/x8.6m H2ZufC?\@"x& }sBa#ZdVQgOaz)*9517wWC~3&Kb]ma[Ki:Y.'5hobNwt9oLo_輻!V ܰ5'7RD4"^da2;6^q[n(ѭt|]I_tH@ѻoXNIY!AD  r|gߪ }XCBե!%vpNܝP'!,x,%?Yt79^*5^NHD-?ZR1wrX`'@Iֽz(wZܿ0:y"mOJ͹ :%N&+=Ir'Uq˰a D;lwyMZH\jK`\Τk0ES)_p Ӟ1VZȱDw;bҿ_+YMfX+nu(~{4l[?+yӝmCNvsO躡=N/f4AA0  ƦvVaYBKBВf s'aZ_%;^J9QKB3&b$y'}j]}3]QsFuWR Q{m?^re8k,Vg|*Ap3/q߳~F])7f{7uN,"SSFvk*ęͧ}+7usȂy#`6/+W *p70@չ | '&ZjDnӛI۴{:,Ɯ3%DDկʼTbZDw̏DLLMp6U,0]2ߍz%xX~a+W;nSQ1^9w_~kÈ+sbf{eΡRAJ7WJ'9%3B^_*ˉ)2ٯ\xt)E_sn5Q7*n<-s !kVt)y=o,E"eA2JF7WzV٬/K}bM| f]7h.JG䕌.Ҩg}~4@ιu&~uI0b^9 X;"E?t #w9_UΤFD7Tׯ%6 T|ll\fѮ2-pz.u|&q;߯[[٬9׸.-? M= 2N Պ!M>S oԻщG*[bQj#ˑzWOjlYk6Y#U䜯R9?UI٬*~\L'tII'nֵ]Hkbq#vInji*2<[l ,Ƨ =_ۊqZ, 7( {rTrT +/{w%j1RhXHnA(V2ITRY|lVZx!0Hṽs=зE4of$o:<1n)2sKޯǣ}&ds3ڡnzL{F~fs[ B^x#LTGtjF'C)k[Ѷqy _/X~tN9u;#0LzqSW>t&'}{g>B+}ICܡ1rfIx:=sf4ˌb/+24QO'8Ԛ#߮ga{ o.QHt*VS(ù{\h,#LCquhDKA-2ɫ|S}؎,,k+Q=Jma"G9]Rbݕ&`Ol֢.,;20/)(5ICtfHtpq,U[Ri#K*&4bzBz>\++?&Ƶ_w& & v!Igkt- Al2j &rEoBL, xB:\}{stKt)1\4E/Z}yDŽJ #[ Z"ysSݱ3_߻%%2\ۃ|)Ĵ0HT\PL̃a~-*# T\Yycq"30^d֎'"]:?Z%8d6O+!,!q|/#%(m"xpΠK#˦٦>`̰5 ViUsbc;`@aLn&k [sBnlcSmm3kk.%1  K~|aϪLnד gI_mn+z寙f2[iF>EdL|+!-@b ,}emkCn'C0UI<ľo77.]҇7jC/F׶r㪡)]k(E_Kz5Kr؃_DX,;=nes0dfwSC쪀(9}Z{&V913W|mx@ai2CI8ؼlhzӲ3=7g>|YwT^<{ëو3?=*r@e~ɬ'?bX;d:܌ԺH9bb3cPnO~R.] $PݼTEɪŶK32Ë<wYeuP=gf? "yDUQI~rr֬чd—'+/nB = W},~0^m޶a> 4F4y"%Ryo goJJjKcJKt_s~N(NnO(wK}qYmP^zf3F]l`дX- ll@҂g#ڐuÕ]\_ޮeႛUY6>D}.8g9 ?^Z9}Oxv̏ R[}Kz'whXjf$TT?q ˒`-mJ.Wq{Hb=Ev-("sY_U/aks]5kIكUjB~yZػ4!_kv6ke~`#|Z2 ה ),)t-zZ9k;Aw(LP荾;&1+zIIjj!CVr;XiqMRDR{^=~zK.r&4fY|0渤[%Zr;WX"Ĺͳwx2mZD#: ~{ve$*9qVպHVP"[Zj #P=O/h55l 9ڡ[MyXuqǃCfQK=pz}z+_&q[&ov[/=Kw<##>HV3"O-_iES`/s>i ^PKV$R7?"brand/2020-12-30-5fec15f740b6e.png{wTS۷;vAE"X齄BCދS wAreSލ `|&o ]RIwg EnX~WՖq6~&:zށH>IWlc6mFPIf7U ^bێhq.[C#cH ^{Oq>\ 5k Ml#Ybf g̱Emqˇӑ=e}Jp>J&ʵO:UKw=CԠ{]rNO}Dr l^(ЃF)j,Lg-_𾄇  nb)$y][\&J:,y f)$՜wɉYuZ) gS[|Sa|&L2pQل3NNVp}) h͖Ղq!0wlK3O85o3yzIMvOOO;7 etE2lfہTa7h X-r6*"\Ja zsC!DUi&3˾ᶘs +2 Um NypN+_zh *꠫q@\vsf@0kz艊P8RΫ/rcCA0p_jcS\JzALس/Phȝ{u Hr A"S33sG):{6qR(Ggv][0/ȋcy< mWIyʵgֿ0}߿,r~jM87 \Ű+yܪ6O߽{58|>&JZM`U×sTs:O8=;ummէ ? ;!|Cwa] qi~/RJg^b4B(*zw!MWyFnAOw}L GA_ٻ[ZX(po8+*߾}K-P7)A:HƐ'DRn3TbfbDVш](^{3]oRkѮ`vAO@Th&OX F9Sf*0ƓnsA% L0@ >}˪wL!$N/}^8KR(F{߻ +nypFQENnVcO:UZossw TxUki {T-PO{_SEd yqa&X6G oU67MC&CNc %j?fAƒUɰ ɜ[s|]6D6h98ܰ`G!F Ci.ϘfCE6D}K}HwM|g0#8 f]^@U<&-(пP\~dyaBK_L53I@MlA12h@`;e.V+OR^1DX711 @O-+v%Ԡ`[@Aku{O@{96XS~@>Ph58X; Q2swĮȭ oM(+_`~%J][ B4uQ.eL=µ>N.%%e 4y3۔fw^TU]rttTиLu\b_ 9A8 {`1AԎd"X+c %5JRnyL@/]>:S&`@or<^H44` :z8ĸ&XWL#Ҵ~D~ \ԩ‚naa_2̠/u rЁAAմI7rKZPP`߾ϗx o6ېK)'@ ,FHپQۅ|NNj^"ְ\I; Z[̌74K63.ݗm\\Jg\Ϳ]wf?|X&0 O0g;G!`$H1-I&k`e<&5ojqȖSO_=q u j:Nj x q B}w7FH2j@Y?o~ao:l6*,MSӬ?ot?.[ LGUT9mhDpjHt@U=I?0;cuvvr@vC{<7F"pf=bXΝ``{fgSh'<^݀b>uh"UE󀾰V,nFX~q1D9'Oi 010GрL𫶋"Aq_= idf)k9cE8(NKV!- y= ;\ G>_T<6NM2.f%fwBf77݃'9r6B ݥc_8:*с Q̞"rFڤ{9oINV}Eit@;{[mb8Q0*Bhͅ>Ȇ-0~"\Z!Ss l~Ag5 Ǎ~Z-mb v?5'>@99sFM+(7F kw\ L gNPڞG4(}}e S!ܟ +?Jo^j) 54ç0uՍzk^R8QA鑝lFb~>Y 0={41AMOM]\ @BLTSS Y]0}%ׁؑ=ʰ*&'[߬OֹΑ$L<4#lꌳ0.xqgl|aw. jGAه|.(ܴKraơ g@LUḦ'$? |*=Cw@Pb@pc%۴ކ!ٽʡ3.Y0>}#nrXY'DsۙF@ӏp$Wfl ӿ濫|\lW.ׅce",G !TIS E]|۞_0j\շiik7H8wWUEک +<풄>k&LM`xFâe#?ה23 fC9sZ =9#Z`}b,dD횇V~)gp0Ϥ^C @_98vضɨw­g+6Zd@Åуv0TdϰagKՈ]\\T}ī]6j 2.& 'BW-,cF}\z8{MTy+mrB0jF׷֚r+z/'L.{SMrN#aPY?ZXZv@anF %?O +?-Q"?7)jS -@ v\vfFzuA3qiRs>s(!S!~V< oGmYmǏ9");7o_ILm]g7uso34KBOz^=R퇾 }3i .;b<O\_hnU^jFȫ*zaeQ@$űt*[;xz~U֙t U[ϰ,xЯLj̐ow@˦kO{T$M5͓̃weVt\rb1XJ7q P@0~Jth]E[u*#Lɝe6{?c;)k.{VCR1V)n|팟nݩDW )R6lehȪ6xyiuLp-zͮLT2iҲJ6yy$?40$~.AG . 4pZcСvئVQ)]qla+zoɜa*0:2,@2tWЖ@=+ ?=Cw+pA$%eg(%P[介[=V?Fmen(/Dl c:Nrխ^j5s;B?H'돹,?ݎ7!”a>zל_ѧ4%W`Hs'Qr?sf(a>d1,P8yy[X¸c/a&>ɷB[XVx(gZ\zoNH5;4&wua+1T_5fn_xS^`T/_I/CH<}KIBT63=d%Llp#HĜ;feRvˬP9n*Iyơ8_ĸT,VRF`}2'ڕtna;. x^dA/M&S ͘@ fo~]kj1t'ugػJ;@tbLD=Uݭ:Z;f ju'o1x 2/K|oi8O k}<3d|oQ0G"~fئ_5aO+h`,_J]ZLR$굦푵m'I0.16tW+ڶj+s~VL̈G7<@oIɨGaQ udkjޡ~0eS})4/lOsK&KUhEv}mc5T .pFL9砧ڽ;[{x꥔Y)`}1kLE˨ڼi&"2ejawI&<-}I߶;C76#?OqVUE{p?L* ~v 3v`}<cJ=,lFC4GιU9YK;ȱ,A\sV2;IZt0F<$hNVJ$nK?gn204Jwfk^3_j %Bn^PeoD+3w#3>QēZ+L;\ )̖ R=|~{q!wWE.&;M$";/|^ ׫/X]͔/0GvMJc dv*КT4Kn}/[-7bi)˂sFЅ۬IV8hܠ Ui$on4ir//X <My=ZUK~f5ޘ/!ک.W/2Іz.tNG\ꙕuwiȠͷBy5A'*5"6kFsq|XLu>@hxyoWo0Jٰ51y;;5-:1";=FJIʲlYLK]7J-p\H :Q7i>ѷږln̊Яc~'10ttBcCcIA|Aɀ¢7;3]F)}1JzQѮ{D.&j!d5=:۬-Gl:-MXA<{>#YM;c1Ik4'7@+m<!ߩ䬗+"|xmU&,T:RS8+j)*=r?Չ8F C쟞ݍ~_a~P=i0@Wۚ15M4L \J2<)KhY ? ܜxR5=kn;it/1vhnKQ_lw?70,TTUE)/x8.6m H2ZufC?\@"x& }sBa#ZdVQgOaz)*9517wWC~3&Kb]ma[Ki:Y.'5hobNwt9oLo_輻!V ܰ5'7RD4"^da2;6^q[n(ѭt|]I_tH@ѻoXNIY!AD  r|gߪ }XCBե!%vpNܝP'!,x,%?Yt79^*5^NHD-?ZR1wrX`'@Iֽz(wZܿ0:y"mOJ͹ :%N&+=Ir'Uq˰a D;lwyMZH\jK`\Τk0ES)_p Ӟ1VZȱDw;bҿ_+YMfX+nu(~{4l[?+yӝmCNvsO躡=N/f4AA0  ƦvVaYBKBВf s'aZ_%;^J9QKB3&b$y'}j]}3]QsFuWR Q{m?^re8k,Vg|*Ap3/q߳~F])7f{7uN,"SSFvk*ęͧ}+7usȂy#`6/+W *p70@չ | '&ZjDnӛI۴{:,Ɯ3%DDկʼTbZDw̏DLLMp6U,0]2ߍz%xX~a+W;nSQ1^9w_~kÈ+sbf{eΡRAJ7WJ'9%3B^_*ˉ)2ٯ\xt)E_sn5Q7*n<-s !kVt)y=o,E"eA2JF7WzV٬/K}bM| f]7h.JG䕌.Ҩg}~4@ιu&~uI0b^9 X;"E?t #w9_UΤFD7Tׯ%6 T|ll\fѮ2-pz.u|&q;߯[[٬9׸.-? M= 2N Պ!M>S oԻщG*[bQj#ˑzWOjlYk6Y#U䜯R9?UI٬*~\L'tII'nֵ]Hkbq#vInji*2<[l ,Ƨ =_ۊqZ, 7( {rTrT +/{w%j1RhXHnA(V2ITRY|lVZx!0Hṽs=зE4of$o:<1n)2sKޯǣ}&ds3ڡnzL{F~fs[ B^x#LTGtjF'C)k[Ѷqy _/X~tN9u;#0LzqSW>t&'}{g>B+}ICܡ1rfIx:=sf4ˌb/+24QO'8Ԛ#߮ga{ o.QHt*VS(ù{\h,#LCquhDKA-2ɫ|S}؎,,k+Q=Jma"G9]Rbݕ&`Ol֢.,;20/)(5ICtfHtpq,U[Ri#K*&4bzBz>\++?&Ƶ_w& & v!Igkt- Al2j &rEoBL, xB:\}{stKt)1\4E/Z}yDŽJ #[ Z"ysSݱ3_߻%%2\ۃ|)Ĵ0HT\PL̃a~-*# T\Yycq"30^d֎'"]:?Z%8d6O+!,!q|/#%(m"xpΠK#˦٦>`̰5 ViUsbc;`@aLn&k [sBnlcSmm3kk.%1  K~|aϪLnד gI_mn+z寙f2[iF>EdL|+!-@b ,}emkCn'C0UI<ľo77.]҇7jC/F׶r㪡)]k(E_Kz5Kr؃_DX,;=nes0dfwSC쪀(9}Z{&V913W|mx@ai2CI8ؼlhzӲ3=7g>|YwT^<{ëو3?=*r@e~ɬ'?bX;d:܌ԺH9bb3cPnO~R.] $PݼTEɪŶK32Ë<wYeuP=gf? "yDUQI~rr֬чd—'+/nB = W},~0^m޶a> 4F4y"%Ryo goJJjKcJKt_s~N(NnO(wK}qYmP^zf3F]l`дX- ll@҂g#ڐuÕ]\_ޮeႛUY6>D}.8g9 ?^Z9}Oxv̏ R[}Kz'whXjf$TT?q ˒`-mJ.Wq{Hb=Ev-("sY_U/aks]5kIكUjB~yZػ4!_kv6ke~`#|Z2 ה ),)t-zZ9k;Aw(LP荾;&1+zIIjj!CVr;XiqMRDR{^=~zK.r&4fY|0渤[%Zr;WX"Ĺͳwx2mZD#: ~{ve$*9qVպHVP"[Zj #P=O/h55l 9ڡ[MyXuqǃCfQK=pz}z+_&q[&ov[/=Kw<##>HV3"O-_iES`/s>i ^PKV$R7?"brand/2020-12-30-5fec16070716c.png{wTS۷;vAE"X齄BCދS wAreSލ `|&o ]RIwg EnX~WՖq6~&:zށH>IWlc6mFPIf7U ^bێhq.[C#cH ^{Oq>\ 5k Ml#Ybf g̱Emqˇӑ=e}Jp>J&ʵO:UKw=CԠ{]rNO}Dr l^(ЃF)j,Lg-_𾄇  nb)$y][\&J:,y f)$՜wɉYuZ) gS[|Sa|&L2pQل3NNVp}) h͖Ղq!0wlK3O85o3yzIMvOOO;7 etE2lfہTa7h X-r6*"\Ja zsC!DUi&3˾ᶘs +2 Um NypN+_zh *꠫q@\vsf@0kz艊P8RΫ/rcCA0p_jcS\JzALس/Phȝ{u Hr A"S33sG):{6qR(Ggv][0/ȋcy< mWIyʵgֿ0}߿,r~jM87 \Ű+yܪ6O߽{58|>&JZM`U×sTs:O8=;ummէ ? ;!|Cwa] qi~/RJg^b4B(*zw!MWyFnAOw}L GA_ٻ[ZX(po8+*߾}K-P7)A:HƐ'DRn3TbfbDVш](^{3]oRkѮ`vAO@Th&OX F9Sf*0ƓnsA% L0@ >}˪wL!$N/}^8KR(F{߻ +nypFQENnVcO:UZossw TxUki {T-PO{_SEd yqa&X6G oU67MC&CNc %j?fAƒUɰ ɜ[s|]6D6h98ܰ`G!F Ci.ϘfCE6D}K}HwM|g0#8 f]^@U<&-(пP\~dyaBK_L53I@MlA12h@`;e.V+OR^1DX711 @O-+v%Ԡ`[@Aku{O@{96XS~@>Ph58X; Q2swĮȭ oM(+_`~%J][ B4uQ.eL=µ>N.%%e 4y3۔fw^TU]rttTиLu\b_ 9A8 {`1AԎd"X+c %5JRnyL@/]>:S&`@or<^H44` :z8ĸ&XWL#Ҵ~D~ \ԩ‚naa_2̠/u rЁAAմI7rKZPP`߾ϗx o6ېK)'@ ,FHپQۅ|NNj^"ְ\I; Z[̌74K63.ݗm\\Jg\Ϳ]wf?|X&0 O0g;G!`$H1-I&k`e<&5ojqȖSO_=q u j:Nj x q B}w7FH2j@Y?o~ao:l6*,MSӬ?ot?.[ LGUT9mhDpjHt@U=I?0;cuvvr@vC{<7F"pf=bXΝ``{fgSh'<^݀b>uh"UE󀾰V,nFX~q1D9'Oi 010GрL𫶋"Aq_= idf)k9cE8(NKV!- y= ;\ G>_T<6NM2.f%fwBf77݃'9r6B ݥc_8:*с Q̞"rFڤ{9oINV}Eit@;{[mb8Q0*Bhͅ>Ȇ-0~"\Z!Ss l~Ag5 Ǎ~Z-mb v?5'>@99sFM+(7F kw\ L gNPڞG4(}}e S!ܟ +?Jo^j) 54ç0uՍzk^R8QA鑝lFb~>Y 0={41AMOM]\ @BLTSS Y]0}%ׁؑ=ʰ*&'[߬OֹΑ$L<4#lꌳ0.xqgl|aw. jGAه|.(ܴKraơ g@LUḦ'$? |*=Cw@Pb@pc%۴ކ!ٽʡ3.Y0>}#nrXY'DsۙF@ӏp$Wfl ӿ濫|\lW.ׅce",G !TIS E]|۞_0j\շiik7H8wWUEک +<풄>k&LM`xFâe#?ה23 fC9sZ =9#Z`}b,dD횇V~)gp0Ϥ^C @_98vضɨw­g+6Zd@Åуv0TdϰagKՈ]\\T}ī]6j 2.& 'BW-,cF}\z8{MTy+mrB0jF׷֚r+z/'L.{SMrN#aPY?ZXZv@anF %?O +?-Q"?7)jS -@ v\vfFzuA3qiRs>s(!S!~V< oGmYmǏ9");7o_ILm]g7uso34KBOz^=R퇾 }3i .;b<O\_hnU^jFȫ*zaeQ@$űt*[;xz~U֙t U[ϰ,xЯLj̐ow@˦kO{T$M5͓̃weVt\rb1XJ7q P@0~Jth]E[u*#Lɝe6{?c;)k.{VCR1V)n|팟nݩDW )R6lehȪ6xyiuLp-zͮLT2iҲJ6yy$?40$~.AG . 4pZcСvئVQ)]qla+zoɜa*0:2,@2tWЖ@=+ ?=Cw+pA$%eg(%P[介[=V?Fmen(/Dl c:Nrխ^j5s;B?H'돹,?ݎ7!”a>zל_ѧ4%W`Hs'Qr?sf(a>d1,P8yy[X¸c/a&>ɷB[XVx(gZ\zoNH5;4&wua+1T_5fn_xS^`T/_I/CH<}KIBT63=d%Llp#HĜ;feRvˬP9n*Iyơ8_ĸT,VRF`}2'ڕtna;. x^dA/M&S ͘@ fo~]kj1t'ugػJ;@tbLD=Uݭ:Z;f ju'o1x 2/K|oi8O k}<3d|oQ0G"~fئ_5aO+h`,_J]ZLR$굦푵m'I0.16tW+ڶj+s~VL̈G7<@oIɨGaQ udkjޡ~0eS})4/lOsK&KUhEv}mc5T .pFL9砧ڽ;[{x꥔Y)`}1kLE˨ڼi&"2ejawI&<-}I߶;C76#?OqVUE{p?L* ~v 3v`}<cJ=,lFC4GιU9YK;ȱ,A\sV2;IZt0F<$hNVJ$nK?gn204Jwfk^3_j %Bn^PeoD+3w#3>QēZ+L;\ )̖ R=|~{q!wWE.&;M$";/|^ ׫/X]͔/0GvMJc dv*КT4Kn}/[-7bi)˂sFЅ۬IV8hܠ Ui$on4ir//X <My=ZUK~f5ޘ/!ک.W/2Іz.tNG\ꙕuwiȠͷBy5A'*5"6kFsq|XLu>@hxyoWo0Jٰ51y;;5-:1";=FJIʲlYLK]7J-p\H :Q7i>ѷږln̊Яc~'10ttBcCcIA|Aɀ¢7;3]F)}1JzQѮ{D.&j!d5=:۬-Gl:-MXA<{>#YM;c1Ik4'7@+m<!ߩ䬗+"|xmU&,T:RS8+j)*=r?Չ8F C쟞ݍ~_a~P=i0@Wۚ15M4L \J2<)KhY ? ܜxR5=kn;it/1vhnKQ_lw?70,TTUE)/x8.6m H2ZufC?\@"x& }sBa#ZdVQgOaz)*9517wWC~3&Kb]ma[Ki:Y.'5hobNwt9oLo_輻!V ܰ5'7RD4"^da2;6^q[n(ѭt|]I_tH@ѻoXNIY!AD  r|gߪ }XCBե!%vpNܝP'!,x,%?Yt79^*5^NHD-?ZR1wrX`'@Iֽz(wZܿ0:y"mOJ͹ :%N&+=Ir'Uq˰a D;lwyMZH\jK`\Τk0ES)_p Ӟ1VZȱDw;bҿ_+YMfX+nu(~{4l[?+yӝmCNvsO躡=N/f4AA0  ƦvVaYBKBВf s'aZ_%;^J9QKB3&b$y'}j]}3]QsFuWR Q{m?^re8k,Vg|*Ap3/q߳~F])7f{7uN,"SSFvk*ęͧ}+7usȂy#`6/+W *p70@չ | '&ZjDnӛI۴{:,Ɯ3%DDկʼTbZDw̏DLLMp6U,0]2ߍz%xX~a+W;nSQ1^9w_~kÈ+sbf{eΡRAJ7WJ'9%3B^_*ˉ)2ٯ\xt)E_sn5Q7*n<-s !kVt)y=o,E"eA2JF7WzV٬/K}bM| f]7h.JG䕌.Ҩg}~4@ιu&~uI0b^9 X;"E?t #w9_UΤFD7Tׯ%6 T|ll\fѮ2-pz.u|&q;߯[[٬9׸.-? M= 2N Պ!M>S oԻщG*[bQj#ˑzWOjlYk6Y#U䜯R9?UI٬*~\L'tII'nֵ]Hkbq#vInji*2<[l ,Ƨ =_ۊqZ, 7( {rTrT +/{w%j1RhXHnA(V2ITRY|lVZx!0Hṽs=зE4of$o:<1n)2sKޯǣ}&ds3ڡnzL{F~fs[ B^x#LTGtjF'C)k[Ѷqy _/X~tN9u;#0LzqSW>t&'}{g>B+}ICܡ1rfIx:=sf4ˌb/+24QO'8Ԛ#߮ga{ o.QHt*VS(ù{\h,#LCquhDKA-2ɫ|S}؎,,k+Q=Jma"G9]Rbݕ&`Ol֢.,;20/)(5ICtfHtpq,U[Ri#K*&4bzBz>\++?&Ƶ_w& & v!Igkt- Al2j &rEoBL, xB:\}{stKt)1\4E/Z}yDŽJ #[ Z"ysSݱ3_߻%%2\ۃ|)Ĵ0HT\PL̃a~-*# T\Yycq"30^d֎'"]:?Z%8d6O+!,!q|/#%(m"xpΠK#˦٦>`̰5 ViUsbc;`@aLn&k [sBnlcSmm3kk.%1  K~|aϪLnד gI_mn+z寙f2[iF>EdL|+!-@b ,}emkCn'C0UI<ľo77.]҇7jC/F׶r㪡)]k(E_Kz5Kr؃_DX,;=nes0dfwSC쪀(9}Z{&V913W|mx@ai2CI8ؼlhzӲ3=7g>|YwT^<{ëو3?=*r@e~ɬ'?bX;d:܌ԺH9bb3cPnO~R.] $PݼTEɪŶK32Ë<wYeuP=gf? "yDUQI~rr֬чd—'+/nB = W},~0^m޶a> 4F4y"%Ryo goJJjKcJKt_s~N(NnO(wK}qYmP^zf3F]l`дX- ll@҂g#ڐuÕ]\_ޮeႛUY6>D}.8g9 ?^Z9}Oxv̏ R[}Kz'whXjf$TT?q ˒`-mJ.Wq{Hb=Ev-("sY_U/aks]5kIكUjB~yZػ4!_kv6ke~`#|Z2 ה ),)t-zZ9k;Aw(LP荾;&1+zIIjj!CVr;XiqMRDR{^=~zK.r&4fY|0渤[%Zr;WX"Ĺͳwx2mZD#: ~{ve$*9qVպHVP"[Zj #P=O/h55l 9ڡ[MyXuqǃCfQK=pz}z+_&q[&ov[/=Kw<##>HV3"O-_iES`/s>i ^PKV$R7?"brand/2020-12-30-5fec161abf116.png{wTS۷;vAE"X齄BCދS wAreSލ `|&o ]RIwg EnX~WՖq6~&:zށH>IWlc6mFPIf7U ^bێhq.[C#cH ^{Oq>\ 5k Ml#Ybf g̱Emqˇӑ=e}Jp>J&ʵO:UKw=CԠ{]rNO}Dr l^(ЃF)j,Lg-_𾄇  nb)$y][\&J:,y f)$՜wɉYuZ) gS[|Sa|&L2pQل3NNVp}) h͖Ղq!0wlK3O85o3yzIMvOOO;7 etE2lfہTa7h X-r6*"\Ja zsC!DUi&3˾ᶘs +2 Um NypN+_zh *꠫q@\vsf@0kz艊P8RΫ/rcCA0p_jcS\JzALس/Phȝ{u Hr A"S33sG):{6qR(Ggv][0/ȋcy< mWIyʵgֿ0}߿,r~jM87 \Ű+yܪ6O߽{58|>&JZM`U×sTs:O8=;ummէ ? ;!|Cwa] qi~/RJg^b4B(*zw!MWyFnAOw}L GA_ٻ[ZX(po8+*߾}K-P7)A:HƐ'DRn3TbfbDVш](^{3]oRkѮ`vAO@Th&OX F9Sf*0ƓnsA% L0@ >}˪wL!$N/}^8KR(F{߻ +nypFQENnVcO:UZossw TxUki {T-PO{_SEd yqa&X6G oU67MC&CNc %j?fAƒUɰ ɜ[s|]6D6h98ܰ`G!F Ci.ϘfCE6D}K}HwM|g0#8 f]^@U<&-(пP\~dyaBK_L53I@MlA12h@`;e.V+OR^1DX711 @O-+v%Ԡ`[@Aku{O@{96XS~@>Ph58X; Q2swĮȭ oM(+_`~%J][ B4uQ.eL=µ>N.%%e 4y3۔fw^TU]rttTиLu\b_ 9A8 {`1AԎd"X+c %5JRnyL@/]>:S&`@or<^H44` :z8ĸ&XWL#Ҵ~D~ \ԩ‚naa_2̠/u rЁAAմI7rKZPP`߾ϗx o6ېK)'@ ,FHپQۅ|NNj^"ְ\I; Z[̌74K63.ݗm\\Jg\Ϳ]wf?|X&0 O0g;G!`$H1-I&k`e<&5ojqȖSO_=q u j:Nj x q B}w7FH2j@Y?o~ao:l6*,MSӬ?ot?.[ LGUT9mhDpjHt@U=I?0;cuvvr@vC{<7F"pf=bXΝ``{fgSh'<^݀b>uh"UE󀾰V,nFX~q1D9'Oi 010GрL𫶋"Aq_= idf)k9cE8(NKV!- y= ;\ G>_T<6NM2.f%fwBf77݃'9r6B ݥc_8:*с Q̞"rFڤ{9oINV}Eit@;{[mb8Q0*Bhͅ>Ȇ-0~"\Z!Ss l~Ag5 Ǎ~Z-mb v?5'>@99sFM+(7F kw\ L gNPڞG4(}}e S!ܟ +?Jo^j) 54ç0uՍzk^R8QA鑝lFb~>Y 0={41AMOM]\ @BLTSS Y]0}%ׁؑ=ʰ*&'[߬OֹΑ$L<4#lꌳ0.xqgl|aw. jGAه|.(ܴKraơ g@LUḦ'$? |*=Cw@Pb@pc%۴ކ!ٽʡ3.Y0>}#nrXY'DsۙF@ӏp$Wfl ӿ濫|\lW.ׅce",G !TIS E]|۞_0j\շiik7H8wWUEک +<풄>k&LM`xFâe#?ה23 fC9sZ =9#Z`}b,dD횇V~)gp0Ϥ^C @_98vضɨw­g+6Zd@Åуv0TdϰagKՈ]\\T}ī]6j 2.& 'BW-,cF}\z8{MTy+mrB0jF׷֚r+z/'L.{SMrN#aPY?ZXZv@anF %?O +?-Q"?7)jS -@ v\vfFzuA3qiRs>s(!S!~V< oGmYmǏ9");7o_ILm]g7uso34KBOz^=R퇾 }3i .;b<O\_hnU^jFȫ*zaeQ@$űt*[;xz~U֙t U[ϰ,xЯLj̐ow@˦kO{T$M5͓̃weVt\rb1XJ7q P@0~Jth]E[u*#Lɝe6{?c;)k.{VCR1V)n|팟nݩDW )R6lehȪ6xyiuLp-zͮLT2iҲJ6yy$?40$~.AG . 4pZcСvئVQ)]qla+zoɜa*0:2,@2tWЖ@=+ ?=Cw+pA$%eg(%P[介[=V?Fmen(/Dl c:Nrխ^j5s;B?H'돹,?ݎ7!”a>zל_ѧ4%W`Hs'Qr?sf(a>d1,P8yy[X¸c/a&>ɷB[XVx(gZ\zoNH5;4&wua+1T_5fn_xS^`T/_I/CH<}KIBT63=d%Llp#HĜ;feRvˬP9n*Iyơ8_ĸT,VRF`}2'ڕtna;. x^dA/M&S ͘@ fo~]kj1t'ugػJ;@tbLD=Uݭ:Z;f ju'o1x 2/K|oi8O k}<3d|oQ0G"~fئ_5aO+h`,_J]ZLR$굦푵m'I0.16tW+ڶj+s~VL̈G7<@oIɨGaQ udkjޡ~0eS})4/lOsK&KUhEv}mc5T .pFL9砧ڽ;[{x꥔Y)`}1kLE˨ڼi&"2ejawI&<-}I߶;C76#?OqVUE{p?L* ~v 3v`}<cJ=,lFC4GιU9YK;ȱ,A\sV2;IZt0F<$hNVJ$nK?gn204Jwfk^3_j %Bn^PeoD+3w#3>QēZ+L;\ )̖ R=|~{q!wWE.&;M$";/|^ ׫/X]͔/0GvMJc dv*КT4Kn}/[-7bi)˂sFЅ۬IV8hܠ Ui$on4ir//X <My=ZUK~f5ޘ/!ک.W/2Іz.tNG\ꙕuwiȠͷBy5A'*5"6kFsq|XLu>@hxyoWo0Jٰ51y;;5-:1";=FJIʲlYLK]7J-p\H :Q7i>ѷږln̊Яc~'10ttBcCcIA|Aɀ¢7;3]F)}1JzQѮ{D.&j!d5=:۬-Gl:-MXA<{>#YM;c1Ik4'7@+m<!ߩ䬗+"|xmU&,T:RS8+j)*=r?Չ8F C쟞ݍ~_a~P=i0@Wۚ15M4L \J2<)KhY ? ܜxR5=kn;it/1vhnKQ_lw?70,TTUE)/x8.6m H2ZufC?\@"x& }sBa#ZdVQgOaz)*9517wWC~3&Kb]ma[Ki:Y.'5hobNwt9oLo_輻!V ܰ5'7RD4"^da2;6^q[n(ѭt|]I_tH@ѻoXNIY!AD  r|gߪ }XCBե!%vpNܝP'!,x,%?Yt79^*5^NHD-?ZR1wrX`'@Iֽz(wZܿ0:y"mOJ͹ :%N&+=Ir'Uq˰a D;lwyMZH\jK`\Τk0ES)_p Ӟ1VZȱDw;bҿ_+YMfX+nu(~{4l[?+yӝmCNvsO躡=N/f4AA0  ƦvVaYBKBВf s'aZ_%;^J9QKB3&b$y'}j]}3]QsFuWR Q{m?^re8k,Vg|*Ap3/q߳~F])7f{7uN,"SSFvk*ęͧ}+7usȂy#`6/+W *p70@չ | '&ZjDnӛI۴{:,Ɯ3%DDկʼTbZDw̏DLLMp6U,0]2ߍz%xX~a+W;nSQ1^9w_~kÈ+sbf{eΡRAJ7WJ'9%3B^_*ˉ)2ٯ\xt)E_sn5Q7*n<-s !kVt)y=o,E"eA2JF7WzV٬/K}bM| f]7h.JG䕌.Ҩg}~4@ιu&~uI0b^9 X;"E?t #w9_UΤFD7Tׯ%6 T|ll\fѮ2-pz.u|&q;߯[[٬9׸.-? M= 2N Պ!M>S oԻщG*[bQj#ˑzWOjlYk6Y#U䜯R9?UI٬*~\L'tII'nֵ]Hkbq#vInji*2<[l ,Ƨ =_ۊqZ, 7( {rTrT +/{w%j1RhXHnA(V2ITRY|lVZx!0Hṽs=зE4of$o:<1n)2sKޯǣ}&ds3ڡnzL{F~fs[ B^x#LTGtjF'C)k[Ѷqy _/X~tN9u;#0LzqSW>t&'}{g>B+}ICܡ1rfIx:=sf4ˌb/+24QO'8Ԛ#߮ga{ o.QHt*VS(ù{\h,#LCquhDKA-2ɫ|S}؎,,k+Q=Jma"G9]Rbݕ&`Ol֢.,;20/)(5ICtfHtpq,U[Ri#K*&4bzBz>\++?&Ƶ_w& & v!Igkt- Al2j &rEoBL, xB:\}{stKt)1\4E/Z}yDŽJ #[ Z"ysSݱ3_߻%%2\ۃ|)Ĵ0HT\PL̃a~-*# T\Yycq"30^d֎'"]:?Z%8d6O+!,!q|/#%(m"xpΠK#˦٦>`̰5 ViUsbc;`@aLn&k [sBnlcSmm3kk.%1  K~|aϪLnד gI_mn+z寙f2[iF>EdL|+!-@b ,}emkCn'C0UI<ľo77.]҇7jC/F׶r㪡)]k(E_Kz5Kr؃_DX,;=nes0dfwSC쪀(9}Z{&V913W|mx@ai2CI8ؼlhzӲ3=7g>|YwT^<{ëو3?=*r@e~ɬ'?bX;d:܌ԺH9bb3cPnO~R.] $PݼTEɪŶK32Ë<wYeuP=gf? "yDUQI~rr֬чd—'+/nB = W},~0^m޶a> 4F4y"%Ryo goJJjKcJKt_s~N(NnO(wK}qYmP^zf3F]l`дX- ll@҂g#ڐuÕ]\_ޮeႛUY6>D}.8g9 ?^Z9}Oxv̏ R[}Kz'whXjf$TT?q ˒`-mJ.Wq{Hb=Ev-("sY_U/aks]5kIكUjB~yZػ4!_kv6ke~`#|Z2 ה ),)t-zZ9k;Aw(LP荾;&1+zIIjj!CVr;XiqMRDR{^=~zK.r&4fY|0渤[%Zr;WX"Ĺͳwx2mZD#: ~{ve$*9qVպHVP"[Zj #P=O/h55l 9ڡ[MyXuqǃCfQK=pz}z+_&q[&ov[/=Kw<##>HV3"O-_iES`/s>i ^PKV$R7?"brand/2020-12-30-5fec163c19d49.png{wTS۷;vAE"X齄BCދS wAreSލ `|&o ]RIwg EnX~WՖq6~&:zށH>IWlc6mFPIf7U ^bێhq.[C#cH ^{Oq>\ 5k Ml#Ybf g̱Emqˇӑ=e}Jp>J&ʵO:UKw=CԠ{]rNO}Dr l^(ЃF)j,Lg-_𾄇  nb)$y][\&J:,y f)$՜wɉYuZ) gS[|Sa|&L2pQل3NNVp}) h͖Ղq!0wlK3O85o3yzIMvOOO;7 etE2lfہTa7h X-r6*"\Ja zsC!DUi&3˾ᶘs +2 Um NypN+_zh *꠫q@\vsf@0kz艊P8RΫ/rcCA0p_jcS\JzALس/Phȝ{u Hr A"S33sG):{6qR(Ggv][0/ȋcy< mWIyʵgֿ0}߿,r~jM87 \Ű+yܪ6O߽{58|>&JZM`U×sTs:O8=;ummէ ? ;!|Cwa] qi~/RJg^b4B(*zw!MWyFnAOw}L GA_ٻ[ZX(po8+*߾}K-P7)A:HƐ'DRn3TbfbDVш](^{3]oRkѮ`vAO@Th&OX F9Sf*0ƓnsA% L0@ >}˪wL!$N/}^8KR(F{߻ +nypFQENnVcO:UZossw TxUki {T-PO{_SEd yqa&X6G oU67MC&CNc %j?fAƒUɰ ɜ[s|]6D6h98ܰ`G!F Ci.ϘfCE6D}K}HwM|g0#8 f]^@U<&-(пP\~dyaBK_L53I@MlA12h@`;e.V+OR^1DX711 @O-+v%Ԡ`[@Aku{O@{96XS~@>Ph58X; Q2swĮȭ oM(+_`~%J][ B4uQ.eL=µ>N.%%e 4y3۔fw^TU]rttTиLu\b_ 9A8 {`1AԎd"X+c %5JRnyL@/]>:S&`@or<^H44` :z8ĸ&XWL#Ҵ~D~ \ԩ‚naa_2̠/u rЁAAմI7rKZPP`߾ϗx o6ېK)'@ ,FHپQۅ|NNj^"ְ\I; Z[̌74K63.ݗm\\Jg\Ϳ]wf?|X&0 O0g;G!`$H1-I&k`e<&5ojqȖSO_=q u j:Nj x q B}w7FH2j@Y?o~ao:l6*,MSӬ?ot?.[ LGUT9mhDpjHt@U=I?0;cuvvr@vC{<7F"pf=bXΝ``{fgSh'<^݀b>uh"UE󀾰V,nFX~q1D9'Oi 010GрL𫶋"Aq_= idf)k9cE8(NKV!- y= ;\ G>_T<6NM2.f%fwBf77݃'9r6B ݥc_8:*с Q̞"rFڤ{9oINV}Eit@;{[mb8Q0*Bhͅ>Ȇ-0~"\Z!Ss l~Ag5 Ǎ~Z-mb v?5'>@99sFM+(7F kw\ L gNPڞG4(}}e S!ܟ +?Jo^j) 54ç0uՍzk^R8QA鑝lFb~>Y 0={41AMOM]\ @BLTSS Y]0}%ׁؑ=ʰ*&'[߬OֹΑ$L<4#lꌳ0.xqgl|aw. jGAه|.(ܴKraơ g@LUḦ'$? |*=Cw@Pb@pc%۴ކ!ٽʡ3.Y0>}#nrXY'DsۙF@ӏp$Wfl ӿ濫|\lW.ׅce",G !TIS E]|۞_0j\շiik7H8wWUEک +<풄>k&LM`xFâe#?ה23 fC9sZ =9#Z`}b,dD횇V~)gp0Ϥ^C @_98vضɨw­g+6Zd@Åуv0TdϰagKՈ]\\T}ī]6j 2.& 'BW-,cF}\z8{MTy+mrB0jF׷֚r+z/'L.{SMrN#aPY?ZXZv@anF %?O +?-Q"?7)jS -@ v\vfFzuA3qiRs>s(!S!~V< oGmYmǏ9");7o_ILm]g7uso34KBOz^=R퇾 }3i .;b<O\_hnU^jFȫ*zaeQ@$űt*[;xz~U֙t U[ϰ,xЯLj̐ow@˦kO{T$M5͓̃weVt\rb1XJ7q P@0~Jth]E[u*#Lɝe6{?c;)k.{VCR1V)n|팟nݩDW )R6lehȪ6xyiuLp-zͮLT2iҲJ6yy$?40$~.AG . 4pZcСvئVQ)]qla+zoɜa*0:2,@2tWЖ@=+ ?=Cw+pA$%eg(%P[介[=V?Fmen(/Dl c:Nrխ^j5s;B?H'돹,?ݎ7!”a>zל_ѧ4%W`Hs'Qr?sf(a>d1,P8yy[X¸c/a&>ɷB[XVx(gZ\zoNH5;4&wua+1T_5fn_xS^`T/_I/CH<}KIBT63=d%Llp#HĜ;feRvˬP9n*Iyơ8_ĸT,VRF`}2'ڕtna;. x^dA/M&S ͘@ fo~]kj1t'ugػJ;@tbLD=Uݭ:Z;f ju'o1x 2/K|oi8O k}<3d|oQ0G"~fئ_5aO+h`,_J]ZLR$굦푵m'I0.16tW+ڶj+s~VL̈G7<@oIɨGaQ udkjޡ~0eS})4/lOsK&KUhEv}mc5T .pFL9砧ڽ;[{x꥔Y)`}1kLE˨ڼi&"2ejawI&<-}I߶;C76#?OqVUE{p?L* ~v 3v`}<cJ=,lFC4GιU9YK;ȱ,A\sV2;IZt0F<$hNVJ$nK?gn204Jwfk^3_j %Bn^PeoD+3w#3>QēZ+L;\ )̖ R=|~{q!wWE.&;M$";/|^ ׫/X]͔/0GvMJc dv*КT4Kn}/[-7bi)˂sFЅ۬IV8hܠ Ui$on4ir//X <My=ZUK~f5ޘ/!ک.W/2Іz.tNG\ꙕuwiȠͷBy5A'*5"6kFsq|XLu>@hxyoWo0Jٰ51y;;5-:1";=FJIʲlYLK]7J-p\H :Q7i>ѷږln̊Яc~'10ttBcCcIA|Aɀ¢7;3]F)}1JzQѮ{D.&j!d5=:۬-Gl:-MXA<{>#YM;c1Ik4'7@+m<!ߩ䬗+"|xmU&,T:RS8+j)*=r?Չ8F C쟞ݍ~_a~P=i0@Wۚ15M4L \J2<)KhY ? ܜxR5=kn;it/1vhnKQ_lw?70,TTUE)/x8.6m H2ZufC?\@"x& }sBa#ZdVQgOaz)*9517wWC~3&Kb]ma[Ki:Y.'5hobNwt9oLo_輻!V ܰ5'7RD4"^da2;6^q[n(ѭt|]I_tH@ѻoXNIY!AD  r|gߪ }XCBե!%vpNܝP'!,x,%?Yt79^*5^NHD-?ZR1wrX`'@Iֽz(wZܿ0:y"mOJ͹ :%N&+=Ir'Uq˰a D;lwyMZH\jK`\Τk0ES)_p Ӟ1VZȱDw;bҿ_+YMfX+nu(~{4l[?+yӝmCNvsO躡=N/f4AA0  ƦvVaYBKBВf s'aZ_%;^J9QKB3&b$y'}j]}3]QsFuWR Q{m?^re8k,Vg|*Ap3/q߳~F])7f{7uN,"SSFvk*ęͧ}+7usȂy#`6/+W *p70@չ | '&ZjDnӛI۴{:,Ɯ3%DDկʼTbZDw̏DLLMp6U,0]2ߍz%xX~a+W;nSQ1^9w_~kÈ+sbf{eΡRAJ7WJ'9%3B^_*ˉ)2ٯ\xt)E_sn5Q7*n<-s !kVt)y=o,E"eA2JF7WzV٬/K}bM| f]7h.JG䕌.Ҩg}~4@ιu&~uI0b^9 X;"E?t #w9_UΤFD7Tׯ%6 T|ll\fѮ2-pz.u|&q;߯[[٬9׸.-? M= 2N Պ!M>S oԻщG*[bQj#ˑzWOjlYk6Y#U䜯R9?UI٬*~\L'tII'nֵ]Hkbq#vInji*2<[l ,Ƨ =_ۊqZ, 7( {rTrT +/{w%j1RhXHnA(V2ITRY|lVZx!0Hṽs=зE4of$o:<1n)2sKޯǣ}&ds3ڡnzL{F~fs[ B^x#LTGtjF'C)k[Ѷqy _/X~tN9u;#0LzqSW>t&'}{g>B+}ICܡ1rfIx:=sf4ˌb/+24QO'8Ԛ#߮ga{ o.QHt*VS(ù{\h,#LCquhDKA-2ɫ|S}؎,,k+Q=Jma"G9]Rbݕ&`Ol֢.,;20/)(5ICtfHtpq,U[Ri#K*&4bzBz>\++?&Ƶ_w& & v!Igkt- Al2j &rEoBL, xB:\}{stKt)1\4E/Z}yDŽJ #[ Z"ysSݱ3_߻%%2\ۃ|)Ĵ0HT\PL̃a~-*# T\Yycq"30^d֎'"]:?Z%8d6O+!,!q|/#%(m"xpΠK#˦٦>`̰5 ViUsbc;`@aLn&k [sBnlcSmm3kk.%1  K~|aϪLnד gI_mn+z寙f2[iF>EdL|+!-@b ,}emkCn'C0UI<ľo77.]҇7jC/F׶r㪡)]k(E_Kz5Kr؃_DX,;=nes0dfwSC쪀(9}Z{&V913W|mx@ai2CI8ؼlhzӲ3=7g>|YwT^<{ëو3?=*r@e~ɬ'?bX;d:܌ԺH9bb3cPnO~R.] $PݼTEɪŶK32Ë<wYeuP=gf? "yDUQI~rr֬чd—'+/nB = W},~0^m޶a> 4F4y"%Ryo goJJjKcJKt_s~N(NnO(wK}qYmP^zf3F]l`дX- ll@҂g#ڐuÕ]\_ޮeႛUY6>D}.8g9 ?^Z9}Oxv̏ R[}Kz'whXjf$TT?q ˒`-mJ.Wq{Hb=Ev-("sY_U/aks]5kIكUjB~yZػ4!_kv6ke~`#|Z2 ה ),)t-zZ9k;Aw(LP荾;&1+zIIjj!CVr;XiqMRDR{^=~zK.r&4fY|0渤[%Zr;WX"Ĺͳwx2mZD#: ~{ve$*9qVպHVP"[Zj #P=O/h55l 9ڡ[MyXuqǃCfQK=pz}z+_&q[&ov[/=Kw<##>HV3"O-_iES`/s>i ^PKV$R7?"brand/2020-12-30-5fec164a492ff.png{wTS۷;vAE"X齄BCދS wAreSލ `|&o ]RIwg EnX~WՖq6~&:zށH>IWlc6mFPIf7U ^bێhq.[C#cH ^{Oq>\ 5k Ml#Ybf g̱Emqˇӑ=e}Jp>J&ʵO:UKw=CԠ{]rNO}Dr l^(ЃF)j,Lg-_𾄇  nb)$y][\&J:,y f)$՜wɉYuZ) gS[|Sa|&L2pQل3NNVp}) h͖Ղq!0wlK3O85o3yzIMvOOO;7 etE2lfہTa7h X-r6*"\Ja zsC!DUi&3˾ᶘs +2 Um NypN+_zh *꠫q@\vsf@0kz艊P8RΫ/rcCA0p_jcS\JzALس/Phȝ{u Hr A"S33sG):{6qR(Ggv][0/ȋcy< mWIyʵgֿ0}߿,r~jM87 \Ű+yܪ6O߽{58|>&JZM`U×sTs:O8=;ummէ ? ;!|Cwa] qi~/RJg^b4B(*zw!MWyFnAOw}L GA_ٻ[ZX(po8+*߾}K-P7)A:HƐ'DRn3TbfbDVш](^{3]oRkѮ`vAO@Th&OX F9Sf*0ƓnsA% L0@ >}˪wL!$N/}^8KR(F{߻ +nypFQENnVcO:UZossw TxUki {T-PO{_SEd yqa&X6G oU67MC&CNc %j?fAƒUɰ ɜ[s|]6D6h98ܰ`G!F Ci.ϘfCE6D}K}HwM|g0#8 f]^@U<&-(пP\~dyaBK_L53I@MlA12h@`;e.V+OR^1DX711 @O-+v%Ԡ`[@Aku{O@{96XS~@>Ph58X; Q2swĮȭ oM(+_`~%J][ B4uQ.eL=µ>N.%%e 4y3۔fw^TU]rttTиLu\b_ 9A8 {`1AԎd"X+c %5JRnyL@/]>:S&`@or<^H44` :z8ĸ&XWL#Ҵ~D~ \ԩ‚naa_2̠/u rЁAAմI7rKZPP`߾ϗx o6ېK)'@ ,FHپQۅ|NNj^"ְ\I; Z[̌74K63.ݗm\\Jg\Ϳ]wf?|X&0 O0g;G!`$H1-I&k`e<&5ojqȖSO_=q u j:Nj x q B}w7FH2j@Y?o~ao:l6*,MSӬ?ot?.[ LGUT9mhDpjHt@U=I?0;cuvvr@vC{<7F"pf=bXΝ``{fgSh'<^݀b>uh"UE󀾰V,nFX~q1D9'Oi 010GрL𫶋"Aq_= idf)k9cE8(NKV!- y= ;\ G>_T<6NM2.f%fwBf77݃'9r6B ݥc_8:*с Q̞"rFڤ{9oINV}Eit@;{[mb8Q0*Bhͅ>Ȇ-0~"\Z!Ss l~Ag5 Ǎ~Z-mb v?5'>@99sFM+(7F kw\ L gNPڞG4(}}e S!ܟ +?Jo^j) 54ç0uՍzk^R8QA鑝lFb~>Y 0={41AMOM]\ @BLTSS Y]0}%ׁؑ=ʰ*&'[߬OֹΑ$L<4#lꌳ0.xqgl|aw. jGAه|.(ܴKraơ g@LUḦ'$? |*=Cw@Pb@pc%۴ކ!ٽʡ3.Y0>}#nrXY'DsۙF@ӏp$Wfl ӿ濫|\lW.ׅce",G !TIS E]|۞_0j\շiik7H8wWUEک +<풄>k&LM`xFâe#?ה23 fC9sZ =9#Z`}b,dD횇V~)gp0Ϥ^C @_98vضɨw­g+6Zd@Åуv0TdϰagKՈ]\\T}ī]6j 2.& 'BW-,cF}\z8{MTy+mrB0jF׷֚r+z/'L.{SMrN#aPY?ZXZv@anF %?O +?-Q"?7)jS -@ v\vfFzuA3qiRs>s(!S!~V< oGmYmǏ9");7o_ILm]g7uso34KBOz^=R퇾 }3i .;b<O\_hnU^jFȫ*zaeQ@$űt*[;xz~U֙t U[ϰ,xЯLj̐ow@˦kO{T$M5͓̃weVt\rb1XJ7q P@0~Jth]E[u*#Lɝe6{?c;)k.{VCR1V)n|팟nݩDW )R6lehȪ6xyiuLp-zͮLT2iҲJ6yy$?40$~.AG . 4pZcСvئVQ)]qla+zoɜa*0:2,@2tWЖ@=+ ?=Cw+pA$%eg(%P[介[=V?Fmen(/Dl c:Nrխ^j5s;B?H'돹,?ݎ7!”a>zל_ѧ4%W`Hs'Qr?sf(a>d1,P8yy[X¸c/a&>ɷB[XVx(gZ\zoNH5;4&wua+1T_5fn_xS^`T/_I/CH<}KIBT63=d%Llp#HĜ;feRvˬP9n*Iyơ8_ĸT,VRF`}2'ڕtna;. x^dA/M&S ͘@ fo~]kj1t'ugػJ;@tbLD=Uݭ:Z;f ju'o1x 2/K|oi8O k}<3d|oQ0G"~fئ_5aO+h`,_J]ZLR$굦푵m'I0.16tW+ڶj+s~VL̈G7<@oIɨGaQ udkjޡ~0eS})4/lOsK&KUhEv}mc5T .pFL9砧ڽ;[{x꥔Y)`}1kLE˨ڼi&"2ejawI&<-}I߶;C76#?OqVUE{p?L* ~v 3v`}<cJ=,lFC4GιU9YK;ȱ,A\sV2;IZt0F<$hNVJ$nK?gn204Jwfk^3_j %Bn^PeoD+3w#3>QēZ+L;\ )̖ R=|~{q!wWE.&;M$";/|^ ׫/X]͔/0GvMJc dv*КT4Kn}/[-7bi)˂sFЅ۬IV8hܠ Ui$on4ir//X <My=ZUK~f5ޘ/!ک.W/2Іz.tNG\ꙕuwiȠͷBy5A'*5"6kFsq|XLu>@hxyoWo0Jٰ51y;;5-:1";=FJIʲlYLK]7J-p\H :Q7i>ѷږln̊Яc~'10ttBcCcIA|Aɀ¢7;3]F)}1JzQѮ{D.&j!d5=:۬-Gl:-MXA<{>#YM;c1Ik4'7@+m<!ߩ䬗+"|xmU&,T:RS8+j)*=r?Չ8F C쟞ݍ~_a~P=i0@Wۚ15M4L \J2<)KhY ? ܜxR5=kn;it/1vhnKQ_lw?70,TTUE)/x8.6m H2ZufC?\@"x& }sBa#ZdVQgOaz)*9517wWC~3&Kb]ma[Ki:Y.'5hobNwt9oLo_輻!V ܰ5'7RD4"^da2;6^q[n(ѭt|]I_tH@ѻoXNIY!AD  r|gߪ }XCBե!%vpNܝP'!,x,%?Yt79^*5^NHD-?ZR1wrX`'@Iֽz(wZܿ0:y"mOJ͹ :%N&+=Ir'Uq˰a D;lwyMZH\jK`\Τk0ES)_p Ӟ1VZȱDw;bҿ_+YMfX+nu(~{4l[?+yӝmCNvsO躡=N/f4AA0  ƦvVaYBKBВf s'aZ_%;^J9QKB3&b$y'}j]}3]QsFuWR Q{m?^re8k,Vg|*Ap3/q߳~F])7f{7uN,"SSFvk*ęͧ}+7usȂy#`6/+W *p70@չ | '&ZjDnӛI۴{:,Ɯ3%DDկʼTbZDw̏DLLMp6U,0]2ߍz%xX~a+W;nSQ1^9w_~kÈ+sbf{eΡRAJ7WJ'9%3B^_*ˉ)2ٯ\xt)E_sn5Q7*n<-s !kVt)y=o,E"eA2JF7WzV٬/K}bM| f]7h.JG䕌.Ҩg}~4@ιu&~uI0b^9 X;"E?t #w9_UΤFD7Tׯ%6 T|ll\fѮ2-pz.u|&q;߯[[٬9׸.-? M= 2N Պ!M>S oԻщG*[bQj#ˑzWOjlYk6Y#U䜯R9?UI٬*~\L'tII'nֵ]Hkbq#vInji*2<[l ,Ƨ =_ۊqZ, 7( {rTrT +/{w%j1RhXHnA(V2ITRY|lVZx!0Hṽs=зE4of$o:<1n)2sKޯǣ}&ds3ڡnzL{F~fs[ B^x#LTGtjF'C)k[Ѷqy _/X~tN9u;#0LzqSW>t&'}{g>B+}ICܡ1rfIx:=sf4ˌb/+24QO'8Ԛ#߮ga{ o.QHt*VS(ù{\h,#LCquhDKA-2ɫ|S}؎,,k+Q=Jma"G9]Rbݕ&`Ol֢.,;20/)(5ICtfHtpq,U[Ri#K*&4bzBz>\++?&Ƶ_w& & v!Igkt- Al2j &rEoBL, xB:\}{stKt)1\4E/Z}yDŽJ #[ Z"ysSݱ3_߻%%2\ۃ|)Ĵ0HT\PL̃a~-*# T\Yycq"30^d֎'"]:?Z%8d6O+!,!q|/#%(m"xpΠK#˦٦>`̰5 ViUsbc;`@aLn&k [sBnlcSmm3kk.%1  K~|aϪLnד gI_mn+z寙f2[iF>EdL|+!-@b ,}emkCn'C0UI<ľo77.]҇7jC/F׶r㪡)]k(E_Kz5Kr؃_DX,;=nes0dfwSC쪀(9}Z{&V913W|mx@ai2CI8ؼlhzӲ3=7g>|YwT^<{ëو3?=*r@e~ɬ'?bX;d:܌ԺH9bb3cPnO~R.] $PݼTEɪŶK32Ë<wYeuP=gf? "yDUQI~rr֬чd—'+/nB = W},~0^m޶a> 4F4y"%Ryo goJJjKcJKt_s~N(NnO(wK}qYmP^zf3F]l`дX- ll@҂g#ڐuÕ]\_ޮeႛUY6>D}.8g9 ?^Z9}Oxv̏ R[}Kz'whXjf$TT?q ˒`-mJ.Wq{Hb=Ev-("sY_U/aks]5kIكUjB~yZػ4!_kv6ke~`#|Z2 ה ),)t-zZ9k;Aw(LP荾;&1+zIIjj!CVr;XiqMRDR{^=~zK.r&4fY|0渤[%Zr;WX"Ĺͳwx2mZD#: ~{ve$*9qVպHVP"[Zj #P=O/h55l 9ڡ[MyXuqǃCfQK=pz}z+_&q[&ov[/=Kw<##>HV3"O-_iES`/s>i ^PK V$Rbanner/PKV$R%Έ""#banner/2020-12-30-5fec13484634e.pngZWY~)RD*#MJ#*6TTEzsD>@D@Td1PT$҄BI p;~{׺]=s>{?y^HS+QD!s5)g +((\|i_ϯ')GV <KTyVٷZ[[' H?OV7{lϖǎG:bb8v׹Ҭ#-- .ׇ9Lj(@L҇H'}HK]YYX.t_Tih S$ͤHN/hFIQ%D7"A555 x翱&`#""4jqρ3H/qSFg n9,ovpdp/}3hlEYBwpFfOuСOAN !,߰nbZX& L}Uq{ma%M6[I: !'A^(N1 '0Q D GM*zkDYeegbnɬ'I$Oa $q6=i,ʢG\^]1F8>ñR...H(,,466f1;CBJڹ [l_gw_>4!!!U}dtzwFsnIL9$ a`BL䝈lܾ=E;x+ʼn'OWVJD΢O# Q x --er?'NU[n]KzN[߻!V)#Uc쑬F6^XFBod|]]_An38B (!vU7eH?0A!~FpؗƜf-,Av-+ttt B>%$x=69c1y<@]]rj;47= SG$cH=e/H$ JwKH~if僬I}<&PuuuʵidMr5?3(LRsf"arr89%d&\⋋Ek}ٻX>ӋցSH&}jy]m\Q<A~[.AN^AQQQȦHD}aksCWB"N!vNj쾅n6-w$ZY/Hz#roƕX׶IBL$бm-θ h?חXɼf͏5**?8ʁF}l_;d_aSiֵ+yN34'ᲒgG _8݊ڭa؟r?9TS "q:^[YZw>*,$N!md!_U/~ cfOPT`r:~ 3`',ƣ1Ae PG*4FЏc|G#m}HD?wahǣmm F+"[C!$( Ke VB~?_G$R$EߩՈ9~Dx<3ES= /RB{J_]t×z鄹.rʰO"MUx"F!m4ƱQM6"90wG۷~?VEFZ{cXdñV[ݙ-u£Kق{'d$%D~"9q 9z\VC]]7z`1!63^dZēErp/[n$bV^rbm7N5/ )"c=忉ٗ9LZ"ǑyX@7ǁMܔE_ UVExUT'Ov)G`hUOrrmԥu呛3 @c /nPh4ZUs^uVR8)*lq#>u'HǏg8NVVv}*J miii{3+ة}45j|^D j[veZ9Fqxٳg(h݅(\}rKTTIp2KQ^(m$StkDdJ^oš2%-WL"V|| D]́>dcV|<& 3=lQ-F`*ꌥY5MrgWc"[[[{ @а(<ұʼnV58C.Nox?4P9G__8BG-?0@ rԖ-H~?:W [[ \:on'"/+77e|||s]bPۤ$mcc[D,1g+!|Q* ITTyp9PO\GŮ%PҴA}}}tMB/e2X~!I:lMAs5<]^^VGÃ:J~~8IYbofA$h9e]Kjrګ܁v>P(b_ i v|a8*"Q ćE~S M9v(烦Ԗ}}2ܔ:Ɍ݈_|=m \kusCE֛C H[9!6I5 zqcy?Q A7o [[cxM,j䜳~@LGMI RbjLKŢ9ܷ`FP4%_ZQS=yT#qdd䢆NjhlE9@uռ(uv6ҷf*iKX!\ÔlU 3칲mws1 (־f< x>nqg{g'>jVАTR w,vfקj?mqղP0IϨ(wwe: ʡˮ5r G&h_)Ѯ냔g;^bbFWMaΡjlž6SFJHU)li_ 9&V6ZHͧ~މ \o7,ZvzB]c =|F@NV1\61cb.K$ʪ"0r1rnpLq}lv.8پ$A P,XZ[p gKv'<,w=N<0Ʋ~]nt62T8V.l4!| _WNs;SˎrJG&l^mcOAuYeeiF Z^ձ>X6OՈO!tf4Z~v\{5U61&D332g(fkoٟqKGWb"--`mu\(nG,t7ٚu BG2k)=d;n/ӬخW6弽)=@ /U${4 2J mײ{w&ke~/@gUq`6|prL_䗂4|PWц>;D*ǶQW}"?Zvk9~f/.cbc?<*F CscmfFTx~fo_D׶1R[F[^*:7TR3!ҷZo *-կ ;b ]`2CkhFew556V@I v}!3d=%l5I[а$LXKpA/e܅}tãp{s;8jWMZD荝I- ,a/Lp^>gF,UÇJGBƸ7HY"OMj xD˗<5֒><8h4pf9:'gl6;hG@9qK}\.(48,Cm8]k1M+"nP3ϾD3:k#/g-z^ȱ,<1yf02" aMLrKԔr;w;K(o{x욞P~!C&'YىLf "q7A$ܻG__$t <4\ fsړC~œiwKD=ko}msb.?\>auͱPKV$R%Έ""#banner/2020-12-30-5fec136477e9b.pngZWY~)RD*#MJ#*6TTEzsD>@D@Td1PT$҄BI p;~{׺]=s>{?y^HS+QD!s5)g +((\|i_ϯ')GV <KTyVٷZ[[' H?OV7{lϖǎG:bb8v׹Ҭ#-- .ׇ9Lj(@L҇H'}HK]YYX.t_Tih S$ͤHN/hFIQ%D7"A555 x翱&`#""4jqρ3H/qSFg n9,ovpdp/}3hlEYBwpFfOuСOAN !,߰nbZX& L}Uq{ma%M6[I: !'A^(N1 '0Q D GM*zkDYeegbnɬ'I$Oa $q6=i,ʢG\^]1F8>ñR...H(,,466f1;CBJڹ [l_gw_>4!!!U}dtzwFsnIL9$ a`BL䝈lܾ=E;x+ʼn'OWVJD΢O# Q x --er?'NU[n]KzN[߻!V)#Uc쑬F6^XFBod|]]_An38B (!vU7eH?0A!~FpؗƜf-,Av-+ttt B>%$x=69c1y<@]]rj;47= SG$cH=e/H$ JwKH~if僬I}<&PuuuʵidMr5?3(LRsf"arr89%d&\⋋Ek}ٻX>ӋցSH&}jy]m\Q<A~[.AN^AQQQȦHD}aksCWB"N!vNj쾅n6-w$ZY/Hz#roƕX׶IBL$бm-θ h?חXɼf͏5**?8ʁF}l_;d_aSiֵ+yN34'ᲒgG _8݊ڭa؟r?9TS "q:^[YZw>*,$N!md!_U/~ cfOPT`r:~ 3`',ƣ1Ae PG*4FЏc|G#m}HD?wahǣmm F+"[C!$( Ke VB~?_G$R$EߩՈ9~Dx<3ES= /RB{J_]t×z鄹.rʰO"MUx"F!m4ƱQM6"90wG۷~?VEFZ{cXdñV[ݙ-u£Kق{'d$%D~"9q 9z\VC]]7z`1!63^dZēErp/[n$bV^rbm7N5/ )"c=忉ٗ9LZ"ǑyX@7ǁMܔE_ UVExUT'Ov)G`hUOrrmԥu呛3 @c /nPh4ZUs^uVR8)*lq#>u'HǏg8NVVv}*J miii{3+ة}45j|^D j[veZ9Fqxٳg(h݅(\}rKTTIp2KQ^(m$StkDdJ^oš2%-WL"V|| D]́>dcV|<& 3=lQ-F`*ꌥY5MrgWc"[[[{ @а(<ұʼnV58C.Nox?4P9G__8BG-?0@ rԖ-H~?:W [[ \:on'"/+77e|||s]bPۤ$mcc[D,1g+!|Q* ITTyp9PO\GŮ%PҴA}}}tMB/e2X~!I:lMAs5<]^^VGÃ:J~~8IYbofA$h9e]Kjrګ܁v>P(b_ i v|a8*"Q ćE~S M9v(烦Ԗ}}2ܔ:Ɍ݈_|=m \kusCE֛C H[9!6I5 zqcy?Q A7o [[cxM,j䜳~@LGMI RbjLKŢ9ܷ`FP4%_ZQS=yT#qdd䢆NjhlE9@uռ(uv6ҷf*iKX!\ÔlU 3칲mws1 (־f< x>nqg{g'>jVАTR w,vfקj?mqղP0IϨ(wwe: ʡˮ5r G&h_)Ѯ냔g;^bbFWMaΡjlž6SFJHU)li_ 9&V6ZHͧ~މ \o7,ZvzB]c =|F@NV1\61cb.K$ʪ"0r1rnpLq}lv.8پ$A P,XZ[p gKv'<,w=N<0Ʋ~]nt62T8V.l4!| _WNs;SˎrJG&l^mcOAuYeeiF Z^ձ>X6OՈO!tf4Z~v\{5U61&D332g(fkoٟqKGWb"--`mu\(nG,t7ٚu BG2k)=d;n/ӬخW6弽)=@ /U${4 2J mײ{w&ke~/@gUq`6|prL_䗂4|PWц>;D*ǶQW}"?Zvk9~f/.cbc?<*F CscmfFTx~fo_D׶1R[F[^*:7TR3!ҷZo *-կ ;b ]`2CkhFew556V@I v}!3d=%l5I[а$LXKpA/e܅}tãp{s;8jWMZD荝I- ,a/Lp^>gF,UÇJGBƸ7HY"OMj xD˗<5֒><8h4pf9:'gl6;hG@9qK}\.(48,Cm8]k1M+"nP3ϾD3:k#/g-z^ȱ,<1yf02" aMLrKԔr;w;K(o{x욞P~!C&'YىLf "q7A$ܻG__$t <4\ fsړC~œiwKD=ko}msb.?\>auͱPKV$R%Έ""#banner/2020-12-30-5fec1374a2136.pngZWY~)RD*#MJ#*6TTEzsD>@D@Td1PT$҄BI p;~{׺]=s>{?y^HS+QD!s5)g +((\|i_ϯ')GV <KTyVٷZ[[' H?OV7{lϖǎG:bb8v׹Ҭ#-- .ׇ9Lj(@L҇H'}HK]YYX.t_Tih S$ͤHN/hFIQ%D7"A555 x翱&`#""4jqρ3H/qSFg n9,ovpdp/}3hlEYBwpFfOuСOAN !,߰nbZX& L}Uq{ma%M6[I: !'A^(N1 '0Q D GM*zkDYeegbnɬ'I$Oa $q6=i,ʢG\^]1F8>ñR...H(,,466f1;CBJڹ [l_gw_>4!!!U}dtzwFsnIL9$ a`BL䝈lܾ=E;x+ʼn'OWVJD΢O# Q x --er?'NU[n]KzN[߻!V)#Uc쑬F6^XFBod|]]_An38B (!vU7eH?0A!~FpؗƜf-,Av-+ttt B>%$x=69c1y<@]]rj;47= SG$cH=e/H$ JwKH~if僬I}<&PuuuʵidMr5?3(LRsf"arr89%d&\⋋Ek}ٻX>ӋցSH&}jy]m\Q<A~[.AN^AQQQȦHD}aksCWB"N!vNj쾅n6-w$ZY/Hz#roƕX׶IBL$бm-θ h?חXɼf͏5**?8ʁF}l_;d_aSiֵ+yN34'ᲒgG _8݊ڭa؟r?9TS "q:^[YZw>*,$N!md!_U/~ cfOPT`r:~ 3`',ƣ1Ae PG*4FЏc|G#m}HD?wahǣmm F+"[C!$( Ke VB~?_G$R$EߩՈ9~Dx<3ES= /RB{J_]t×z鄹.rʰO"MUx"F!m4ƱQM6"90wG۷~?VEFZ{cXdñV[ݙ-u£Kق{'d$%D~"9q 9z\VC]]7z`1!63^dZēErp/[n$bV^rbm7N5/ )"c=忉ٗ9LZ"ǑyX@7ǁMܔE_ UVExUT'Ov)G`hUOrrmԥu呛3 @c /nPh4ZUs^uVR8)*lq#>u'HǏg8NVVv}*J miii{3+ة}45j|^D j[veZ9Fqxٳg(h݅(\}rKTTIp2KQ^(m$StkDdJ^oš2%-WL"V|| D]́>dcV|<& 3=lQ-F`*ꌥY5MrgWc"[[[{ @а(<ұʼnV58C.Nox?4P9G__8BG-?0@ rԖ-H~?:W [[ \:on'"/+77e|||s]bPۤ$mcc[D,1g+!|Q* ITTyp9PO\GŮ%PҴA}}}tMB/e2X~!I:lMAs5<]^^VGÃ:J~~8IYbofA$h9e]Kjrګ܁v>P(b_ i v|a8*"Q ćE~S M9v(烦Ԗ}}2ܔ:Ɍ݈_|=m \kusCE֛C H[9!6I5 zqcy?Q A7o [[cxM,j䜳~@LGMI RbjLKŢ9ܷ`FP4%_ZQS=yT#qdd䢆NjhlE9@uռ(uv6ҷf*iKX!\ÔlU 3칲mws1 (־f< x>nqg{g'>jVАTR w,vfקj?mqղP0IϨ(wwe: ʡˮ5r G&h_)Ѯ냔g;^bbFWMaΡjlž6SFJHU)li_ 9&V6ZHͧ~މ \o7,ZvzB]c =|F@NV1\61cb.K$ʪ"0r1rnpLq}lv.8پ$A P,XZ[p gKv'<,w=N<0Ʋ~]nt62T8V.l4!| _WNs;SˎrJG&l^mcOAuYeeiF Z^ձ>X6OՈO!tf4Z~v\{5U61&D332g(fkoٟqKGWb"--`mu\(nG,t7ٚu BG2k)=d;n/ӬخW6弽)=@ /U${4 2J mײ{w&ke~/@gUq`6|prL_䗂4|PWц>;D*ǶQW}"?Zvk9~f/.cbc?<*F CscmfFTx~fo_D׶1R[F[^*:7TR3!ҷZo *-կ ;b ]`2CkhFew556V@I v}!3d=%l5I[а$LXKpA/e܅}tãp{s;8jWMZD荝I- ,a/Lp^>gF,UÇJGBƸ7HY"OMj xD˗<5֒><8h4pf9:'gl6;hG@9qK}\.(48,Cm8]k1M+"nP3ϾD3:k#/g-z^ȱ,<1yf02" aMLrKԔr;w;K(o{x욞P~!C&'YىLf "q7A$ܻG__$t <4\ fsړC~œiwKD=ko}msb.?\>auͱPKV$R%Έ""#banner/2020-12-30-5fec1382219d1.pngZWY~)RD*#MJ#*6TTEzsD>@D@Td1PT$҄BI p;~{׺]=s>{?y^HS+QD!s5)g +((\|i_ϯ')GV <KTyVٷZ[[' H?OV7{lϖǎG:bb8v׹Ҭ#-- .ׇ9Lj(@L҇H'}HK]YYX.t_Tih S$ͤHN/hFIQ%D7"A555 x翱&`#""4jqρ3H/qSFg n9,ovpdp/}3hlEYBwpFfOuСOAN !,߰nbZX& L}Uq{ma%M6[I: !'A^(N1 '0Q D GM*zkDYeegbnɬ'I$Oa $q6=i,ʢG\^]1F8>ñR...H(,,466f1;CBJڹ [l_gw_>4!!!U}dtzwFsnIL9$ a`BL䝈lܾ=E;x+ʼn'OWVJD΢O# Q x --er?'NU[n]KzN[߻!V)#Uc쑬F6^XFBod|]]_An38B (!vU7eH?0A!~FpؗƜf-,Av-+ttt B>%$x=69c1y<@]]rj;47= SG$cH=e/H$ JwKH~if僬I}<&PuuuʵidMr5?3(LRsf"arr89%d&\⋋Ek}ٻX>ӋցSH&}jy]m\Q<A~[.AN^AQQQȦHD}aksCWB"N!vNj쾅n6-w$ZY/Hz#roƕX׶IBL$бm-θ h?חXɼf͏5**?8ʁF}l_;d_aSiֵ+yN34'ᲒgG _8݊ڭa؟r?9TS "q:^[YZw>*,$N!md!_U/~ cfOPT`r:~ 3`',ƣ1Ae PG*4FЏc|G#m}HD?wahǣmm F+"[C!$( Ke VB~?_G$R$EߩՈ9~Dx<3ES= /RB{J_]t×z鄹.rʰO"MUx"F!m4ƱQM6"90wG۷~?VEFZ{cXdñV[ݙ-u£Kق{'d$%D~"9q 9z\VC]]7z`1!63^dZēErp/[n$bV^rbm7N5/ )"c=忉ٗ9LZ"ǑyX@7ǁMܔE_ UVExUT'Ov)G`hUOrrmԥu呛3 @c /nPh4ZUs^uVR8)*lq#>u'HǏg8NVVv}*J miii{3+ة}45j|^D j[veZ9Fqxٳg(h݅(\}rKTTIp2KQ^(m$StkDdJ^oš2%-WL"V|| D]́>dcV|<& 3=lQ-F`*ꌥY5MrgWc"[[[{ @а(<ұʼnV58C.Nox?4P9G__8BG-?0@ rԖ-H~?:W [[ \:on'"/+77e|||s]bPۤ$mcc[D,1g+!|Q* ITTyp9PO\GŮ%PҴA}}}tMB/e2X~!I:lMAs5<]^^VGÃ:J~~8IYbofA$h9e]Kjrګ܁v>P(b_ i v|a8*"Q ćE~S M9v(烦Ԗ}}2ܔ:Ɍ݈_|=m \kusCE֛C H[9!6I5 zqcy?Q A7o [[cxM,j䜳~@LGMI RbjLKŢ9ܷ`FP4%_ZQS=yT#qdd䢆NjhlE9@uռ(uv6ҷf*iKX!\ÔlU 3칲mws1 (־f< x>nqg{g'>jVАTR w,vfקj?mqղP0IϨ(wwe: ʡˮ5r G&h_)Ѯ냔g;^bbFWMaΡjlž6SFJHU)li_ 9&V6ZHͧ~މ \o7,ZvzB]c =|F@NV1\61cb.K$ʪ"0r1rnpLq}lv.8پ$A P,XZ[p gKv'<,w=N<0Ʋ~]nt62T8V.l4!| _WNs;SˎrJG&l^mcOAuYeeiF Z^ձ>X6OՈO!tf4Z~v\{5U61&D332g(fkoٟqKGWb"--`mu\(nG,t7ٚu BG2k)=d;n/ӬخW6弽)=@ /U${4 2J mײ{w&ke~/@gUq`6|prL_䗂4|PWц>;D*ǶQW}"?Zvk9~f/.cbc?<*F CscmfFTx~fo_D׶1R[F[^*:7TR3!ҷZo *-կ ;b ]`2CkhFew556V@I v}!3d=%l5I[а$LXKpA/e܅}tãp{s;8jWMZD荝I- ,a/Lp^>gF,UÇJGBƸ7HY"OMj xD˗<5֒><8h4pf9:'gl6;hG@9qK}\.(48,Cm8]k1M+"nP3ϾD3:k#/g-z^ȱ,<1yf02" aMLrKԔr;w;K(o{x욞P~!C&'YىLf "q7A$ܻG__$t <4\ fsړC~œiwKD=ko}msb.?\>auͱPKV$R%Έ""#banner/2020-12-30-5fec13906fe37.pngZWY~)RD*#MJ#*6TTEzsD>@D@Td1PT$҄BI p;~{׺]=s>{?y^HS+QD!s5)g +((\|i_ϯ')GV <KTyVٷZ[[' H?OV7{lϖǎG:bb8v׹Ҭ#-- .ׇ9Lj(@L҇H'}HK]YYX.t_Tih S$ͤHN/hFIQ%D7"A555 x翱&`#""4jqρ3H/qSFg n9,ovpdp/}3hlEYBwpFfOuСOAN !,߰nbZX& L}Uq{ma%M6[I: !'A^(N1 '0Q D GM*zkDYeegbnɬ'I$Oa $q6=i,ʢG\^]1F8>ñR...H(,,466f1;CBJڹ [l_gw_>4!!!U}dtzwFsnIL9$ a`BL䝈lܾ=E;x+ʼn'OWVJD΢O# Q x --er?'NU[n]KzN[߻!V)#Uc쑬F6^XFBod|]]_An38B (!vU7eH?0A!~FpؗƜf-,Av-+ttt B>%$x=69c1y<@]]rj;47= SG$cH=e/H$ JwKH~if僬I}<&PuuuʵidMr5?3(LRsf"arr89%d&\⋋Ek}ٻX>ӋցSH&}jy]m\Q<A~[.AN^AQQQȦHD}aksCWB"N!vNj쾅n6-w$ZY/Hz#roƕX׶IBL$бm-θ h?חXɼf͏5**?8ʁF}l_;d_aSiֵ+yN34'ᲒgG _8݊ڭa؟r?9TS "q:^[YZw>*,$N!md!_U/~ cfOPT`r:~ 3`',ƣ1Ae PG*4FЏc|G#m}HD?wahǣmm F+"[C!$( Ke VB~?_G$R$EߩՈ9~Dx<3ES= /RB{J_]t×z鄹.rʰO"MUx"F!m4ƱQM6"90wG۷~?VEFZ{cXdñV[ݙ-u£Kق{'d$%D~"9q 9z\VC]]7z`1!63^dZēErp/[n$bV^rbm7N5/ )"c=忉ٗ9LZ"ǑyX@7ǁMܔE_ UVExUT'Ov)G`hUOrrmԥu呛3 @c /nPh4ZUs^uVR8)*lq#>u'HǏg8NVVv}*J miii{3+ة}45j|^D j[veZ9Fqxٳg(h݅(\}rKTTIp2KQ^(m$StkDdJ^oš2%-WL"V|| D]́>dcV|<& 3=lQ-F`*ꌥY5MrgWc"[[[{ @а(<ұʼnV58C.Nox?4P9G__8BG-?0@ rԖ-H~?:W [[ \:on'"/+77e|||s]bPۤ$mcc[D,1g+!|Q* ITTyp9PO\GŮ%PҴA}}}tMB/e2X~!I:lMAs5<]^^VGÃ:J~~8IYbofA$h9e]Kjrګ܁v>P(b_ i v|a8*"Q ćE~S M9v(烦Ԗ}}2ܔ:Ɍ݈_|=m \kusCE֛C H[9!6I5 zqcy?Q A7o [[cxM,j䜳~@LGMI RbjLKŢ9ܷ`FP4%_ZQS=yT#qdd䢆NjhlE9@uռ(uv6ҷf*iKX!\ÔlU 3칲mws1 (־f< x>nqg{g'>jVАTR w,vfקj?mqղP0IϨ(wwe: ʡˮ5r G&h_)Ѯ냔g;^bbFWMaΡjlž6SFJHU)li_ 9&V6ZHͧ~މ \o7,ZvzB]c =|F@NV1\61cb.K$ʪ"0r1rnpLq}lv.8پ$A P,XZ[p gKv'<,w=N<0Ʋ~]nt62T8V.l4!| _WNs;SˎrJG&l^mcOAuYeeiF Z^ձ>X6OՈO!tf4Z~v\{5U61&D332g(fkoٟqKGWb"--`mu\(nG,t7ٚu BG2k)=d;n/ӬخW6弽)=@ /U${4 2J mײ{w&ke~/@gUq`6|prL_䗂4|PWц>;D*ǶQW}"?Zvk9~f/.cbc?<*F CscmfFTx~fo_D׶1R[F[^*:7TR3!ҷZo *-կ ;b ]`2CkhFew556V@I v}!3d=%l5I[а$LXKpA/e܅}tãp{s;8jWMZD荝I- ,a/Lp^>gF,UÇJGBƸ7HY"OMj xD˗<5֒><8h4pf9:'gl6;hG@9qK}\.(48,Cm8]k1M+"nP3ϾD3:k#/g-z^ȱ,<1yf02" aMLrKԔr;w;K(o{x욞P~!C&'YىLf "q7A$ܻG__$t <4\ fsړC~œiwKD=ko}msb.?\>auͱPKV$RqEP#banner/2020-12-30-5fec15660025c.pnggTS[Կ+("J/҅6:*BЛz#H -D&" ĀBzZ{q?/;1dg,͕@1h?2\Nm]8|yO'x뙶utߩ K< uΣf!W_ϯdV U\gue$Q$#xwB+WY=y\р?/pzy6w6_9{gƍGSg{ >ތw?}AU0$e*6`)wGv!v@7#kl y =r z%eLlggbYuf:miθ~^̵2ⲇ7*#x`ەT?J_hVP#d#i3bXԱ y ю^P}ߠvOy*. T;ڶO++SFe0جB>%Nss%RR9t֙x ߇vƬiiiE0l|Q*'Ug6_-`enAU3Œ:W4R6peͼ3_]B7A_/=V%io%`V)5$9kIαNY5R^\7|Y Rj(AsJ}7Wt{S(,O#:F$Lu`xya>LQC6ڄo&ѾZ\BOʱլDn0LvWm:h koNz&O5CD~?S1/| ^ f>}iĥ@e,wC Ar߿w|LJX ;ئ\Cĉ@ J;~ l5JNvAZ/_P(H ŋŽm'ճ/@j't QNn(.(%m6i 3=d~Ցh a2ɮ5}b㶐@ aėS/4[ CRlqzv=Q,7!={4CphQs=/H99T;bjg5~9o D.XcGϼs=cZ)?ݵYB{CMe4,*=f Hh lmazH ;":yg#~ۉ<} f}vX 71 ?|>qw3>SF=Z}5RvxŰ2A攒H3J@:dBU%O>S_;oÈg|5^j(NG űӡyp;1BfGhp1hf ;UHMdPkX`@Bc}6@/NLϟ5R`s.rՂ5=!x!Xkm-x^?r1(Uc -ePWH$_f~ a (qB"'_/EuNLJl 6ΙlVXxڵ:D<xd٬? EEIb1Ϟ}ZobLq5E@. 3~\fʀyM[!g%ݷB@Eu$j-Ps+:8wO?h;Ήڛ!Qr))oֶUGX~ii)IM\7KI(ªg =.v.@VuNZռ : \qҖURegZf탯fՀ\{ї@  .c\`\ǜq!AMvω Ma,Շ ZWc`r[GZr[8W ;|q2ͷr&E:3xh2WS GQEˤZ_vt2f"QogNdt+s\77];.?|ntK ؓ0(>}0{7cu 2t1 lNxzCQ,hҖ^PS/~{Z{HsN"vUn^τF@Tq g΢qܗ^q'wbV4mhspp(&50=ua/NO?y%P?Q~˿kW.7<5f6ނ, TiOb%(i8"K䟕@LrFiŸ !kƀ峊4!O΀D5+#%9w*h|fdi}žkqvEݤHv,s‰W" Fn ^>pZ\h%\ϡ`_ejL>u&ZowMb(Sֆv@k]6"FDTV"_%GWhYg*ق":Wb깘w0/!ԇ)m|>/b5y})ڠw>P5fч 9@3zJV}@6pU/?h" *\V<ԆX޹x/|~1$Qzad_l` 4 ع>t$jjyrď*g4a}xz%xt'%'9(Gq###}=tg. }{Y)P))F J^8#4}#!!!oi :DG<(@.?ڙNluC>}p4stNZ @.$ W,fa-bAN!ommm ~n" k'4Up $@6nyPOri][dKZ-gY_Is]ʤ1+۶!51ZiELs c&]n ;گaE匳`yopxx9N&s $yezf˧,܏dS['N4x; ~ :I%u FHDxrw׭Ba ]?1PA:dJϔkfOT>m@A⢁~GWp&SnA/H(\ |„o`PV@؊>2WxL$G N e=Qm;~BU訋iMs:vPhjw4 gR3s19_EF8tww/5ɉa/w3ZSBK#DN͵zzj!(Bez 4+3H cI*%m3ı7@O#~ Nfdy ;nV{%c!*F}yP -jfI)NHʤb TM*Vpt|Ɗ8%__jvq5[xuYВn+5>/lfcpcKX bAXjϊ&od)q@Gc:;2IfRE"sԊ ıKTVY)rx= o R+BxbwgkDzٻ7r"mp /]gwOf xF({˶Mlu60'ey m`2iS ,!(㭑.}kX*%`5hQvZS1 /H+U[8&<;6簐ݏ=%Ht0-M!GVcB\Wv`ixPT{\nTVSkbkm^Lqz^\;]Cl4g?jvW3+zU:{ ЇpiyIu(uYT@#^_N+%%ۀ~u]:L2O5/[æ0R,#.赳H)8yHNCߠcpL@]vmٴ%{-~,qvjtѩӧOU`"_xuP }oS!{48 ^MmSHmiAZW0obhaC P+? rEw,@f79 Q["IwTkew!e h=.f_~ )0@[ jǓ,Kz Rf8g{בD4a1PX^Z<= \.@ T bkUE]$!J/A k/o|ZGqXM?ՈrfE^>tR Ԓ]>(&S?7-Ts Iu9ԅ<lÒcdF<0 1@PFj0WD_'vJAC3sQ{J?08?3;V#j b1A'wbؗGt}?CX0$wb>ROhf#"O)tH~QM@[4"N}ZuHp?h&GnOyCD}?ġ-§No7E/̘UEO %SOa0Kܖɶ/$ zQ5Z~Ҟ~u餭#jzOZ>Q,Ct0Jbυkx>f/OKl8mkumK泳{>$U*e-Ԑkq3+)%꫺ݗ5yMRm %Fy]<::/-ʏ++.\݋j#dK6`-RdQ>:j_02 tGMY@MJr4H{1eU_M-tjm_]~!ۋ1ʄUӗՙwWq 4i 6M'ԡL֋ɠF3odV(5{wqwe˂p}AXO@=qD(R&eڋdQ0_D1_؟%`gfN31SPr;Ug)zFPGqcVbYci\c QT),1 BS9ђ?4]CphjIPq^gGe-w0wCq#g/OYעlQAZȯsy=bY=xqyq;ʙ:]22hPi~ӃY ͈rk c֦]ueo ӖO8Qlt;KA9Ԭ½쿳Q[hvc g?` ܥQx / t!4Md8瞉3Cue7V;# GO@`e[mRxeLB q Zl>#g?`bz/"_tOFLj1K [?;k:Bn65~4ԵΤIu!J K=ݤEJhU=(< 䞭` ÷Y Fog%6 NǺRSd#yK+k׸\2 YcnU1omdx5yGj(s"-zdTʲǀ;-lnz^V3Wi 1~{P&Z uݜScCRIkۑl+> k?y'sCqEs ߦӗ0Sѕ[FؠJu1Gz=>zȔ5X3?ib>KX"c𴚮-,p~?e,JSJm*J*ZnwH,xvjW)Iwi*D{J\{^=?ś`u0X)}2k/Hu Ƭ٩JF\bVS+f~7n.KVISU]  vfze=^3~+&_cJIPkaWQK |((BH^P\F !zI]h->#c[(lϲ$f֩]{-AVV Joey‰GJ~4XXz(y`Zⳁo7}sBH? E}bד@9:x{h`Z7DX4w>hR l%o-tNg2yx`S_x)W3'n7rTU 6[Pмv@Z}~y/[uF^wnZT~%B5ŜIIfʼn+`pXfRO =šhO|r bRf댄|wMNX )S nKj 2V+*7hrJ%)Vq@FQ&3@ǔ=`;!NNhUG2VNj֪>5e(aSlvϿc',?jZs^Bnȟ]t#H٣.sqz!w.RnKr89mPIYBH܏b.KC ;AM嶈[8x|#;u%{ |ÿlOgabؒyZS12Uɂs5C%{d cBPB: '«;i~FRg m;f-+>EAM9d#ٯB8쬕ӿ~znDf)-l\ v?GwAߝn5\VIPCMe"ME׺Ly}Np"R;"I&0:6ăr܁)+M.N?ZBqp)3y{f)v^J@S^h|fh6)z':*ZoC><^#ιZOz- THa~ 3^k*9'!yzMܔz5FmnRؖ_ș4-ka?g.{V0ČPh#[օs-FRo|ⳮ-M!nvP&,:fFWMӇO܋ w[c$ X^&azq؎l\BUkؕ];[\vMȕR*UObN^9h _j 3i)CeN=.t=FłNbf0eDօ!uA¢~M=en]Koci PpI+n?dBQژٺ;FicaPb<ƪD* c"R>"wqF,-,1Ƿ-U yi8ov nZ9 *!2&Sͥkb0 )}%Ulw>) {Sg~GeQ[ Iv.O .9}+N^yؒ.gO ){x$ 2 :G6 1/~gr-%ȓ&Q"(qVaGcYb%n_DQǑ=:Zqӄڥ(%$O,+Bp["=]aR8u&*kP} 8 uTv]-}aZlf MuR^"lwXi?LrDb{Zg&ҡD zS.00gK5VCf:l5y YH㭹f|6CU:`f|-VIvVeBw7.a_`"x2BqAaNiKs/Od 1vc8sW4ZX/Vnوv&%dugRlFܸ[FY? ڌ_]]~gI$6R]JRg{~0]'xZr,ԉaMe&&HPeW/F 2cܡgZԆf`KIs#+r ΰL;vlE.ܕZ;4e4ũ˛bZWs0ް%Zf^Rs_1S.s|{ZasXOFba5b K^I+nJn򄖋;x\KpuFyL:|6݌14{`wf}]~ͱ)'R҄YlsS#`r?.M$d3vԈhŁE4 UXE]ܘ-{a^pp`1<,ٶi/IZmh8yf[ vK9ywYZM~klNPC[E)= =J8ut򻞯hʨh(TD'"^J~*Ci?dπcЀoWf;<~\ )/ Xc5)PIwY>~h&!y(5_Yc| dsJ+Dnḳ"fCQ*Gu0kC9F@~\v<ƫ箨SK9[ #DB~RsWjP=Yy!捾źs^z.{e/ O6loߋ3,~~e64P{h[b̓'agcZ _~zGG,粳np'2p'/u#lgts.H)v`|_-"jFsh;O]dXA J7u -AVB8fݩŎZYZMzR=3@?d©8뚢ļ}K2jo[)/K0y~%ץ&c[-b3}uZuZzNX+5[XѺ"|tz5{ q[r3CCo.JX1$*<sHpٖ ,'_b#4MV( /+43HRA ;Q7QX~;4: v$ϯ<¿Y.jq*B*~Ntu5N{ԔɘZ{opXP6;V3Md|Gs\4ȳb>v퍼خ,&Tرd6tSQWnѵ_YBJ6Y6O)2~>_6YDJ& [z7JV%kz`CCG:H2Z![R"/lm){3k d6ݢW4zr,vU~ޫd^cT0G`bS1 ;<~+*rj,J6?RM:lnͽU>L0?U> /IHF1]3V#֛Y!i%/916 2EmJKѥZg+,E'{Jrx_12U6HVیK<~Ϙϋ%JT:88(L!:[K?P&Jyсg@Z-JH32d'Zm#r_V7BUeYYpw[oue{Fn T7IݖWiب_tb-<5:L85^:QsO42/_͒ ed}wyb,y;5̸i#snAcю"M *b'B}%4).Ԡr@^׿acQaO״x?2YƙZO=8WD M#+wPAm wsZI8ԞC\d*dH-7@"uD´Ej dy/V"!qWҺl 7cA~k <)a G݂i'37o;Q4~*0(;VnkʜnM pYm& A'Z'k) g}1B\Òޣ݄Rd^1>Q.|ɝωq JDrcc룀$-Wdg֖~WHQb~0T?*uMİ""Z{b: UzPJY5eSMtrǒ4 G̞l-4gp_n|h&V^c3)q Cعİ \W]ыjP*'$ᏋwrB OJ6W \*uY hxط:?l[?FG6tݖD05}/ü6iP]V[^uH%]5eh3nz_08-ͪgi[/GFPU_{QiKKW)6$7=x.A!̽_Pu§ŭx-S\z;a>;i8̽y=GӧC%u.n͜.JwvD%|ҜEIc_Ԅpn~8AN "x ^kL-Rh;XQcT@֏ܚ˱_cخe6[[o7.h?.GIXA}"d̤|=l5w͎/w?,x!m^pTYO.ʤLO& J\,0#-xx݈n3!$Wh![U%،&P2/;^E u_=2z H!M23D{MW. 3UL[ Moc''־5b"ߝU,l<eqaYXf\V]d$M+ #ŗ}g3x3V_^ͫV#ư|KHVу4w89.ܛh3J"#Td̢w)/Hl$D&>oÎ)n5ld*y!P<"3(rj_09~U?QhapBFY^^Qϱc1Ģ܊dq(uzɢU59S^J?1?.t{VYnSA%q8?#ɽ/7T6?IyFh{]-Þ>u+)ΎB ¸mhw 7#ζ,ނ&QpWj?I\d{C Ͽ TxFl T_ĩePvFEu{hM{Q;@6.d?C}=y˚GRLMҢ萷z9I+6π0P k ?!Ɲ_௴^UW3Y u޹ u@L "3R,~OqOl8u zg|Qѵb<d\X7csE,9s(۵aJ*6m+*]@fzS @jU1lөc8۬zHóJG4t3=|@VIY陨R'x=hf^ї<7os3'UJ-P[S~BǁN{!=M j(n=ծ@O{/p_]jz__PKV$RM?U?def.pngZuTnyqw(nišPPwwMPJq) ?Ι;3l 6WT/Lw!4erW5z 4n|W^)=n3H,@N -ޟE U5yjJTãߨ* Thz=%2 =:^7 tc`Ѱ/T-eOgzEOJ*68u#VJxϻI13Ɠs$;n@1 W7)1)utPMI_ʙA]=&#xz}NuFaéұ6o{]> ˂oX%6п pLdwn6bp&VƀLf%G!2Kw\A4 1?Cm kcRBAu 9/0hwӓ'Q葿߽r&z+KҰ2(T% o7ZDk_?uM =Z=W8.0KS)}3NaږwBZ8t42j)#<7Ͱ Y&cPkZJ>?(v&|"֕t? ?Ed&WS)v'F b aaI<-x[켖KEi nJG@`򵆩~i.XaEEbYN!i:Sb}kƌuI[X/_7 =v/3"aMwڵ lV&f#+r0V>fS 򯾩 cL?]]6D.WxV?>VkYNdo-Џk1=fYժe @!Pw 2nϢKS(5-dA&sTY6<7JE@k}]5pvi@s3=,tr*?BN#?*eoiQ1$ ۳F~hgqG8#zy?Z nA/GݘҀlBg!ߕ`9LT0)"qVޱ ZYyq/,AԎ\ACpD+|Ny9|^Y% [O|(]N=EձG7t%k57GNNPnv8yid~l).*p`0khsY4q&)M7('D6k (XPZ_ ˌcFSȐg,_u}_%3e+~^6_2?$O1?[~=]]8RlR-ё0!!AาOWB7X _.+^ sCYmK94s& t6#4Yu:~S\b@0?[Wq7|-"S#߇,L1c,5Fz ̥+7)>zޯc4'KJև8v1!nO}\iRVNIcոG?!IxmVuqMz*a⎺x2ZD:0`9fR)B/N2)w9a\E$'r%-JMԮ={Qs){{Vl69')0Ωj I7½0B*uխz4qon9/G (@x|*!~e}Fw!Pu e !&W JRw,G)fLy~π@Ms*U2F:@9~/rùP{F+FrlxΌIyr} U3^ùKNħ/+&{Q z ?qw@(<\%З@ZPp֥E(K9n^knmƋ㖍9i0I7:`!vF" _}a{5lpaxSσ.|aTn}"yĊYi*|mkrTDt]EM-ɽћCB*6d?ASЇ(m=ǚ2hC1l~u:w@*d LKwU(~)bT !C[ z@.%iP#G[;o <}vKTeI*_J ԃ^#ieA(Y4LQ{[+>JIn^/b]cWg"tX?`}ۦPj~ 1^x~&B -Y18kToF^eH9\1vAt3-6xR$뙶{m(S{@JQo09¹M'_Dea<4Gv!yh}Е}EZxy-s/Ty%adK2)&j&lRF!{81` 7 ǜVr&}EK376a:;4:22Q [JD ȇa HUv FtJfhӶGxv6ivͲg28A0b*-m*4j_M E#ȶ):ch~;c$9*jwڕNgB)_J߿%>rC ę#΅wʕX|f>7E޽NߞuAӊb}ˏ9EKrRrȸg.V,T"sc0k- &)?AfC%L`X~xKMSKlsN2Ho>{uR*!ypG1CWKNҰ8khu]S 6І/^8=oc⚀!R"N1qp%E]վ)lAk7vqʸd{ULowneRuF%3iqƅ1Br8aN:Vypfj躯,u RN <,yq ur@V41rs['[W޻[qN2"`z똧v=M4P/'}t^d0֢cͭqp`ġc &okTC\80rOg@f\[<.&O#`ӂ~B_^/7Tc v dVC3 dtLl`Vdxv%dHOq7T"បy>7}bFԌk. ŸSw\llҶN}x屳Qg) VʐAoN:yc6/_`8P4|7vtZERFC3˴}v%cLMH{Ct/>eKZ<@*Vk>,*2e8c2P]UPqy 0Fs6b|{vQ~&!)]5kvT1Bϧ8&%0#y55, h˿x+tߙpX)Qm[V֗\F&IoǂǼMb<1K9}uRkb PL'h2Xˈ;T{¢Gnm5{{S\c#zJ C,]jOVU7c2+rXW٨Hq=!ںCl=)qlj 嵪& *A ?4pg`Xx";?4IPc.fA|F]k)s=n٪VT_ᛠ҆*/hXD]Z\r>D\=}<PjkJQҸSa1i¾ڷrt'l$7 I`/Cs~BOih'FH]erlTi@j`&կkWV4 skbX, f0#td5Nu'. r):AOcyo sj2&ֳ d0ΊNcGF+3DkgjVzzGo^z5iN)\s%s2,%8 %hŎT2}Fv4 ")Ύ?^S hi5BD"=k/m.$Ki^[)˯_B*q3f\007!:6٢zrn<ԫ*”Rγ:Uo&855dSalA7cwo}󣿫1A,*ݫwwɒwȐ/FIL)^cgng Κ|v'O밭mF|FɁ"~حO=s ER,c1yEۜ>ugV:A^@)C(fV9 Np=`).d(7@/CVI=U5'ʻD "C)&'Rvi͛oSſ4ܽ놦!o,TSNvTE-'tbx Wsb~ior4`uN&1,Z=W=/?;dϰ'O9[i]d㇇cpѭĿ '^uB v%UWsg2Bf!T{?S(wjLD3Mc73{=zϔ?G.B:y.˺KRŗ69O;۽ 4_# BwwA@Ȃtf~>˖Sΐ셵2\ V_AnjA+)-}EM =d>`4<"eL+*2LB-x̲pD;K][H%AMWӆz-s4' {Gsb;.vF' 1\W^ӥj(96B'&JWDGzǟc$zwo=,hs: %Qzw4vo,kpVc.}N4O[S'E{vgjoM\aޥ$o7GWiMhQ~^\;~Ci͖̒9Ac(WU6^>+iY gzp |Ս6$`UaDgc`uO+5ݐ70fDw:4\W\Z Z䶦˰^*U'Bh7oպC8~۾9$rjznK l>Si^l[IY Oߓ ]4EY\罅 8=f&ӝlojiiH˝@;,|I@u1ݚMZіSR`s`V{\^\r˻cF_/f]>N* ?L5q)E%7~b.rII{d`7k%x&@B;r30/ǯ0QZ~Sִ(KʅUcg)-jr]՞f%d.:r][:mN3킐ܾ1s}'?Xl6%: #b Iz Og\'{m˵e)Fu+cn7g4]d.| &Ooj6lk}LE# ܐ;-5t  􍈓\ZUPo[O”",TFg*ׇVI5oNrzQ^[OSIR:5$EeP&M\~To׉}Q퇪5~r+ ipIYFn/ v sۀw֎d_O­=\[6ouq3o]ɥ-lp!ゔnpѵu_5E.[ׇbP^Ŀ鳣,0f I˺?BcBQ'9k{/~tt5!)pXH׿L%Fߵ[)9{HFfYԆÙ|uqm4"u3.tQE@G;"ZS pw0+,%D(d5d +|=*ŘrFBræWoF_Fq{vV髉$B1AwӨ~ytfpRʳe譋]ԔĖ5]WuI0< mӎHk:Q]RpdVk.dž`'r5eGyD~Aǔ]Dsdzj k@y?Q䮆7TgO ;OIb(#i[ՌXN:Jly )jëo$ˊD}ppS%wpznD@_ u'+Gv*R+qX1+ 9eTDTݐ d4Z%-/a&NЉM:Ѱ"ہ(ҚhoˁBßr]RL%|d)Zj *J=IQ;"};\#<tmԢ?۩KwbHz~|7<2ɤBV8>L$b)bIȠiݷcO3 N"S#2u®+R7$C?Nf}⶛l *{LJlCTr87'?Hq}af#h (ř ւC„ŢZ??-"Y(sMO!uÖiT%߇Q~|s+R.[) yX&%߄xٮ4JtiFpc;Vhn'd=|@.w+y5֚c얬^7_9N&ʁt)´yŷo?=&-'@ ) \] `Ol]:|ԣT//XX#;@P2, L]'MlTzj޻Ix.P|͊ _a^H ̃hys~ 8ol#8t`q|RlqxI,8s kO[0->6 Oi/?Q}ny/V|košy>9dC m Zokh.aZ.GI$cDT65F(?ښ2Ʌ.I/3oPks*;*z)c{wz{2"'!Qw`k)\V;t9HYfXvAr3O{(c^ ? q)M`'F&>y]E8 k9jkbn=ʺ{7Y9c`=!mڽӀ{nt琻z`N{![3< q -x|QjSDY"79] >}f{$k_0H~:׹$?NKi>_Qpu3c92,S:;=[{\a?kݹw(ڪ6 U~jjЙX!M9=+2 t\c!]OמQLvcǟwTjDʿr ϵ=)(N8`Kpռ63}NIy ) 5w58w.jb !( Aqp6Gv#K~PRp 1ppvXeYm m1=(ɰi9c< 7d AYKZh 0}ͱwM2.",5"%%1Xbmiᄹ`PL`z( U5(Jڂ͕7xa‰vy+wC @4 7p*Yį<ؤ:..,N嫴!iCkzKLtׄ_*mwFܯl~+9gƜ/v1Mҹ-&]ry3c&go(tU7:uP2ļgU&.y5]iV+`zzyT.АCS]ji*Ѳ;Qts]ܼ^y#/?NP*qہ|Ƕp",1MJ\Ljc_DbV*toIH"me%Kḭr2]KR=\=墼1uD\AsH<^2". w/xJ`Ϫe6ωW󣱊)v 㟯,3ŜHcuL֎ vF}1,1/"DQdos)u+b[y؉czJIZ%+qV4f/8$^4[߂15-5zqe(A34Ow(22lRK]W? *qml%W{ bEbX&:5v|Eo Q@妿,OKY9zx]%J+ qjd̃3GvP[FCO[Tn(r<6Sik\Z( ,^9Kq>*?7ngWw349!;!ObvM_瓸^X3{Ǖi׊2-6q8uˎDqȜWe)81=Jv H~ւ_KZ&{Lg褒j_үwB76i^}7'pU G8f _xPǬ{J$xYB2XDIQش} =hdkFoh*ɠUޖTHdϡn`)=_b(&s8AkRH=o8hCjCZ5 {jJb,3t@  -ФAT ‘q8"HL_0n;8=ofC0W_(qR`O][cE*!DϔjWʀd\=ۉLɹoܸLpmf5T|_TEu=M&j "UCP}#s궒}gp`y*z!;Ԃn5w b&?o{*~P¸;c <}4g~gG؄zn>/U=:xiW7$:><8/74@}>r?C- `a/cF4euc;t#Nzhז&`gjжh )vsç&,"ͶѶ{i=3 702Gj^@p|.5Lj =ejk0Ͳpܻ{2~КBKJNG̔` Y}U[" )Cڔ`+Y* sۃ.QsoՁ|*Uɡ2;z:oS$ οǭ$I=]>(d z} CX쬫&ۛ)Ҏ5ã*(Eª|~.ݮF_?cWreMuzypTb2EXO+I4=08"LAC$!vkPy/+ʜfSbIz'Ds4t#A2-i9*򐳥DBsõO:!#e#lّ[B s}ڭۈR!13ʵ:]S0i&6so$ wn2}ARP-X=(|hR쟶|3%:fSw/; Q]%'śyͻC9c6)`"[N #͊EdSvYn%TALjj{$H !!bs2e.JZ+Jgͅyd3}<肧\sI5ʏ T(B^w.犈˾p3nyUXKsU%J ~{= 1Pf.EsOphPz}Wsf۵.Oc_/bSSY?,ՕxVIYХrhJgo4OZ ӱo)xxP6RR&[.p #4mN!rOt%4it`7kV49_&K2OS4z^0At ˳1<> h^N169ed_T,";WjUx[ s@ F6$1cy ]dwRQ #}PD?6Yġ=q AݛޒJ"\q<[<|Nhe0'yǖֱXJϔIO"F3`e%E?@s}ј%_?'+0n';{yž s]m7~֦cI>< H27ZJ8jWfÉOo LZ%YB~?0i g–1f~>-C"TǾ_Hj2Z@<"Wo?7ߏr{)(ᒾ:ؖVc7a(ߢT|ja%(hv* 2h$i*Ƌ,IUQ;JThGĈ]i arfv.=ةXbTaU쩆lHh8;V!{m& &oWɥlqHLM;pŲ #K>cߥD:]3_%2\GyuJqkwEݛHϷߔUT Dj1Ku}(-~xY5`:/5yӓԓ2G iP6&|ՀtV(myq6zge2ߣ̪(BBʁĪWf-jn8:.6ư*4 ~Z."KWk%)_jsésHc~nMΑ!T3V| 곁 Yp\UǷ#!¸!w:~RͭpYϴ*a P}LbL^r- qP A$/`nL_ËŞPW-s&֧K|'Cq5tTeBb_ Q.xxPDge=$Qfii݋kMtT?iL|;-/ٻ~oq\>}Ei辮g]H Mrg0:f*sǻqhdX ϘfYը&l]]KGRB>:I- gR~p猰tG Z_N dpT~??G zLyx^WFȜXXR]2ih<)q[]o' "p:L:k3/RW<c)fύV 51=l:3X7HŕP/RmzDkXoёb緁owGQsN`a!EDhQN S^$௣GD=v2}-U?6|:c iC˥|PK V$R$profile/ ۅӃU]U`ӃUPKV$R#F43Ĥ$$ &profile/2020-12-31-5fedd68c83f40.png ۅӃUۅӃUۅӃUPK =W,R$product/ O.Q҃UPKV$RX"xKW$$ product/2020-12-30-5fec1b3f84b2e.png |҃U|҃U|҃UPKV$RC8F$$ product/2020-12-30-5fec1b3f983f5.png +҃U+҃U+҃UPKV$RX"xKW$$ product/2020-12-30-5fec1b3fa8fd8.png +҃U+҃U+҃UPKV$RC8F$$ gproduct/2020-12-30-5fec1bf5418ea.png +҃U+҃U+҃UPKV$RX"xKW$$ product/2020-12-30-5fec1c3d21bca.png 1҃U1҃U1҃UPK=W,RX"xKW$$ product/2021-01-12-5ffd2c576801b.png OPK =W,R$!9product/thumbnail/ P1/D1҃UPKV$Rm9MD.$ Q9product/thumbnail/2020-12-30-5fec1b3fba026.png ҃U҃U҃UPKV$RH*@.9.$ sproduct/thumbnail/2020-12-30-5fec1bf557ad7.png `ӃU`ӃU`ӃUPKV$RH*@.9.$ product/thumbnail/2020-12-30-5fec1c3d38c93.png `ӃU`ӃU`ӃUPK=W,Rm9MD.$ product/thumbnail/2021-01-12-5ffd2c57af6fb.png P1P1P1PK V$R$ png/ Q҃U]UЃUPKV$RWqbac $ png/404.png #ЃU#ЃU#ЃUPKV$RL2ho $ mpng/500.png уUуUуUPKV$R9P$ \png/apple_app.png уUуUуUPKV$RJh7$ vpng/contact.png K9уUK9уUK9уUPKV$Rfp$ :png/delivery.png }GуU}GуUK9уUPKV$R̤J$ _png/flashDeal.jpg уUуUуUPKV$R&Ѿ(($ ؕpng/Genuine.png уUуUуUPKV$R@&55 $ þpng/google_app.png уUуUуUPKV$R /w$ xpng/master.png уUуUуUPKV$RoCot:4: $ ӊpng/money.png уUуUуUPKV$RPHj|$ png/Payment.png уUуUуUPKV$RN"<$ png/paypal.png ҃U҃U҃UPKV$R`Qm $  png/paytm.png :҃U:҃U:҃UPKV$RtJ $ ) png/visa.png Q҃UQ҃UQ҃UPK C#R$ logo/ @3{[;@3PKC#RvcB $ logo/logo.png @3@3@3PK C#R$ icon/ @3{[;:>3PKC#RTO $ icon/add to bag.png :>3:>3:>3PKC#RU,'$ , icon/attach.png a>3a>3a>3PKC#R#y3 $ icon/bag.png q>3q>3q>3PKC#R=o  $ ( icon/book.png q>3q>3q>3PKC#R^$ * icon/calendar.png q>3q>3q>3PKC#R $ g icon/cart 2.png >3>3q>3PKC#RG{=T O $ } icon/cart.png ^>3^>3^>3PKC#R:@y } $  icon/chat 2.png ^>3^>3^>3PKC#R{'J $ ' icon/chat.png ^>3^>3^>3PKC#R E^$ * icon/computer.png ^>3^>3^>3PKC#Rxx$ . icon/constructions.png ^>3^>3^>3PKC#R])1+$ -@ icon/cosmetics.png >3>3>3PKC#R"A $ si icon/coupons.png >3>3>3PKC#Rdw/$ fq icon/deals.png >3>3>3PKC#R&A$ icon/decor.png v>3v>3v>3PKC#Rz:$  icon/delivery.png v>3v>3v>3PKC#Rfa$  icon/dry foods.png v>3v>3v>3PKC#RfȮ$ icon/edit 2.png v>3v>3v>3PKC#R+ $ icon/edit.png >3>3>3PKC#R$ icon/emoji.png >3>3>3PKC#R8G$$ icon/eyed off.png >3>3>3PKC#R-c}  $ icon/facebook.png >3>3>3PKC#R#4 $ icon/fasion.png ?3?3?3PKC#R66 c $ T icon/fast delivery.png ?3?3?3PKC#Rmf$  icon/filter 2.png ?3?3?3PKC#RzG  $ S! icon/filter.png ?3?3?3PKC#R Bef$ . icon/flash.png 9?39?39?3PKC#RI$ |> icon/furniture.png 9?39?39?3PKC#R\$=$ E icon/google.png 9?39?39?3PKC#R4r/ $ T icon/grocery.png 3v?33v?33v?3PKC#Rks $ _ icon/help center.png  ?3 ?3 ?3PKC#R4= $ i icon/home.png  ?3 ?3 ?3PKC#R`%$ r icon/Icon awesome-cart-arrow-down.png :>3:>3:>3PKC#R$ Ƃ icon/laggeg.png  ?3 ?3 ?3PKC#R]U$ icon/language.png  ?3 ?3 ?3PKC#R(k)$ icon/logo 2.png ?3?3?3PKC#RvcB $ icon/logo.png :?3:?3:?3PKC#R $ icon/message.png Q?3Q?3:?3PKC#Rdf} $ icon/more.png Q?3Q?3Q?3PKC#RwF $ icon/mouse.png Q?3Q?3Q?3PKC#R8A<$ icon/notification 2.png Q?3Q?3Q?3PKC#RfKw $  icon/notification.png Q?3Q?3Q?3PKC#Rxٙ>9$  icon/offer.png  ?3 ?3Q?3PKC#RP#  $ k icon/option.png ?3?3?3PKC#RrG B $ & icon/privacy policy.png ?3?3?3PKC#R> $ -0 icon/settings.png ?3?3?3PKC#R|$ : icon/share.png ?3?3?3PKC#R1zV$ A icon/smartphone.png ?3?3?3PKC#R?$ E icon/starts.png ?3?3?3PKC#Rjv1gb $ EW icon/top.png @3@3@3PKC#R5 0 $ j icon/wish.png @3@3@3PKC#Rp:$ 6t icon/wishlist.png @3@3@3PK 0R$ deal/ (MN'PK0R)E-!$  deal/2021-01-03-5ff1dd1502fe8.png (((PK V$R$ company/ ЃU6U1ЃUPKV$R6Y'4*$$ ? company/2020-12-30-5fec1404e95e4.png ЃUЃUЃUPKV$R6Y'4*$$ y company/2020-12-30-5fec140edf20b.png ЃUЃUЃUPKV$R6Y'4*$$ company/2020-12-30-5fec141d8b45c.png ЃUЃUЃUPK V$R $category/ 1ЃU6UUPЃUPKV$R&0bV%$ category/2020-12-30-5fec180f8c8b5.png ?wЃU?wЃU?wЃUPKV$R&0bV%$ category/2020-12-30-5fec18324123d.png ?wЃU?wЃU?wЃUPKV$R&0bV%$ (category/2020-12-30-5fec18492236d.png ?wЃU?wЃU?wЃUPKV$R&0bV%$ ;category/2020-12-30-5fec18aaac934.png 1ЃU1ЃU?wЃUPKV$R&0bV%$ $Ncategory/2020-12-30-5fec18c05a123.png 1ЃU1ЃU1ЃUPKV$R&0bV%$ (acategory/2020-12-30-5fec18efbc290.png 1ЃU1ЃU1ЃUPK V$R$,tbrand/ UPЃU6UA ЃUPKV$R7?"$ Ptbrand/2020-12-30-5fec15e19fceb.png L)ЃUL)ЃUL)ЃUPKV$R7?"$ zbrand/2020-12-30-5fec15f740b6e.png L)ЃUL)ЃUL)ЃUPKV$R7?"$ brand/2020-12-30-5fec16070716c.png L)ЃUL)ЃUL)ЃUPKV$R7?"$ brand/2020-12-30-5fec161abf116.png UPЃUUPЃUUPЃUPKV$R7?"$ Tbrand/2020-12-30-5fec163c19d49.png UPЃUUPЃUUPЃUPKV$R7?"$ "brand/2020-12-30-5fec164a492ff.png UPЃUUPЃUUPЃUPK V$R$Lbanner/ A ЃU6UσUPKV$R%Έ""#$ qbanner/2020-12-30-5fec13484634e.png  σU σU σUPKV$R%Έ""#$ Ybanner/2020-12-30-5fec136477e9b.png  σU σU σUPKV$R%Έ""#$ Abanner/2020-12-30-5fec1374a2136.png  σU σU σUPKV$R%Έ""#$ )banner/2020-12-30-5fec1382219d1.png  σU σU σUPKV$R%Έ""#$ 1banner/2020-12-30-5fec13906fe37.png σUσUσUPKV$RqEP#$ Kbanner/2020-12-30-5fec15660025c.png A ЃUA ЃUA ЃUPKV$RM?U?$ def.png ЃUЃUЃUPKpp!-[PK! backup/database_v11.0.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Aug 03, 2022 at 08:16 AM -- Server version: 10.4.24-MariaDB -- PHP Version: 8.1.6 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_11.0` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT 2, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT 0, `withdrawn` double NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT 0.00, `delivery_charge_earned` double(8,2) NOT NULL DEFAULT 0.00, `pending_amount` double(8,2) NOT NULL DEFAULT 0.00, `total_tax_collected` double(8,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `published` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` int(10) UNSIGNED DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1}]', '2020-10-11 07:53:02', '2021-06-10 21:16:25'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2022-08-03 06:14:35'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2022-08-03 06:14:35'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\"}', '2020-10-11 13:53:02', '2021-05-25 21:43:11'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2022-08-03 06:14:35'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2022-08-03 06:14:35'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variations` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `quantity` int(11) NOT NULL DEFAULT 1, `price` double NOT NULL DEFAULT 1, `tax` double NOT NULL DEFAULT 1, `discount` double NOT NULL DEFAULT 1, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT 0, `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `seller_id` bigint(20) NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT 0, `sent_by_seller` tinyint(1) NOT NULL DEFAULT 0, `seen_by_customer` tinyint(1) NOT NULL DEFAULT 1, `seen_by_seller` tinyint(1) NOT NULL DEFAULT 1, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (16, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (38, 'Fuchsia', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (93, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT 0, `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT 0.00, `max_discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT 0.00, `royality_points` decimal(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `featured` tinyint(1) NOT NULL DEFAULT 0, `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `answer` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ranking` int(11) NOT NULL DEFAULT 1, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT 0.000, `debit` decimal(24,3) NOT NULL DEFAULT 0.000, `balance` decimal(24,3) NOT NULL DEFAULT 0.000, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT 0, `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_amount` double NOT NULL DEFAULT 0, `shipping_address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT 0, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT 0, `shipping_cost` double(8,2) NOT NULL DEFAULT 0.00, `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT 0.00, `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT 0, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int(11) NOT NULL DEFAULT 0, `price` double NOT NULL DEFAULT 0, `tax` double NOT NULL DEFAULT 0, `discount` double NOT NULL DEFAULT 0, `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT 1, `refund_request` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(8,2) NOT NULL DEFAULT 0.00, `seller_amount` decimal(8,2) NOT NULL DEFAULT 0.00, `admin_commission` decimal(8,2) NOT NULL DEFAULT 0.00, `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(8,2) NOT NULL DEFAULT 0.00, `tax` decimal(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT 1, `refundable` tinyint(1) NOT NULL DEFAULT 1, `images` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT 0, `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `unit_price` double NOT NULL DEFAULT 0, `purchase_price` double NOT NULL DEFAULT 0, `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT 1, `details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_shipping` tinyint(1) NOT NULL DEFAULT 0, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `featured_status` tinyint(1) NOT NULL DEFAULT 1, `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT 0, `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT 0.00, `qty` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rejected_note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_info` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT 0, `status` int(11) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT 0, `withdrawn` double NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT 0.00, `pending_withdraw` double(8,2) NOT NULL DEFAULT 0.00, `delivery_charge_earned` double(8,2) NOT NULL DEFAULT 0.00, `collected_cash` double(8,2) NOT NULL DEFAULT 0.00, `total_tax_collected` double(8,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT 0.00, `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT 0, `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT 0, `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT 0.000, `debit` decimal(24,3) NOT NULL DEFAULT 0.000, `admin_bonus` decimal(24,3) NOT NULL DEFAULT 0.000, `balance` decimal(24,3) NOT NULL DEFAULT 0.000, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `transaction_note` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `delivery_men_phone_unique` (`phone`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=83; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=174; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!˝##backup/116732/index.phpnu['.$bin);?>PK!backup/116732/.htaccessnu[ Order allow,deny Deny from all Order allow,deny Allow from all PK!backup/116732/288173/index.phpnu[PK!backup/116732/288173/.htaccessnu[ Order allow,deny Deny from all Order allow,deny Allow from all PK!backup/index.phpnu[PK!terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\"}', '2020-10-11 13:53:02', '2021-05-25 21:43:11'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, NULL), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":null}', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `seller_id` bigint(20) NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (16, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (38, 'Fuchsia', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (93, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_amount` double NOT NULL DEFAULT '0', `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(8,2) NOT NULL DEFAULT '0.00', `tax` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `images` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0); -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `transaction_note` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `delivery_men_phone_unique` (`phone`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=70; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=146; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!cyȈȈbackup/database_v8.0.sqlnu[-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Mar 20, 2022 at 01:39 PM -- Server version: 5.7.34 -- PHP Version: 7.4.21 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_live` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` int(10) UNSIGNED DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1}]', '2020-10-11 07:53:02', '2021-06-10 21:16:25'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"store_id\":null,\"store_password\":null}', '2020-11-09 08:36:51', '2021-07-06 12:29:46'), (7, 'paypal', '{\"status\":\"0\",\"paypal_client_id\":null,\"paypal_secret\":null}', '2020-11-09 08:51:39', '2021-07-06 12:29:57'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\"}', '2020-10-11 13:53:02', '2021-05-25 21:43:11'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, NULL), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":null}', NULL, NULL), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0', `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `seller_id` bigint(20) NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (16, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (38, 'Fuchsia', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (93, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_amount` double NOT NULL DEFAULT '0', `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(8,2) NOT NULL DEFAULT '0.00', `tax` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `images` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0); -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `transaction_note` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `delivery_men_phone_unique` (`phone`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=74; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=163; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!ַfzzbackup/database_v14.2.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Oct 30, 2023 at 11:03 AM -- Server version: 5.7.39 -- PHP Version: 8.2.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_db` -- -- -------------------------------------------------------- -- -- Table structure for table `addon_settings` -- CREATE TABLE `addon_settings` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `key_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `live_values` longtext COLLATE utf8mb4_unicode_ci, `test_values` longtext COLLATE utf8mb4_unicode_ci, `settings_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'live', `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `addon_settings` -- INSERT INTO `addon_settings` (`id`, `key_name`, `live_values`, `test_values`, `settings_type`, `mode`, `is_active`, `created_at`, `updated_at`, `additional_data`) VALUES ('070c6bbd-d777-11ed-96f4-0c7a158e4469', 'twilio', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:29', NULL), ('070c766c-d777-11ed-96f4-0c7a158e4469', '2factor', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:36', NULL), ('0d8a9308-d6a5-11ed-962c-0c7a158e4469', 'mercadopago', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-27 11:57:11', '{\"gateway_title\":\"Mercadopago\",\"gateway_image\":null}'), ('0d8a9e49-d6a5-11ed-962c-0c7a158e4469', 'liqpay', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:31', '{\"gateway_title\":\"Liqpay\",\"gateway_image\":null}'), ('101befdf-d44b-11ed-8564-0c7a158e4469', 'paypal', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:41:32', '{\"gateway_title\":\"Paypal\",\"gateway_image\":null}'), ('133d9647-cabb-11ed-8fec-0c7a158e4469', 'hyper_pay', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:42', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('1821029f-d776-11ed-96f4-0c7a158e4469', 'msg91', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:48', NULL), ('18210f2b-d776-11ed-96f4-0c7a158e4469', 'nexmo', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('18fbb21f-d6ad-11ed-962c-0c7a158e4469', 'foloosi', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:33', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('2767d142-d6a1-11ed-962c-0c7a158e4469', 'paytm', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-22 06:30:55', '{\"gateway_title\":\"Paytm\",\"gateway_image\":null}'), ('3201d2e6-c937-11ed-a424-0c7a158e4469', 'amazon_pay', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:07', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('4593b25c-d6a1-11ed-962c-0c7a158e4469', 'paytabs', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:51', '{\"gateway_title\":\"Paytabs\",\"gateway_image\":null}'), ('4e9b8dfb-e7d1-11ed-a559-0c7a158e4469', 'bkash', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:39:42', '{\"gateway_title\":\"Bkash\",\"gateway_image\":null}'), ('544a24a4-c872-11ed-ac7a-0c7a158e4469', 'fatoorah', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:24', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('58c1bc8a-d6ac-11ed-962c-0c7a158e4469', 'ccavenue', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:42:38', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-643783f01d386.png\"}'), ('5e2d2ef9-d6ab-11ed-962c-0c7a158e4469', 'thawani', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:40', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-64378f9856f29.png\"}'), ('60cc83cc-d5b9-11ed-b56f-0c7a158e4469', 'sixcash', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:16:17', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-12-6436774e77ff9.png\"}'), ('68579846-d8e8-11ed-8249-0c7a158e4469', 'alphanet_sms', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('6857a2e8-d8e8-11ed-8249-0c7a158e4469', 'sms_to', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('74c30c00-d6a6-11ed-962c-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:37:43', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('74e46b0a-d6aa-11ed-962c-0c7a158e4469', 'tap', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:09', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('761ca96c-d1eb-11ed-87ca-0c7a158e4469', 'swish', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('7b1c3c5f-d2bd-11ed-b485-0c7a158e4469', 'payfast', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:13', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('8592417b-d1d1-11ed-a984-0c7a158e4469', 'esewa', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:38', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('9162a1dc-cdf1-11ed-affe-0c7a158e4469', 'viva_wallet', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', 'payment_config', 'test', 0, NULL, NULL, NULL), ('998ccc62-d6a0-11ed-962c-0c7a158e4469', 'stripe', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:55', '{\"gateway_title\":\"Stripe\",\"gateway_image\":null}'), ('a3313755-c95d-11ed-b1db-0c7a158e4469', 'iyzi_pay', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a76c8993-d299-11ed-b485-0c7a158e4469', 'momo', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', 'payment_config', 'live', 0, NULL, '2023-08-30 04:19:28', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a8608119-cc76-11ed-9bca-0c7a158e4469', 'moncash', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:34', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('ad5af1c1-d6a2-11ed-962c-0c7a158e4469', 'razor_pay', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:00', '{\"gateway_title\":\"Razor pay\",\"gateway_image\":null}'), ('ad5b02a0-d6a2-11ed-962c-0c7a158e4469', 'senang_pay', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', 'payment_config', 'test', 0, NULL, '2023-08-27 09:58:57', '{\"gateway_title\":\"Senang pay\",\"gateway_image\":null}'), ('b6c333f6-d8e9-11ed-8249-0c7a158e4469', 'akandit_sms', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b6c33c87-d8e9-11ed-8249-0c7a158e4469', 'global_sms', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b8992bd4-d6a0-11ed-962c-0c7a158e4469', 'paymob_accept', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', 'payment_config', 'test', 0, NULL, NULL, '{\"gateway_title\":\"Paymob accept\",\"gateway_image\":null}'), ('c41c0dcd-d119-11ed-9f67-0c7a158e4469', 'maxicash', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:49:15', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('c9249d17-cd60-11ed-b879-0c7a158e4469', 'pvit', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', 'payment_config', 'test', 0, NULL, NULL, NULL), ('cb0081ce-d775-11ed-96f4-0c7a158e4469', 'releans', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('d4f3f5f1-d6a0-11ed-962c-0c7a158e4469', 'flutterwave', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:41:03', '{\"gateway_title\":\"Flutterwave\",\"gateway_image\":null}'), ('d822f1a5-c864-11ed-ac7a-0c7a158e4469', 'paystack', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:45', '{\"gateway_title\":\"Paystack\",\"gateway_image\":null}'), ('daec8d59-c893-11ed-ac7a-0c7a158e4469', 'xendit', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:46', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('dc0f5fc9-d6a5-11ed-962c-0c7a158e4469', 'worldpay', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:26', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('e0450278-d8eb-11ed-8249-0c7a158e4469', 'signal_wire', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('e0450b40-d8eb-11ed-8249-0c7a158e4469', 'paradox', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-09-10 01:14:01', NULL), ('ea346efe-cdda-11ed-affe-0c7a158e4469', 'ssl_commerz', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:43:49', '{\"gateway_title\":\"Ssl commerz\",\"gateway_image\":null}'), ('eed88336-d8ec-11ed-8249-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149c546-d8ea-11ed-8249-0c7a158e4469', 'viatech', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149cd9c-d8ea-11ed-8249-0c7a158e4469', '019_sms', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `add_fund_bonus_categories` -- CREATE TABLE `add_fund_bonus_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `bonus_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `min_add_money_amount` double(14,2) NOT NULL DEFAULT '0.00', `max_bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `start_date_time` datetime DEFAULT NULL, `end_date_time` datetime DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `identify_image` text COLLATE utf8mb4_unicode_ci, `identify_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identify_number` int(11) DEFAULT NULL, `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button_text` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `background_color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1,\"default\":true}]', '2020-10-11 07:53:02', '2023-10-13 11:34:53'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2023-01-10 05:51:56'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2023-01-10 05:51:56'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\",\"primary_light\":\"#CFDFFB\"}', '2020-10-11 13:53:02', '2023-10-30 11:02:55'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2023-01-10 05:51:56'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":0,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":0,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2023-01-10 05:51:56'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (87, 'refund-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (88, 'return-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (89, 'cancellation-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (90, 'offline_payment', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (91, 'temporary_close', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (92, 'vacation_add', '{\"status\":0,\"vacation_start_date\":null,\"vacation_end_date\":null,\"vacation_note\":null}', NULL, '2023-03-04 06:25:36'), (93, 'cookie_setting', '{\"status\":0,\"cookie_text\":null}', NULL, '2023-03-04 06:25:36'), (94, 'maximum_otp_hit', '0', NULL, '2023-06-13 13:04:49'), (95, 'otp_resend_time', '0', NULL, '2023-06-13 13:04:49'), (96, 'temporary_block_time', '0', NULL, '2023-06-13 13:04:49'), (97, 'maximum_login_hit', '0', NULL, '2023-06-13 13:04:49'), (98, 'temporary_login_block_time', '0', NULL, '2023-06-13 13:04:49'), (104, 'apple_login', '[{\"login_medium\":\"apple\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":0,\"team_id\":\"\",\"key_id\":\"\",\"service_file\":\"\",\"redirect_url\":\"\"}]', NULL, '2023-10-13 05:34:53'), (105, 'ref_earning_status', '0', NULL, '2023-10-13 05:34:53'), (106, 'ref_earning_exchange_rate', '0', NULL, '2023-10-13 05:34:53'), (107, 'guest_checkout', '0', NULL, '2023-10-13 11:34:53'), (108, 'minimum_order_amount', '0', NULL, '2023-10-13 11:34:53'), (109, 'minimum_order_amount_by_seller', '0', NULL, '2023-10-13 11:34:53'), (110, 'minimum_order_amount_status', '0', NULL, '2023-10-13 11:34:53'), (111, 'admin_login_url', 'admin', NULL, '2023-10-13 11:34:53'), (112, 'employee_login_url', 'employee', NULL, '2023-10-13 11:34:53'), (113, 'free_delivery_status', '0', NULL, '2023-10-13 11:34:53'), (114, 'free_delivery_responsibility', 'admin', NULL, '2023-10-13 11:34:53'), (115, 'free_delivery_over_amount', '0', NULL, '2023-10-13 11:34:53'), (116, 'free_delivery_over_amount_seller', '0', NULL, '2023-10-13 11:34:53'), (117, 'add_funds_to_wallet', '0', NULL, '2023-10-13 11:34:53'), (118, 'minimum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (119, 'maximum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (120, 'user_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (121, 'seller_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (122, 'delivery_man_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (123, 'whatsapp', '{\"status\":1,\"phone\":\"00000000000\"}', NULL, '2023-10-13 11:34:53'), (124, 'currency_symbol_position', 'left', NULL, '2023-10-13 11:34:53'), (148, 'company_reliability', '[{\"item\":\"delivery_info\",\"title\":\"Fast Delivery all across the country\",\"image\":\"\",\"status\":1},{\"item\":\"safe_payment\",\"title\":\"Safe Payment\",\"image\":\"\",\"status\":1},{\"item\":\"return_policy\",\"title\":\"7 Days Return Policy\",\"image\":\"\",\"status\":1},{\"item\":\"authentic_product\",\"title\":\"100% Authentic Products\",\"image\":\"\",\"status\":1}]', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0', `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `seller_id` bigint(20) DEFAULT NULL COMMENT 'NULL=in-house, 0=all seller', `customer_id` bigint(20) DEFAULT NULL COMMENT '0 = all customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT '0.00', `cash_in_hand` decimal(50,2) NOT NULL DEFAULT '0.00', `pending_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `total_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT '0.00', `credit` decimal(50,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `is_online` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `digital_product_otp_verifications` -- CREATE TABLE `digital_product_otp_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `guest_users` -- CREATE TABLE `guest_users` ( `id` bigint(20) UNSIGNED NOT NULL, `ip_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fcm_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `guest_users` -- INSERT INTO `guest_users` (`id`, `ip_address`, `fcm_token`, `created_at`, `updated_at`) VALUES (1, '::1', NULL, '2023-10-13 05:34:54', NULL), (2, '::1', NULL, '2023-10-30 11:02:56', NULL); -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68), (195, '2022_12_17_035723_few_field_add_to_coupons_table', 69), (196, '2022_12_26_231606_add_coupon_discount_bearer_and_admin_commission_to_orders', 69), (197, '2023_01_04_003034_alter_billing_addresses_change_zip', 69), (198, '2023_01_05_121600_change_id_to_transactions_table', 69), (199, '2023_02_02_113330_create_product_tag_table', 70), (200, '2023_02_02_114518_create_tags_table', 70), (201, '2023_02_02_152248_add_tax_model_to_products_table', 70), (202, '2023_02_02_152718_add_tax_model_to_order_details_table', 70), (203, '2023_02_02_171034_add_tax_type_to_carts', 70), (204, '2023_02_06_124447_add_color_image_column_to_products_table', 70), (205, '2023_02_07_120136_create_withdrawal_methods_table', 70), (206, '2023_02_07_175939_add_withdrawal_method_id_and_withdrawal_method_fields_to_withdraw_requests_table', 70), (207, '2023_02_08_143314_add_vacation_start_and_vacation_end_and_vacation_not_column_to_shops_table', 70), (208, '2023_02_09_104656_add_payment_by_and_payment_not_to_orders_table', 70), (209, '2023_03_27_150723_add_expires_at_to_phone_or_email_verifications', 71), (210, '2023_04_17_095721_create_shop_followers_table', 71), (211, '2023_04_17_111249_add_bottom_banner_to_shops_table', 71), (212, '2023_04_20_125423_create_product_compares_table', 71), (213, '2023_04_30_165642_add_category_sub_category_and_sub_sub_category_add_in_product_table', 71), (214, '2023_05_16_131006_add_expires_at_to_password_resets', 71), (215, '2023_05_17_044243_add_visit_count_to_tags_table', 71), (216, '2023_05_18_000403_add_title_and_subtitle_and_background_color_and_button_text_to_banners_table', 71), (217, '2023_05_21_111300_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_users_table', 71), (218, '2023_05_21_111600_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_phone_or_email_verifications_table', 71), (219, '2023_05_21_112215_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_password_resets_table', 71), (220, '2023_06_04_210726_attachment_lenght_change_to_reviews_table', 71), (221, '2023_06_05_115153_add_referral_code_and_referred_by_to_users_table', 72), (222, '2023_06_21_002658_add_offer_banner_to_shops_table', 72), (223, '2023_07_08_210747_create_most_demandeds_table', 72), (224, '2023_07_31_111419_add_minimum_order_amount_to_sellers_table', 72), (225, '2023_08_03_105256_create_offline_payment_methods_table', 72), (226, '2023_08_07_131013_add_is_guest_column_to_carts_table', 72), (227, '2023_08_07_170601_create_offline_payments_table', 72), (228, '2023_08_12_102355_create_add_fund_bonus_categories_table', 72), (229, '2023_08_12_215346_create_guest_users_table', 72), (230, '2023_08_12_215659_add_is_guest_column_to_orders_table', 72), (231, '2023_08_12_215933_add_is_guest_column_to_shipping_addresses_table', 72), (232, '2023_08_15_000957_add_email_column_toshipping_address_table', 72), (233, '2023_08_17_222330_add_identify_related_columns_to_admins_table', 72), (234, '2023_08_20_230624_add_sent_by_and_send_to_in_notifications_table', 72), (235, '2023_08_20_230911_create_notification_seens_table', 72), (236, '2023_08_21_042331_add_theme_to_banners_table', 72), (237, '2023_08_24_150009_add_free_delivery_over_amount_and_status_to_seller_table', 72), (238, '2023_08_26_161214_add_is_shipping_free_to_orders_table', 72), (239, '2023_08_26_173523_add_payment_method_column_to_wallet_transactions_table', 72), (240, '2023_08_26_204653_add_verification_status_column_to_orders_table', 72), (241, '2023_08_26_225113_create_order_delivery_verifications_table', 72), (242, '2023_09_03_212200_add_free_delivery_responsibility_column_to_orders_table', 72), (243, '2023_09_23_153314_add_shipping_responsibility_column_to_orders_table', 72), (244, '2023_09_25_152733_create_digital_product_otp_verifications_table', 72), (245, '2023_09_27_191638_add_attachment_column_to_support_ticket_convs_table', 73), (246, '2023_10_01_205117_add_attachment_column_to_chattings_table', 73), (247, '2023_10_07_182714_create_notification_messages_table', 73), (248, '2023_10_21_113354_add_app_language_column_to_users_table', 73), (249, '2023_10_21_123433_add_app_language_column_to_sellers_table', 73), (250, '2023_10_21_124657_add_app_language_column_to_delivery_men_table', 73), (251, '2023_10_22_130225_add_attachment_to_support_tickets_table', 73), (252, '2023_10_25_113233_make_message_nullable_in_chattings_table', 73), (253, '2023_10_30_152005_make_attachment_column_type_change_to_reviews_table', 73); -- -------------------------------------------------------- -- -- Table structure for table `most_demandeds` -- CREATE TABLE `most_demandeds` ( `id` bigint(20) UNSIGNED NOT NULL, `banner` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `sent_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'system', `sent_to` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT '0', `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notification_messages` -- CREATE TABLE `notification_messages` ( `id` bigint(20) UNSIGNED NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `notification_messages` -- INSERT INTO `notification_messages` (`id`, `user_type`, `key`, `message`, `status`, `created_at`, `updated_at`) VALUES (1, 'customer', 'order_pending_message', 'order pen message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (2, 'customer', 'order_confirmation_message', 'Order con Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (3, 'customer', 'order_processing_message', 'Order pro Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (4, 'customer', 'out_for_delivery_message', 'Order ouut Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (5, 'customer', 'order_delivered_message', 'Order del Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (6, 'customer', 'order_returned_message', 'Order hh Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (7, 'customer', 'order_failed_message', 'Order fa Message', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (8, 'customer', 'order_canceled', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (9, 'customer', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (10, 'customer', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (11, 'customer', 'message_from_delivery_man', 'customize your message from delivery man message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (12, 'customer', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (13, 'customer', 'fund_added_by_admin_message', 'customize your fund added by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (14, 'seller', 'new_order_message', 'customize your new order message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (15, 'seller', 'refund_request_message', 'customize your refund request message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (16, 'seller', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (17, 'seller', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (18, 'seller', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (19, 'seller', 'delivery_man_assign_by_admin_message', 'customize your delivery man assign by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (20, 'seller', 'order_delivered_message', 'customize your order delivered message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (21, 'seller', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (22, 'seller', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (23, 'seller', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (24, 'seller', 'refund_request_status_changed_by_admin', 'customize your refund request status changed by admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (25, 'delivery_man', 'new_order_assigned_message', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (26, 'delivery_man', 'expected_delivery_date', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (27, 'delivery_man', 'delivery_man_charge', 'customize your delivery man charge message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (28, 'delivery_man', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (29, 'delivery_man', 'order_rescheduled_message', 'customize your order rescheduled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (30, 'delivery_man', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (31, 'delivery_man', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (32, 'delivery_man', 'message_from_admin', 'customize your message from admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (33, 'delivery_man', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (34, 'delivery_man', 'cash_collect_by_admin_message', 'customize your cash collect by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (35, 'delivery_man', 'cash_collect_by_seller_message', 'customize your cash collect by seller message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (36, 'delivery_man', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'); -- -------------------------------------------------------- -- -- Table structure for table `notification_seens` -- CREATE TABLE `notification_seens` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `notification_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payments` -- CREATE TABLE `offline_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `payment_info` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payment_methods` -- CREATE TABLE `offline_payment_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `method_informations` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_note` text COLLATE utf8mb4_unicode_ci, `order_amount` double NOT NULL DEFAULT '0', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `is_pause` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_discount_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `shipping_responsibility` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `is_shipping_free` tinyint(1) NOT NULL DEFAULT '0', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `verification_status` tinyint(4) NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT '0', `expected_delivery_date` date DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_delivery_bearer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_delivery_verifications` -- CREATE TABLE `order_delivery_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `image` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(50,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT '0.00', `tax` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payment_requests` -- CREATE TABLE `payment_requests` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `payer_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_amount` decimal(24,2) NOT NULL DEFAULT '0.00', `gateway_callback_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `success_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `failure_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currency_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'USD', `payment_method` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `is_paid` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `payer_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `external_redirect_link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `attribute_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attribute` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_platform` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci, `color_image` text COLLATE utf8mb4_unicode_ci NOT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT '1', `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_compares` -- CREATE TABLE `product_compares` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL COMMENT 'customer_id', `product_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_tag` -- CREATE TABLE `product_tag` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `tag_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `is_saved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0', `minimum_order_amount` double(8,2) NOT NULL DEFAULT '0.00', `free_delivery_status` int(11) NOT NULL DEFAULT '0', `free_delivery_over_amount` double(8,2) NOT NULL DEFAULT '0.00', `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `bottom_banner` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `offer_banner` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_start_date` date DEFAULT NULL, `vacation_end_date` date DEFAULT NULL, `vacation_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_status` tinyint(4) NOT NULL DEFAULT '0', `temporary_close` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shop_followers` -- CREATE TABLE `shop_followers` ( `id` bigint(20) UNSIGNED NOT NULL, `shop_id` int(11) NOT NULL, `user_id` int(11) NOT NULL COMMENT 'Customer ID', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` bigint(20) UNSIGNED NOT NULL, `tag` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `visit_count` bigint(20) UNSIGNED NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` int(10) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0', `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL, `login_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `referral_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referred_by` int(11) DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`, `login_hit_count`, `is_temp_blocked`, `temp_block_time`, `referral_code`, `referred_by`, `app_language`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, 0, NULL, NULL, NULL, 'en'); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `admin_bonus` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdrawal_methods` -- CREATE TABLE `withdrawal_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` tinyint(4) NOT NULL DEFAULT '0', `is_active` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `withdrawal_method_id` bigint(20) UNSIGNED DEFAULT NULL, `withdrawal_method_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `transaction_note` text COLLATE utf8mb4_unicode_ci, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `addon_settings` -- ALTER TABLE `addon_settings` ADD PRIMARY KEY (`id`), ADD KEY `payment_settings_id_index` (`id`); -- -- Indexes for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `guest_users` -- ALTER TABLE `guest_users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `most_demandeds` -- ALTER TABLE `most_demandeds` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_messages` -- ALTER TABLE `notification_messages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_seens` -- ALTER TABLE `notification_seens` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `offline_payments` -- ALTER TABLE `offline_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD PRIMARY KEY (`id`), ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_compares` -- ALTER TABLE `product_compares` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_tag` -- ALTER TABLE `product_tag` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shop_followers` -- ALTER TABLE `shop_followers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=149; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `guest_users` -- ALTER TABLE `guest_users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=254; -- -- AUTO_INCREMENT for table `most_demandeds` -- ALTER TABLE `most_demandeds` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notification_messages` -- ALTER TABLE `notification_messages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37; -- -- AUTO_INCREMENT for table `notification_seens` -- ALTER TABLE `notification_seens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `offline_payments` -- ALTER TABLE `offline_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `password_resets` -- ALTER TABLE `password_resets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_compares` -- ALTER TABLE `product_compares` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_tag` -- ALTER TABLE `product_tag` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shop_followers` -- ALTER TABLE `shop_followers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!vbackup/database_v12.1.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Nov 15, 2022 at 07:43 AM -- Server version: 10.4.24-MariaDB -- PHP Version: 8.1.6 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_demo` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT 2, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT 0, `withdrawn` double NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT 0.00, `delivery_charge_earned` double(8,2) NOT NULL DEFAULT 0.00, `pending_amount` double(8,2) NOT NULL DEFAULT 0.00, `total_tax_collected` double(8,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `published` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` int(10) UNSIGNED DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1}]', '2020-10-11 07:53:02', '2021-06-10 21:16:25'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2022-11-15 06:43:15'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2022-11-15 06:43:15'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\"}', '2020-10-11 13:53:02', '2021-05-25 21:43:11'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2022-11-15 06:43:16'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2022-11-15 06:43:15'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variations` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `quantity` int(11) NOT NULL DEFAULT 1, `price` double NOT NULL DEFAULT 1, `tax` double NOT NULL DEFAULT 1, `discount` double NOT NULL DEFAULT 1, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT 0, `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT 0, `sent_by_seller` tinyint(1) NOT NULL DEFAULT 0, `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT 1, `seen_by_seller` tinyint(1) NOT NULL DEFAULT 1, `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (16, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (38, 'Fuchsia', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (93, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT 0, `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT 0.00, `max_discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT 0.00, `royality_points` decimal(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT 0.00, `cash_in_hand` decimal(50,2) NOT NULL DEFAULT 0.00, `pending_withdraw` decimal(50,2) NOT NULL DEFAULT 0.00, `total_withdraw` decimal(50,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT 0.00, `credit` decimal(50,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `is_online` tinyint(4) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `featured` tinyint(1) NOT NULL DEFAULT 0, `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `answer` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ranking` int(11) NOT NULL DEFAULT 1, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT 0.000, `debit` decimal(24,3) NOT NULL DEFAULT 0.000, `balance` decimal(24,3) NOT NULL DEFAULT 0.000, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT 0, `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_amount` double NOT NULL DEFAULT 0, `is_pause` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT 0, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT 0, `shipping_cost` double(8,2) NOT NULL DEFAULT 0.00, `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT 0, `expected_delivery_date` date DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT 0.00, `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT 0, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int(11) NOT NULL DEFAULT 0, `price` double NOT NULL DEFAULT 0, `tax` double NOT NULL DEFAULT 0, `discount` double NOT NULL DEFAULT 0, `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT 1, `refund_request` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT 0.00, `seller_amount` decimal(50,2) NOT NULL DEFAULT 0.00, `admin_commission` decimal(50,2) NOT NULL DEFAULT 0.00, `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT 0.00, `tax` decimal(50,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT 1, `refundable` tinyint(1) NOT NULL DEFAULT 1, `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT 0, `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `unit_price` double NOT NULL DEFAULT 0, `purchase_price` double NOT NULL DEFAULT 0, `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT 1, `details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_shipping` tinyint(1) NOT NULL DEFAULT 0, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `featured_status` tinyint(1) NOT NULL DEFAULT 1, `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT 0, `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT 0.00, `qty` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rejected_note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_info` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT 0, `status` int(11) NOT NULL DEFAULT 1, `is_saved` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT 0, `withdrawn` double NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT 0.00, `pending_withdraw` double(8,2) NOT NULL DEFAULT 0.00, `delivery_charge_earned` double(8,2) NOT NULL DEFAULT 0.00, `collected_cash` double(8,2) NOT NULL DEFAULT 0.00, `total_tax_collected` double(8,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT 0.00, `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT 0, `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT 0, `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT 0.000, `debit` decimal(24,3) NOT NULL DEFAULT 0.000, `admin_bonus` decimal(24,3) NOT NULL DEFAULT 0.000, `balance` decimal(24,3) NOT NULL DEFAULT 0.000, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `transaction_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=87; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=195; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!#%//backup/database_10.sqlnu[-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Jun 05, 2022 at 09:36 AM -- Server version: 5.7.34 -- PHP Version: 8.0.8 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_live` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` int(10) UNSIGNED DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1}]', '2020-10-11 07:53:02', '2021-06-10 21:16:25'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2022-06-05 09:35:46'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2022-06-05 09:35:46'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\"}', '2020-10-11 13:53:02', '2021-05-25 21:43:11'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2022-06-05 09:35:46'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2022-06-05 09:35:46'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0', `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `seller_id` bigint(20) NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (16, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (38, 'Fuchsia', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (93, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_amount` double NOT NULL DEFAULT '0', `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(8,2) NOT NULL DEFAULT '0.00', `tax` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `images` longtext COLLATE utf8mb4_unicode_ci, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0', `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `admin_bonus` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `transaction_note` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `delivery_men_phone_unique` (`phone`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=82; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=170; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!OObackup/database_v14.0.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Jun 13, 2023 at 03:05 PM -- Server version: 10.4.28-MariaDB -- PHP Version: 8.1.17 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_test` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) DEFAULT NULL, `phone` varchar(25) DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT 2, `image` varchar(30) NOT NULL DEFAULT 'def.png', `email` varchar(80) NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) NOT NULL, `remember_token` varchar(100) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) DEFAULT NULL, `module_access` varchar(250) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT 0, `withdrawn` double NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT 0.00, `delivery_charge_earned` double(8,2) NOT NULL DEFAULT 0.00, `pending_amount` double(8,2) NOT NULL DEFAULT 0.00, `total_tax_collected` double(8,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) DEFAULT NULL, `banner_type` varchar(255) NOT NULL, `published` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) DEFAULT NULL, `resource_type` varchar(191) DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL, `title` varchar(191) DEFAULT NULL, `sub_title` varchar(191) DEFAULT NULL, `button_text` varchar(191) DEFAULT NULL, `background_color` varchar(191) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) DEFAULT NULL, `address_type` varchar(191) DEFAULT NULL, `address` varchar(191) DEFAULT NULL, `city` varchar(191) DEFAULT NULL, `zip` varchar(191) DEFAULT NULL, `phone` varchar(191) DEFAULT NULL, `state` varchar(191) DEFAULT NULL, `country` varchar(191) DEFAULT NULL, `latitude` varchar(191) DEFAULT NULL, `longitude` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) DEFAULT NULL, `image` varchar(50) NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) NOT NULL, `value` longtext NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1}]', '2020-10-11 07:53:02', '2021-06-10 21:16:25'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2023-01-10 05:51:56'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2023-01-10 05:51:56'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\",\"primary_light\":\"#CFDFFB\"}', '2020-10-11 13:53:02', '2023-06-13 13:04:49'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2023-01-10 05:51:56'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2023-01-10 05:51:56'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (87, 'refund-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (88, 'return-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (89, 'cancellation-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (90, 'offline_payment', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (91, 'temporary_close', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (92, 'vacation_add', '{\"status\":0,\"vacation_start_date\":null,\"vacation_end_date\":null,\"vacation_note\":null}', NULL, '2023-03-04 06:25:36'), (93, 'cookie_setting', '{\"status\":0,\"cookie_text\":null}', NULL, '2023-03-04 06:25:36'), (94, 'maximum_otp_hit', '0', NULL, '2023-06-13 13:04:49'), (95, 'otp_resend_time', '0', NULL, '2023-06-13 13:04:49'), (96, 'temporary_block_time', '0', NULL, '2023-06-13 13:04:49'), (97, 'maximum_login_hit', '0', NULL, '2023-06-13 13:04:49'), (98, 'temporary_login_block_time', '0', NULL, '2023-06-13 13:04:49'); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) DEFAULT NULL, `color` varchar(191) DEFAULT NULL, `choices` text DEFAULT NULL, `variations` text DEFAULT NULL, `variant` text DEFAULT NULL, `quantity` int(11) NOT NULL DEFAULT 1, `price` double NOT NULL DEFAULT 1, `tax` double NOT NULL DEFAULT 1, `discount` double NOT NULL DEFAULT 1, `tax_model` varchar(20) NOT NULL DEFAULT 'exclude', `slug` varchar(191) DEFAULT NULL, `name` varchar(191) DEFAULT NULL, `thumbnail` varchar(191) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) NOT NULL, `slug` varchar(100) NOT NULL, `icon` varchar(250) DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT 0, `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT 0, `sent_by_seller` tinyint(1) NOT NULL DEFAULT 0, `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT 1, `seen_by_seller` tinyint(1) NOT NULL DEFAULT 1, `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) DEFAULT NULL, `code` varchar(10) DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) DEFAULT NULL, `email` varchar(191) DEFAULT NULL, `mobile_number` varchar(191) NOT NULL, `subject` varchar(191) NOT NULL, `message` text NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT 0, `feedback` varchar(191) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) NOT NULL DEFAULT 'admin', `coupon_type` varchar(50) DEFAULT NULL, `coupon_bearer` varchar(191) NOT NULL DEFAULT 'inhouse', `seller_id` bigint(20) DEFAULT NULL COMMENT 'NULL=in-house, 0=all seller', `customer_id` bigint(20) DEFAULT NULL COMMENT '0 = all customer', `title` varchar(100) DEFAULT NULL, `code` varchar(15) DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT 0.00, `max_discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(15) NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) NOT NULL, `symbol` varchar(191) NOT NULL, `code` varchar(191) NOT NULL, `exchange_rate` varchar(191) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT 0.00, `royality_points` decimal(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(20) DEFAULT NULL, `transaction_method` varchar(30) DEFAULT NULL, `transaction_id` varchar(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(12) NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT 0.00, `cash_in_hand` decimal(50,2) NOT NULL DEFAULT 0.00, `pending_withdraw` decimal(50,2) NOT NULL DEFAULT 0.00, `total_withdraw` decimal(50,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) DEFAULT NULL, `latitude` varchar(191) DEFAULT NULL, `location` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) NOT NULL, `transaction_id` char(36) NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT 0.00, `credit` decimal(50,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) DEFAULT NULL, `l_name` varchar(100) DEFAULT NULL, `address` text DEFAULT NULL, `country_code` varchar(20) DEFAULT NULL, `phone` varchar(20) NOT NULL, `email` varchar(100) DEFAULT NULL, `identity_number` varchar(30) DEFAULT NULL, `identity_type` varchar(50) DEFAULT NULL, `identity_image` varchar(191) DEFAULT NULL, `image` varchar(100) DEFAULT NULL, `password` varchar(100) NOT NULL, `bank_name` varchar(191) DEFAULT NULL, `branch` varchar(191) DEFAULT NULL, `account_no` varchar(191) DEFAULT NULL, `holder_name` varchar(191) DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `is_online` tinyint(4) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) NOT NULL, `phone` varchar(25) NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text NOT NULL, `queue` text NOT NULL, `payload` longtext NOT NULL, `exception` longtext NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) DEFAULT NULL, `photo` varchar(191) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `featured` tinyint(1) NOT NULL DEFAULT 0, `background_color` varchar(255) DEFAULT NULL, `text_color` varchar(255) DEFAULT NULL, `banner` varchar(100) DEFAULT NULL, `slug` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text DEFAULT NULL, `answer` text DEFAULT NULL, `ranking` int(11) NOT NULL DEFAULT 1, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) NOT NULL, `payload` longtext NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT 0.000, `debit` decimal(24,3) NOT NULL DEFAULT 0.000, `balance` decimal(24,3) NOT NULL DEFAULT 0.000, `reference` varchar(191) DEFAULT NULL, `transaction_type` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68), (195, '2022_12_17_035723_few_field_add_to_coupons_table', 69), (196, '2022_12_26_231606_add_coupon_discount_bearer_and_admin_commission_to_orders', 69), (197, '2023_01_04_003034_alter_billing_addresses_change_zip', 69), (198, '2023_01_05_121600_change_id_to_transactions_table', 69), (199, '2023_02_02_113330_create_product_tag_table', 70), (200, '2023_02_02_114518_create_tags_table', 70), (201, '2023_02_02_152248_add_tax_model_to_products_table', 70), (202, '2023_02_02_152718_add_tax_model_to_order_details_table', 70), (203, '2023_02_02_171034_add_tax_type_to_carts', 70), (204, '2023_02_06_124447_add_color_image_column_to_products_table', 70), (205, '2023_02_07_120136_create_withdrawal_methods_table', 70), (206, '2023_02_07_175939_add_withdrawal_method_id_and_withdrawal_method_fields_to_withdraw_requests_table', 70), (207, '2023_02_08_143314_add_vacation_start_and_vacation_end_and_vacation_not_column_to_shops_table', 70), (208, '2023_02_09_104656_add_payment_by_and_payment_not_to_orders_table', 70), (209, '2023_03_27_150723_add_expires_at_to_phone_or_email_verifications', 71), (210, '2023_04_17_095721_create_shop_followers_table', 71), (211, '2023_04_17_111249_add_bottom_banner_to_shops_table', 71), (212, '2023_04_20_125423_create_product_compares_table', 71), (213, '2023_04_30_165642_add_category_sub_category_and_sub_sub_category_add_in_product_table', 71), (214, '2023_05_16_131006_add_expires_at_to_password_resets', 71), (215, '2023_05_17_044243_add_visit_count_to_tags_table', 71), (216, '2023_05_18_000403_add_title_and_subtitle_and_background_color_and_button_text_to_banners_table', 71), (217, '2023_05_21_111300_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_users_table', 71), (218, '2023_05_21_111600_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_phone_or_email_verifications_table', 71), (219, '2023_05_21_112215_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_password_resets_table', 71), (220, '2023_06_04_210726_attachment_lenght_change_to_reviews_table', 71); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) DEFAULT NULL, `description` varchar(191) DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT 0, `image` varchar(50) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) DEFAULT NULL, `scopes` text DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) NOT NULL, `secret` varchar(100) NOT NULL, `redirect` text NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) NOT NULL, `access_token_id` varchar(100) NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) DEFAULT NULL, `customer_type` varchar(10) DEFAULT NULL, `payment_status` varchar(15) NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) NOT NULL DEFAULT 'pending', `payment_method` varchar(100) DEFAULT NULL, `transaction_ref` varchar(30) DEFAULT NULL, `payment_by` varchar(191) DEFAULT NULL, `payment_note` text DEFAULT NULL, `order_amount` double NOT NULL DEFAULT 0, `admin_commission` decimal(8,2) NOT NULL DEFAULT 0.00, `is_pause` varchar(20) NOT NULL DEFAULT '0', `cause` varchar(191) DEFAULT NULL, `shipping_address` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT 0, `discount_type` varchar(30) DEFAULT NULL, `coupon_code` varchar(191) DEFAULT NULL, `coupon_discount_bearer` varchar(191) NOT NULL DEFAULT 'inhouse', `shipping_method_id` bigint(20) NOT NULL DEFAULT 0, `shipping_cost` double(8,2) NOT NULL DEFAULT 0.00, `order_group_id` varchar(191) NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) DEFAULT NULL, `shipping_address_data` text DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT 0, `expected_delivery_date` date DEFAULT NULL, `order_note` text DEFAULT NULL, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text DEFAULT NULL, `order_type` varchar(191) NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT 0.00, `extra_discount_type` varchar(191) DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT 0, `shipping_type` varchar(191) DEFAULT NULL, `delivery_type` varchar(191) DEFAULT NULL, `delivery_service_name` varchar(191) DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) DEFAULT NULL, `product_details` text DEFAULT NULL, `qty` int(11) NOT NULL DEFAULT 0, `price` double NOT NULL DEFAULT 0, `tax` double NOT NULL DEFAULT 0, `discount` double NOT NULL DEFAULT 0, `tax_model` varchar(20) NOT NULL DEFAULT 'exclude', `delivery_status` varchar(15) NOT NULL DEFAULT 'pending', `payment_status` varchar(15) NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) DEFAULT NULL, `variation` varchar(255) DEFAULT NULL, `discount_type` varchar(30) DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT 1, `refund_request` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) NOT NULL, `status` varchar(191) NOT NULL, `cause` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT 0.00, `seller_amount` decimal(50,2) NOT NULL DEFAULT 0.00, `admin_commission` decimal(50,2) NOT NULL DEFAULT 0.00, `received_by` varchar(191) NOT NULL, `status` varchar(191) DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT 0.00, `tax` decimal(50,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) DEFAULT NULL, `delivered_by` varchar(191) NOT NULL DEFAULT 'admin', `payment_method` varchar(191) DEFAULT NULL, `transaction_id` varchar(191) DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) NOT NULL, `token` varchar(191) NOT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT 0, `is_temp_blocked` tinyint(1) NOT NULL DEFAULT 0, `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) NOT NULL DEFAULT 'customer', `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) NOT NULL, `token` varchar(64) NOT NULL, `abilities` text DEFAULT NULL, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) DEFAULT NULL, `token` varchar(191) DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT 0, `is_temp_blocked` tinyint(1) NOT NULL DEFAULT 0, `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) DEFAULT NULL, `slug` varchar(120) DEFAULT NULL, `product_type` varchar(20) NOT NULL DEFAULT 'physical', `category_ids` varchar(80) DEFAULT NULL, `category_id` varchar(191) DEFAULT NULL, `sub_category_id` varchar(191) DEFAULT NULL, `sub_sub_category_id` varchar(191) DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT 1, `refundable` tinyint(1) NOT NULL DEFAULT 1, `digital_product_type` varchar(30) DEFAULT NULL, `digital_file_ready` varchar(191) DEFAULT NULL, `images` longtext DEFAULT NULL, `color_image` text NOT NULL, `thumbnail` varchar(255) DEFAULT NULL, `featured` varchar(255) DEFAULT NULL, `flash_deal` varchar(255) DEFAULT NULL, `video_provider` varchar(30) DEFAULT NULL, `video_url` varchar(150) DEFAULT NULL, `colors` varchar(150) DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT 0, `attributes` varchar(255) DEFAULT NULL, `choice_options` text DEFAULT NULL, `variation` text DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `unit_price` double NOT NULL DEFAULT 0, `purchase_price` double NOT NULL DEFAULT 0, `tax` varchar(191) NOT NULL DEFAULT '0.00', `tax_type` varchar(80) DEFAULT NULL, `tax_model` varchar(20) NOT NULL DEFAULT 'exclude', `discount` varchar(191) NOT NULL DEFAULT '0.00', `discount_type` varchar(80) DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT 1, `details` text DEFAULT NULL, `free_shipping` tinyint(1) NOT NULL DEFAULT 0, `attachment` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `featured_status` tinyint(1) NOT NULL DEFAULT 1, `meta_title` varchar(191) DEFAULT NULL, `meta_description` varchar(191) DEFAULT NULL, `meta_image` varchar(191) DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT 0, `denied_note` varchar(191) DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_compares` -- CREATE TABLE `product_compares` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL COMMENT 'customer_id', `product_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) DEFAULT NULL, `sku` varchar(255) DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT 0.00, `qty` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_tag` -- CREATE TABLE `product_tag` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `tag_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext NOT NULL, `images` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext DEFAULT NULL, `rejected_note` longtext DEFAULT NULL, `payment_info` longtext DEFAULT NULL, `change_by` varchar(191) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) DEFAULT NULL, `message` longtext DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) DEFAULT NULL, `paid_to` varchar(191) DEFAULT NULL, `payment_method` varchar(191) DEFAULT NULL, `payment_status` varchar(191) DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext DEFAULT NULL, `attachment` varchar(255) DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT 0, `status` int(11) NOT NULL DEFAULT 1, `is_saved` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) DEFAULT NULL, `url` varchar(250) DEFAULT NULL, `visible_for` varchar(191) NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) DEFAULT NULL, `l_name` varchar(30) DEFAULT NULL, `phone` varchar(25) DEFAULT NULL, `image` varchar(30) NOT NULL DEFAULT 'def.png', `email` varchar(80) NOT NULL, `password` varchar(80) DEFAULT NULL, `status` varchar(15) NOT NULL DEFAULT 'pending', `remember_token` varchar(100) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) DEFAULT NULL, `branch` varchar(191) DEFAULT NULL, `account_no` varchar(191) DEFAULT NULL, `holder_name` varchar(191) DEFAULT NULL, `auth_token` text DEFAULT NULL, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) DEFAULT NULL, `cm_firebase_token` varchar(191) DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT 0, `withdrawn` double NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT 0.00, `pending_withdraw` double(8,2) NOT NULL DEFAULT 0.00, `delivery_charge_earned` double(8,2) NOT NULL DEFAULT 0.00, `collected_cash` double(8,2) NOT NULL DEFAULT 0.00, `total_tax_collected` double(8,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) DEFAULT NULL, `contact_person_name` varchar(50) DEFAULT NULL, `address_type` varchar(20) NOT NULL DEFAULT 'home', `address` varchar(255) DEFAULT NULL, `city` varchar(50) DEFAULT NULL, `zip` varchar(10) DEFAULT NULL, `phone` varchar(20) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) DEFAULT NULL, `country` varchar(191) DEFAULT NULL, `latitude` varchar(191) DEFAULT NULL, `longitude` varchar(191) DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) NOT NULL DEFAULT 'admin', `title` varchar(100) DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT 0.00, `duration` varchar(20) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', 5.00, '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) NOT NULL, `address` varchar(255) NOT NULL, `contact` varchar(25) NOT NULL, `image` varchar(30) NOT NULL DEFAULT 'def.png', `bottom_banner` varchar(191) DEFAULT NULL, `vacation_start_date` date DEFAULT NULL, `vacation_end_date` date DEFAULT NULL, `vacation_note` varchar(255) DEFAULT NULL, `vacation_status` tinyint(4) NOT NULL DEFAULT 0, `temporary_close` tinyint(4) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shop_followers` -- CREATE TABLE `shop_followers` ( `id` bigint(20) UNSIGNED NOT NULL, `shop_id` int(11) NOT NULL, `user_id` int(11) NOT NULL COMMENT 'Customer ID', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) NOT NULL, `link` varchar(100) NOT NULL, `icon` varchar(100) DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) DEFAULT NULL, `value` longtext DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) DEFAULT NULL, `type` varchar(50) DEFAULT NULL, `priority` varchar(15) NOT NULL DEFAULT 'low', `description` varchar(255) DEFAULT NULL, `reply` varchar(255) DEFAULT NULL, `status` varchar(15) NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) DEFAULT NULL, `admin_message` varchar(191) DEFAULT NULL, `position` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` bigint(20) UNSIGNED NOT NULL, `tag` varchar(191) NOT NULL, `visit_count` bigint(20) UNSIGNED NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` int(10) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) DEFAULT NULL, `paid_to` varchar(15) DEFAULT NULL, `payment_method` varchar(15) DEFAULT NULL, `payment_status` varchar(10) NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(191) DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) NOT NULL, `key` varchar(191) DEFAULT NULL, `value` text DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) DEFAULT NULL, `f_name` varchar(255) DEFAULT NULL, `l_name` varchar(255) DEFAULT NULL, `phone` varchar(25) NOT NULL, `image` varchar(30) NOT NULL DEFAULT 'def.png', `email` varchar(80) NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) NOT NULL, `remember_token` varchar(100) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) DEFAULT NULL, `country` varchar(50) DEFAULT NULL, `city` varchar(50) DEFAULT NULL, `zip` varchar(20) DEFAULT NULL, `house_no` varchar(50) DEFAULT NULL, `apartment_no` varchar(50) DEFAULT NULL, `cm_firebase_token` varchar(191) DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `payment_card_last_four` varchar(191) DEFAULT NULL, `payment_card_brand` varchar(191) DEFAULT NULL, `payment_card_fawry_token` text DEFAULT NULL, `login_medium` varchar(191) DEFAULT NULL, `social_id` varchar(191) DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT 0, `temporary_token` varchar(191) DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT 0, `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL, `login_hit_count` tinyint(4) NOT NULL DEFAULT 0, `is_temp_blocked` tinyint(1) NOT NULL DEFAULT 0, `temp_block_time` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`, `login_hit_count`, `is_temp_blocked`, `temp_block_time`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, 0, NULL); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT 0.000, `debit` decimal(24,3) NOT NULL DEFAULT 0.000, `admin_bonus` decimal(24,3) NOT NULL DEFAULT 0.000, `balance` decimal(24,3) NOT NULL DEFAULT 0.000, `transaction_type` varchar(191) DEFAULT NULL, `reference` varchar(191) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdrawal_methods` -- CREATE TABLE `withdrawal_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(191) NOT NULL, `method_fields` text NOT NULL, `is_default` tinyint(4) NOT NULL DEFAULT 0, `is_active` tinyint(4) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) NOT NULL DEFAULT '0.00', `withdrawal_method_id` bigint(20) UNSIGNED DEFAULT NULL, `withdrawal_method_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`withdrawal_method_fields`)), `transaction_note` text DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD PRIMARY KEY (`id`), ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_compares` -- ALTER TABLE `product_compares` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_tag` -- ALTER TABLE `product_tag` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shop_followers` -- ALTER TABLE `shop_followers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=99; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=221; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `password_resets` -- ALTER TABLE `password_resets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_compares` -- ALTER TABLE `product_compares` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_tag` -- ALTER TABLE `product_tag` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shop_followers` -- ALTER TABLE `shop_followers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!kkbackup/database_v14.1.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Oct 13, 2023 at 05:35 AM -- Server version: 5.7.39 -- PHP Version: 8.2.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `install` -- -- -------------------------------------------------------- -- -- Table structure for table `addon_settings` -- CREATE TABLE `addon_settings` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `key_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `live_values` longtext COLLATE utf8mb4_unicode_ci, `test_values` longtext COLLATE utf8mb4_unicode_ci, `settings_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'live', `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `addon_settings` -- INSERT INTO `addon_settings` (`id`, `key_name`, `live_values`, `test_values`, `settings_type`, `mode`, `is_active`, `created_at`, `updated_at`, `additional_data`) VALUES ('070c6bbd-d777-11ed-96f4-0c7a158e4469', 'twilio', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:29', NULL), ('070c766c-d777-11ed-96f4-0c7a158e4469', '2factor', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:36', NULL), ('0d8a9308-d6a5-11ed-962c-0c7a158e4469', 'mercadopago', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-27 11:57:11', '{\"gateway_title\":\"Mercadopago\",\"gateway_image\":null}'), ('0d8a9e49-d6a5-11ed-962c-0c7a158e4469', 'liqpay', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:31', '{\"gateway_title\":\"Liqpay\",\"gateway_image\":null}'), ('101befdf-d44b-11ed-8564-0c7a158e4469', 'paypal', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:41:32', '{\"gateway_title\":\"Paypal\",\"gateway_image\":null}'), ('133d9647-cabb-11ed-8fec-0c7a158e4469', 'hyper_pay', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:42', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('1821029f-d776-11ed-96f4-0c7a158e4469', 'msg91', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:48', NULL), ('18210f2b-d776-11ed-96f4-0c7a158e4469', 'nexmo', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('18fbb21f-d6ad-11ed-962c-0c7a158e4469', 'foloosi', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:33', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('2767d142-d6a1-11ed-962c-0c7a158e4469', 'paytm', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-22 06:30:55', '{\"gateway_title\":\"Paytm\",\"gateway_image\":null}'), ('3201d2e6-c937-11ed-a424-0c7a158e4469', 'amazon_pay', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:07', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('4593b25c-d6a1-11ed-962c-0c7a158e4469', 'paytabs', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:51', '{\"gateway_title\":\"Paytabs\",\"gateway_image\":null}'), ('4e9b8dfb-e7d1-11ed-a559-0c7a158e4469', 'bkash', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:39:42', '{\"gateway_title\":\"Bkash\",\"gateway_image\":null}'), ('544a24a4-c872-11ed-ac7a-0c7a158e4469', 'fatoorah', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:24', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('58c1bc8a-d6ac-11ed-962c-0c7a158e4469', 'ccavenue', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:42:38', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-643783f01d386.png\"}'), ('5e2d2ef9-d6ab-11ed-962c-0c7a158e4469', 'thawani', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:40', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-64378f9856f29.png\"}'), ('60cc83cc-d5b9-11ed-b56f-0c7a158e4469', 'sixcash', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:16:17', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-12-6436774e77ff9.png\"}'), ('68579846-d8e8-11ed-8249-0c7a158e4469', 'alphanet_sms', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('6857a2e8-d8e8-11ed-8249-0c7a158e4469', 'sms_to', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('74c30c00-d6a6-11ed-962c-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:37:43', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('74e46b0a-d6aa-11ed-962c-0c7a158e4469', 'tap', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:09', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('761ca96c-d1eb-11ed-87ca-0c7a158e4469', 'swish', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('7b1c3c5f-d2bd-11ed-b485-0c7a158e4469', 'payfast', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:13', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('8592417b-d1d1-11ed-a984-0c7a158e4469', 'esewa', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:38', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('9162a1dc-cdf1-11ed-affe-0c7a158e4469', 'viva_wallet', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', 'payment_config', 'test', 0, NULL, NULL, NULL), ('998ccc62-d6a0-11ed-962c-0c7a158e4469', 'stripe', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:55', '{\"gateway_title\":\"Stripe\",\"gateway_image\":null}'), ('a3313755-c95d-11ed-b1db-0c7a158e4469', 'iyzi_pay', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a76c8993-d299-11ed-b485-0c7a158e4469', 'momo', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', 'payment_config', 'live', 0, NULL, '2023-08-30 04:19:28', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a8608119-cc76-11ed-9bca-0c7a158e4469', 'moncash', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:34', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('ad5af1c1-d6a2-11ed-962c-0c7a158e4469', 'razor_pay', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:00', '{\"gateway_title\":\"Razor pay\",\"gateway_image\":null}'), ('ad5b02a0-d6a2-11ed-962c-0c7a158e4469', 'senang_pay', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', 'payment_config', 'test', 0, NULL, '2023-08-27 09:58:57', '{\"gateway_title\":\"Senang pay\",\"gateway_image\":null}'), ('b6c333f6-d8e9-11ed-8249-0c7a158e4469', 'akandit_sms', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b6c33c87-d8e9-11ed-8249-0c7a158e4469', 'global_sms', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b8992bd4-d6a0-11ed-962c-0c7a158e4469', 'paymob_accept', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', 'payment_config', 'test', 0, NULL, NULL, '{\"gateway_title\":\"Paymob accept\",\"gateway_image\":null}'), ('c41c0dcd-d119-11ed-9f67-0c7a158e4469', 'maxicash', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:49:15', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('c9249d17-cd60-11ed-b879-0c7a158e4469', 'pvit', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', 'payment_config', 'test', 0, NULL, NULL, NULL), ('cb0081ce-d775-11ed-96f4-0c7a158e4469', 'releans', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('d4f3f5f1-d6a0-11ed-962c-0c7a158e4469', 'flutterwave', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:41:03', '{\"gateway_title\":\"Flutterwave\",\"gateway_image\":null}'), ('d822f1a5-c864-11ed-ac7a-0c7a158e4469', 'paystack', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:45', '{\"gateway_title\":\"Paystack\",\"gateway_image\":null}'), ('daec8d59-c893-11ed-ac7a-0c7a158e4469', 'xendit', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:46', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('dc0f5fc9-d6a5-11ed-962c-0c7a158e4469', 'worldpay', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:26', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('e0450278-d8eb-11ed-8249-0c7a158e4469', 'signal_wire', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('e0450b40-d8eb-11ed-8249-0c7a158e4469', 'paradox', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-09-10 01:14:01', NULL), ('ea346efe-cdda-11ed-affe-0c7a158e4469', 'ssl_commerz', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:43:49', '{\"gateway_title\":\"Ssl commerz\",\"gateway_image\":null}'), ('eed88336-d8ec-11ed-8249-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149c546-d8ea-11ed-8249-0c7a158e4469', 'viatech', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149cd9c-d8ea-11ed-8249-0c7a158e4469', '019_sms', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `add_fund_bonus_categories` -- CREATE TABLE `add_fund_bonus_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `bonus_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `min_add_money_amount` double(14,2) NOT NULL DEFAULT '0.00', `max_bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `start_date_time` datetime DEFAULT NULL, `end_date_time` datetime DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `identify_image` text COLLATE utf8mb4_unicode_ci, `identify_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identify_number` int(11) DEFAULT NULL, `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button_text` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `background_color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1,\"default\":true}]', '2020-10-11 07:53:02', '2023-10-13 11:34:53'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2023-01-10 05:51:56'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2023-01-10 05:51:56'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\",\"primary_light\":\"#CFDFFB\"}', '2020-10-11 13:53:02', '2023-10-13 05:34:53'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2023-01-10 05:51:56'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":0,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":0,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2023-01-10 05:51:56'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (87, 'refund-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (88, 'return-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (89, 'cancellation-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (90, 'offline_payment', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (91, 'temporary_close', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (92, 'vacation_add', '{\"status\":0,\"vacation_start_date\":null,\"vacation_end_date\":null,\"vacation_note\":null}', NULL, '2023-03-04 06:25:36'), (93, 'cookie_setting', '{\"status\":0,\"cookie_text\":null}', NULL, '2023-03-04 06:25:36'), (94, 'maximum_otp_hit', '0', NULL, '2023-06-13 13:04:49'), (95, 'otp_resend_time', '0', NULL, '2023-06-13 13:04:49'), (96, 'temporary_block_time', '0', NULL, '2023-06-13 13:04:49'), (97, 'maximum_login_hit', '0', NULL, '2023-06-13 13:04:49'), (98, 'temporary_login_block_time', '0', NULL, '2023-06-13 13:04:49'), (99, 'maximum_otp_hit', '0', NULL, '2023-10-13 05:34:53'), (100, 'otp_resend_time', '0', NULL, '2023-10-13 05:34:53'), (101, 'temporary_block_time', '0', NULL, '2023-10-13 05:34:53'), (102, 'maximum_login_hit', '0', NULL, '2023-10-13 05:34:53'), (103, 'temporary_login_block_time', '0', NULL, '2023-10-13 05:34:53'), (104, 'apple_login', '[{\"login_medium\":\"apple\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":0,\"team_id\":\"\",\"key_id\":\"\",\"service_file\":\"\",\"redirect_url\":\"\"}]', NULL, '2023-10-13 05:34:53'), (105, 'ref_earning_status', '0', NULL, '2023-10-13 05:34:53'), (106, 'ref_earning_exchange_rate', '0', NULL, '2023-10-13 05:34:53'), (107, 'guest_checkout', '0', NULL, '2023-10-13 11:34:53'), (108, 'minimum_order_amount', '0', NULL, '2023-10-13 11:34:53'), (109, 'minimum_order_amount_by_seller', '0', NULL, '2023-10-13 11:34:53'), (110, 'minimum_order_amount_status', '0', NULL, '2023-10-13 11:34:53'), (111, 'admin_login_url', 'admin', NULL, '2023-10-13 11:34:53'), (112, 'employee_login_url', 'employee', NULL, '2023-10-13 11:34:53'), (113, 'free_delivery_status', '0', NULL, '2023-10-13 11:34:53'), (114, 'free_delivery_responsibility', 'admin', NULL, '2023-10-13 11:34:53'), (115, 'free_delivery_over_amount', '0', NULL, '2023-10-13 11:34:53'), (116, 'free_delivery_over_amount_seller', '0', NULL, '2023-10-13 11:34:53'), (117, 'add_funds_to_wallet', '0', NULL, '2023-10-13 11:34:53'), (118, 'minimum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (119, 'maximum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (120, 'user_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (121, 'seller_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (122, 'delivery_man_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (123, 'whatsapp', '{\"status\":1,\"phone\":\"00000000000\"}', NULL, '2023-10-13 11:34:53'), (124, 'currency_symbol_position', 'left', NULL, '2023-10-13 11:34:53'); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0', `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `seller_id` bigint(20) DEFAULT NULL COMMENT 'NULL=in-house, 0=all seller', `customer_id` bigint(20) DEFAULT NULL COMMENT '0 = all customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT '0.00', `cash_in_hand` decimal(50,2) NOT NULL DEFAULT '0.00', `pending_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `total_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT '0.00', `credit` decimal(50,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `is_online` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `digital_product_otp_verifications` -- CREATE TABLE `digital_product_otp_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `guest_users` -- CREATE TABLE `guest_users` ( `id` bigint(20) UNSIGNED NOT NULL, `ip_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fcm_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `guest_users` -- INSERT INTO `guest_users` (`id`, `ip_address`, `fcm_token`, `created_at`, `updated_at`) VALUES (1, '::1', NULL, '2023-10-13 05:34:54', NULL); -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68), (195, '2022_12_17_035723_few_field_add_to_coupons_table', 69), (196, '2022_12_26_231606_add_coupon_discount_bearer_and_admin_commission_to_orders', 69), (197, '2023_01_04_003034_alter_billing_addresses_change_zip', 69), (198, '2023_01_05_121600_change_id_to_transactions_table', 69), (199, '2023_02_02_113330_create_product_tag_table', 70), (200, '2023_02_02_114518_create_tags_table', 70), (201, '2023_02_02_152248_add_tax_model_to_products_table', 70), (202, '2023_02_02_152718_add_tax_model_to_order_details_table', 70), (203, '2023_02_02_171034_add_tax_type_to_carts', 70), (204, '2023_02_06_124447_add_color_image_column_to_products_table', 70), (205, '2023_02_07_120136_create_withdrawal_methods_table', 70), (206, '2023_02_07_175939_add_withdrawal_method_id_and_withdrawal_method_fields_to_withdraw_requests_table', 70), (207, '2023_02_08_143314_add_vacation_start_and_vacation_end_and_vacation_not_column_to_shops_table', 70), (208, '2023_02_09_104656_add_payment_by_and_payment_not_to_orders_table', 70), (209, '2023_03_27_150723_add_expires_at_to_phone_or_email_verifications', 71), (210, '2023_04_17_095721_create_shop_followers_table', 71), (211, '2023_04_17_111249_add_bottom_banner_to_shops_table', 71), (212, '2023_04_20_125423_create_product_compares_table', 71), (213, '2023_04_30_165642_add_category_sub_category_and_sub_sub_category_add_in_product_table', 71), (214, '2023_05_16_131006_add_expires_at_to_password_resets', 71), (215, '2023_05_17_044243_add_visit_count_to_tags_table', 71), (216, '2023_05_18_000403_add_title_and_subtitle_and_background_color_and_button_text_to_banners_table', 71), (217, '2023_05_21_111300_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_users_table', 71), (218, '2023_05_21_111600_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_phone_or_email_verifications_table', 71), (219, '2023_05_21_112215_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_password_resets_table', 71), (220, '2023_06_04_210726_attachment_lenght_change_to_reviews_table', 71), (221, '2023_06_05_115153_add_referral_code_and_referred_by_to_users_table', 72), (222, '2023_06_21_002658_add_offer_banner_to_shops_table', 72), (223, '2023_07_08_210747_create_most_demandeds_table', 72), (224, '2023_07_31_111419_add_minimum_order_amount_to_sellers_table', 72), (225, '2023_08_03_105256_create_offline_payment_methods_table', 72), (226, '2023_08_07_131013_add_is_guest_column_to_carts_table', 72), (227, '2023_08_07_170601_create_offline_payments_table', 72), (228, '2023_08_12_102355_create_add_fund_bonus_categories_table', 72), (229, '2023_08_12_215346_create_guest_users_table', 72), (230, '2023_08_12_215659_add_is_guest_column_to_orders_table', 72), (231, '2023_08_12_215933_add_is_guest_column_to_shipping_addresses_table', 72), (232, '2023_08_15_000957_add_email_column_toshipping_address_table', 72), (233, '2023_08_17_222330_add_identify_related_columns_to_admins_table', 72), (234, '2023_08_20_230624_add_sent_by_and_send_to_in_notifications_table', 72), (235, '2023_08_20_230911_create_notification_seens_table', 72), (236, '2023_08_21_042331_add_theme_to_banners_table', 72), (237, '2023_08_24_150009_add_free_delivery_over_amount_and_status_to_seller_table', 72), (238, '2023_08_26_161214_add_is_shipping_free_to_orders_table', 72), (239, '2023_08_26_173523_add_payment_method_column_to_wallet_transactions_table', 72), (240, '2023_08_26_204653_add_verification_status_column_to_orders_table', 72), (241, '2023_08_26_225113_create_order_delivery_verifications_table', 72), (242, '2023_09_03_212200_add_free_delivery_responsibility_column_to_orders_table', 72), (243, '2023_09_23_153314_add_shipping_responsibility_column_to_orders_table', 72), (244, '2023_09_25_152733_create_digital_product_otp_verifications_table', 72); -- -------------------------------------------------------- -- -- Table structure for table `most_demandeds` -- CREATE TABLE `most_demandeds` ( `id` bigint(20) UNSIGNED NOT NULL, `banner` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `sent_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'system', `sent_to` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT '0', `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notification_seens` -- CREATE TABLE `notification_seens` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `notification_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payments` -- CREATE TABLE `offline_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `payment_info` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payment_methods` -- CREATE TABLE `offline_payment_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `method_informations` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_note` text COLLATE utf8mb4_unicode_ci, `order_amount` double NOT NULL DEFAULT '0', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `is_pause` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_discount_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `shipping_responsibility` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `is_shipping_free` tinyint(1) NOT NULL DEFAULT '0', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `verification_status` tinyint(4) NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT '0', `expected_delivery_date` date DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_delivery_bearer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_delivery_verifications` -- CREATE TABLE `order_delivery_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `image` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(50,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT '0.00', `tax` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payment_requests` -- CREATE TABLE `payment_requests` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `payer_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_amount` decimal(24,2) NOT NULL DEFAULT '0.00', `gateway_callback_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `success_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `failure_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currency_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'USD', `payment_method` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `is_paid` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `payer_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `external_redirect_link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `attribute_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attribute` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_platform` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci, `color_image` text COLLATE utf8mb4_unicode_ci NOT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT '1', `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_compares` -- CREATE TABLE `product_compares` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL COMMENT 'customer_id', `product_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_tag` -- CREATE TABLE `product_tag` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `tag_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `is_saved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0', `minimum_order_amount` double(8,2) NOT NULL DEFAULT '0.00', `free_delivery_status` int(11) NOT NULL DEFAULT '0', `free_delivery_over_amount` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `bottom_banner` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `offer_banner` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_start_date` date DEFAULT NULL, `vacation_end_date` date DEFAULT NULL, `vacation_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_status` tinyint(4) NOT NULL DEFAULT '0', `temporary_close` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shop_followers` -- CREATE TABLE `shop_followers` ( `id` bigint(20) UNSIGNED NOT NULL, `shop_id` int(11) NOT NULL, `user_id` int(11) NOT NULL COMMENT 'Customer ID', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` bigint(20) UNSIGNED NOT NULL, `tag` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `visit_count` bigint(20) UNSIGNED NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` int(10) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0', `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL, `login_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `referral_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referred_by` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`, `login_hit_count`, `is_temp_blocked`, `temp_block_time`, `referral_code`, `referred_by`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, 0, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `admin_bonus` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdrawal_methods` -- CREATE TABLE `withdrawal_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` tinyint(4) NOT NULL DEFAULT '0', `is_active` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `withdrawal_method_id` bigint(20) UNSIGNED DEFAULT NULL, `withdrawal_method_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `transaction_note` text COLLATE utf8mb4_unicode_ci, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `addon_settings` -- ALTER TABLE `addon_settings` ADD PRIMARY KEY (`id`), ADD KEY `payment_settings_id_index` (`id`); -- -- Indexes for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `guest_users` -- ALTER TABLE `guest_users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `most_demandeds` -- ALTER TABLE `most_demandeds` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_seens` -- ALTER TABLE `notification_seens` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `offline_payments` -- ALTER TABLE `offline_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD PRIMARY KEY (`id`), ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_compares` -- ALTER TABLE `product_compares` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_tag` -- ALTER TABLE `product_tag` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shop_followers` -- ALTER TABLE `shop_followers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=125; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `guest_users` -- ALTER TABLE `guest_users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=245; -- -- AUTO_INCREMENT for table `most_demandeds` -- ALTER TABLE `most_demandeds` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notification_seens` -- ALTER TABLE `notification_seens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `offline_payments` -- ALTER TABLE `offline_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `password_resets` -- ALTER TABLE `password_resets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_compares` -- ALTER TABLE `product_compares` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_tag` -- ALTER TABLE `product_tag` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shop_followers` -- ALTER TABLE `shop_followers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!^鄋backup/database_v14.4.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Feb 19, 2024 at 08:36 AM -- Server version: 5.7.39 -- PHP Version: 8.2.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `install` -- -- -------------------------------------------------------- -- -- Table structure for table `addon_settings` -- CREATE TABLE `addon_settings` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `key_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `live_values` longtext COLLATE utf8mb4_unicode_ci, `test_values` longtext COLLATE utf8mb4_unicode_ci, `settings_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'live', `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `addon_settings` -- INSERT INTO `addon_settings` (`id`, `key_name`, `live_values`, `test_values`, `settings_type`, `mode`, `is_active`, `created_at`, `updated_at`, `additional_data`) VALUES ('070c6bbd-d777-11ed-96f4-0c7a158e4469', 'twilio', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:29', NULL), ('070c766c-d777-11ed-96f4-0c7a158e4469', '2factor', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:36', NULL), ('0d8a9308-d6a5-11ed-962c-0c7a158e4469', 'mercadopago', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-27 11:57:11', '{\"gateway_title\":\"Mercadopago\",\"gateway_image\":null}'), ('0d8a9e49-d6a5-11ed-962c-0c7a158e4469', 'liqpay', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:31', '{\"gateway_title\":\"Liqpay\",\"gateway_image\":null}'), ('101befdf-d44b-11ed-8564-0c7a158e4469', 'paypal', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:41:32', '{\"gateway_title\":\"Paypal\",\"gateway_image\":null}'), ('133d9647-cabb-11ed-8fec-0c7a158e4469', 'hyper_pay', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:42', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('1821029f-d776-11ed-96f4-0c7a158e4469', 'msg91', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:48', NULL), ('18210f2b-d776-11ed-96f4-0c7a158e4469', 'nexmo', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('18fbb21f-d6ad-11ed-962c-0c7a158e4469', 'foloosi', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:33', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('2767d142-d6a1-11ed-962c-0c7a158e4469', 'paytm', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-22 06:30:55', '{\"gateway_title\":\"Paytm\",\"gateway_image\":null}'), ('3201d2e6-c937-11ed-a424-0c7a158e4469', 'amazon_pay', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:07', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('4593b25c-d6a1-11ed-962c-0c7a158e4469', 'paytabs', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:51', '{\"gateway_title\":\"Paytabs\",\"gateway_image\":null}'), ('4e9b8dfb-e7d1-11ed-a559-0c7a158e4469', 'bkash', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:39:42', '{\"gateway_title\":\"Bkash\",\"gateway_image\":null}'), ('544a24a4-c872-11ed-ac7a-0c7a158e4469', 'fatoorah', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:24', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('58c1bc8a-d6ac-11ed-962c-0c7a158e4469', 'ccavenue', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:42:38', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-643783f01d386.png\"}'), ('5e2d2ef9-d6ab-11ed-962c-0c7a158e4469', 'thawani', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:40', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-64378f9856f29.png\"}'), ('60cc83cc-d5b9-11ed-b56f-0c7a158e4469', 'sixcash', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:16:17', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-12-6436774e77ff9.png\"}'), ('68579846-d8e8-11ed-8249-0c7a158e4469', 'alphanet_sms', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('6857a2e8-d8e8-11ed-8249-0c7a158e4469', 'sms_to', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('74c30c00-d6a6-11ed-962c-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:37:43', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('74e46b0a-d6aa-11ed-962c-0c7a158e4469', 'tap', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:09', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('761ca96c-d1eb-11ed-87ca-0c7a158e4469', 'swish', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('7b1c3c5f-d2bd-11ed-b485-0c7a158e4469', 'payfast', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:13', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('8592417b-d1d1-11ed-a984-0c7a158e4469', 'esewa', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:38', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('9162a1dc-cdf1-11ed-affe-0c7a158e4469', 'viva_wallet', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', 'payment_config', 'test', 0, NULL, NULL, NULL), ('998ccc62-d6a0-11ed-962c-0c7a158e4469', 'stripe', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:55', '{\"gateway_title\":\"Stripe\",\"gateway_image\":null}'), ('a3313755-c95d-11ed-b1db-0c7a158e4469', 'iyzi_pay', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a76c8993-d299-11ed-b485-0c7a158e4469', 'momo', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', 'payment_config', 'live', 0, NULL, '2023-08-30 04:19:28', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a8608119-cc76-11ed-9bca-0c7a158e4469', 'moncash', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:34', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('ad5af1c1-d6a2-11ed-962c-0c7a158e4469', 'razor_pay', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:00', '{\"gateway_title\":\"Razor pay\",\"gateway_image\":null}'), ('ad5b02a0-d6a2-11ed-962c-0c7a158e4469', 'senang_pay', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', 'payment_config', 'test', 0, NULL, '2023-08-27 09:58:57', '{\"gateway_title\":\"Senang pay\",\"gateway_image\":null}'), ('b6c333f6-d8e9-11ed-8249-0c7a158e4469', 'akandit_sms', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b6c33c87-d8e9-11ed-8249-0c7a158e4469', 'global_sms', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b8992bd4-d6a0-11ed-962c-0c7a158e4469', 'paymob_accept', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', 'payment_config', 'test', 0, NULL, NULL, '{\"gateway_title\":\"Paymob accept\",\"gateway_image\":null}'), ('c41c0dcd-d119-11ed-9f67-0c7a158e4469', 'maxicash', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:49:15', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('c9249d17-cd60-11ed-b879-0c7a158e4469', 'pvit', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', 'payment_config', 'test', 0, NULL, NULL, NULL), ('cb0081ce-d775-11ed-96f4-0c7a158e4469', 'releans', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('d4f3f5f1-d6a0-11ed-962c-0c7a158e4469', 'flutterwave', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:41:03', '{\"gateway_title\":\"Flutterwave\",\"gateway_image\":null}'), ('d822f1a5-c864-11ed-ac7a-0c7a158e4469', 'paystack', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:45', '{\"gateway_title\":\"Paystack\",\"gateway_image\":null}'), ('daec8d59-c893-11ed-ac7a-0c7a158e4469', 'xendit', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:46', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('dc0f5fc9-d6a5-11ed-962c-0c7a158e4469', 'worldpay', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:26', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('e0450278-d8eb-11ed-8249-0c7a158e4469', 'signal_wire', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('e0450b40-d8eb-11ed-8249-0c7a158e4469', 'paradox', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-09-10 01:14:01', NULL), ('ea346efe-cdda-11ed-affe-0c7a158e4469', 'ssl_commerz', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:43:49', '{\"gateway_title\":\"Ssl commerz\",\"gateway_image\":null}'), ('eed88336-d8ec-11ed-8249-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149c546-d8ea-11ed-8249-0c7a158e4469', 'viatech', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149cd9c-d8ea-11ed-8249-0c7a158e4469', '019_sms', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `add_fund_bonus_categories` -- CREATE TABLE `add_fund_bonus_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `bonus_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `min_add_money_amount` double(14,2) NOT NULL DEFAULT '0.00', `max_bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `start_date_time` datetime DEFAULT NULL, `end_date_time` datetime DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `identify_image` text COLLATE utf8mb4_unicode_ci, `identify_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identify_number` int(11) DEFAULT NULL, `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button_text` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `background_color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1,\"default\":true}]', '2020-10-11 07:53:02', '2023-10-13 11:34:53'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2023-01-10 05:51:56'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2023-01-10 05:51:56'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\",\"primary_light\":\"#CFDFFB\"}', '2020-10-11 13:53:02', '2024-02-19 08:35:38'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2023-01-10 05:51:56'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":0,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":0,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2023-01-10 05:51:56'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (87, 'refund-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (88, 'return-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (89, 'cancellation-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (90, 'offline_payment', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (91, 'temporary_close', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (92, 'vacation_add', '{\"status\":0,\"vacation_start_date\":null,\"vacation_end_date\":null,\"vacation_note\":null}', NULL, '2023-03-04 06:25:36'), (93, 'cookie_setting', '{\"status\":0,\"cookie_text\":null}', NULL, '2023-03-04 06:25:36'), (94, 'maximum_otp_hit', '0', NULL, '2023-06-13 13:04:49'), (95, 'otp_resend_time', '0', NULL, '2023-06-13 13:04:49'), (96, 'temporary_block_time', '0', NULL, '2023-06-13 13:04:49'), (97, 'maximum_login_hit', '0', NULL, '2023-06-13 13:04:49'), (98, 'temporary_login_block_time', '0', NULL, '2023-06-13 13:04:49'), (104, 'apple_login', '[{\"login_medium\":\"apple\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":0,\"team_id\":\"\",\"key_id\":\"\",\"service_file\":\"\",\"redirect_url\":\"\"}]', NULL, '2023-10-13 05:34:53'), (105, 'ref_earning_status', '0', NULL, '2023-10-13 05:34:53'), (106, 'ref_earning_exchange_rate', '0', NULL, '2023-10-13 05:34:53'), (107, 'guest_checkout', '0', NULL, '2023-10-13 11:34:53'), (108, 'minimum_order_amount', '0', NULL, '2023-10-13 11:34:53'), (109, 'minimum_order_amount_by_seller', '0', NULL, '2023-10-13 11:34:53'), (110, 'minimum_order_amount_status', '0', NULL, '2023-10-13 11:34:53'), (111, 'admin_login_url', 'admin', NULL, '2023-10-13 11:34:53'), (112, 'employee_login_url', 'employee', NULL, '2023-10-13 11:34:53'), (113, 'free_delivery_status', '0', NULL, '2023-10-13 11:34:53'), (114, 'free_delivery_responsibility', 'admin', NULL, '2023-10-13 11:34:53'), (115, 'free_delivery_over_amount', '0', NULL, '2023-10-13 11:34:53'), (116, 'free_delivery_over_amount_seller', '0', NULL, '2023-10-13 11:34:53'), (117, 'add_funds_to_wallet', '0', NULL, '2023-10-13 11:34:53'), (118, 'minimum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (119, 'maximum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (120, 'user_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (121, 'seller_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (122, 'delivery_man_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (123, 'whatsapp', '{\"status\":1,\"phone\":\"00000000000\"}', NULL, '2023-10-13 11:34:53'), (124, 'currency_symbol_position', 'left', NULL, '2023-10-13 11:34:53'), (148, 'company_reliability', '[{\"item\":\"delivery_info\",\"title\":\"Fast Delivery all across the country\",\"image\":\"\",\"status\":1},{\"item\":\"safe_payment\",\"title\":\"Safe Payment\",\"image\":\"\",\"status\":1},{\"item\":\"return_policy\",\"title\":\"7 Days Return Policy\",\"image\":\"\",\"status\":1},{\"item\":\"authentic_product\",\"title\":\"100% Authentic Products\",\"image\":\"\",\"status\":1}]', NULL, NULL), (149, 'react_setup', '{\"status\":0,\"react_license_code\":\"\",\"react_domain\":\"\",\"react_platform\":\"\"}', NULL, '2024-01-09 04:05:15'), (150, 'app_activation', '{\"software_id\":\"\",\"is_active\":0}', NULL, '2024-01-09 04:05:15'), (151, 'shop_banner', '', NULL, '2023-10-13 11:34:53'); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0', `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `seller_id` bigint(20) DEFAULT NULL COMMENT 'NULL=in-house, 0=all seller', `customer_id` bigint(20) DEFAULT NULL COMMENT '0 = all customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT '0.00', `cash_in_hand` decimal(50,2) NOT NULL DEFAULT '0.00', `pending_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `total_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT '0.00', `credit` decimal(50,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `is_online` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `digital_product_otp_verifications` -- CREATE TABLE `digital_product_otp_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `guest_users` -- CREATE TABLE `guest_users` ( `id` bigint(20) UNSIGNED NOT NULL, `ip_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fcm_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `guest_users` -- INSERT INTO `guest_users` (`id`, `ip_address`, `fcm_token`, `created_at`, `updated_at`) VALUES (1, '::1', NULL, '2024-02-19 08:35:50', NULL); -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68), (195, '2022_12_17_035723_few_field_add_to_coupons_table', 69), (196, '2022_12_26_231606_add_coupon_discount_bearer_and_admin_commission_to_orders', 69), (197, '2023_01_04_003034_alter_billing_addresses_change_zip', 69), (198, '2023_01_05_121600_change_id_to_transactions_table', 69), (199, '2023_02_02_113330_create_product_tag_table', 70), (200, '2023_02_02_114518_create_tags_table', 70), (201, '2023_02_02_152248_add_tax_model_to_products_table', 70), (202, '2023_02_02_152718_add_tax_model_to_order_details_table', 70), (203, '2023_02_02_171034_add_tax_type_to_carts', 70), (204, '2023_02_06_124447_add_color_image_column_to_products_table', 70), (205, '2023_02_07_120136_create_withdrawal_methods_table', 70), (206, '2023_02_07_175939_add_withdrawal_method_id_and_withdrawal_method_fields_to_withdraw_requests_table', 70), (207, '2023_02_08_143314_add_vacation_start_and_vacation_end_and_vacation_not_column_to_shops_table', 70), (208, '2023_02_09_104656_add_payment_by_and_payment_not_to_orders_table', 70), (209, '2023_03_27_150723_add_expires_at_to_phone_or_email_verifications', 71), (210, '2023_04_17_095721_create_shop_followers_table', 71), (211, '2023_04_17_111249_add_bottom_banner_to_shops_table', 71), (212, '2023_04_20_125423_create_product_compares_table', 71), (213, '2023_04_30_165642_add_category_sub_category_and_sub_sub_category_add_in_product_table', 71), (214, '2023_05_16_131006_add_expires_at_to_password_resets', 71), (215, '2023_05_17_044243_add_visit_count_to_tags_table', 71), (216, '2023_05_18_000403_add_title_and_subtitle_and_background_color_and_button_text_to_banners_table', 71), (217, '2023_05_21_111300_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_users_table', 71), (218, '2023_05_21_111600_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_phone_or_email_verifications_table', 71), (219, '2023_05_21_112215_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_password_resets_table', 71), (220, '2023_06_04_210726_attachment_lenght_change_to_reviews_table', 71), (221, '2023_06_05_115153_add_referral_code_and_referred_by_to_users_table', 72), (222, '2023_06_21_002658_add_offer_banner_to_shops_table', 72), (223, '2023_07_08_210747_create_most_demandeds_table', 72), (224, '2023_07_31_111419_add_minimum_order_amount_to_sellers_table', 72), (225, '2023_08_03_105256_create_offline_payment_methods_table', 72), (226, '2023_08_07_131013_add_is_guest_column_to_carts_table', 72), (227, '2023_08_07_170601_create_offline_payments_table', 72), (228, '2023_08_12_102355_create_add_fund_bonus_categories_table', 72), (229, '2023_08_12_215346_create_guest_users_table', 72), (230, '2023_08_12_215659_add_is_guest_column_to_orders_table', 72), (231, '2023_08_12_215933_add_is_guest_column_to_shipping_addresses_table', 72), (232, '2023_08_15_000957_add_email_column_toshipping_address_table', 72), (233, '2023_08_17_222330_add_identify_related_columns_to_admins_table', 72), (234, '2023_08_20_230624_add_sent_by_and_send_to_in_notifications_table', 72), (235, '2023_08_20_230911_create_notification_seens_table', 72), (236, '2023_08_21_042331_add_theme_to_banners_table', 72), (237, '2023_08_24_150009_add_free_delivery_over_amount_and_status_to_seller_table', 72), (238, '2023_08_26_161214_add_is_shipping_free_to_orders_table', 72), (239, '2023_08_26_173523_add_payment_method_column_to_wallet_transactions_table', 72), (240, '2023_08_26_204653_add_verification_status_column_to_orders_table', 72), (241, '2023_08_26_225113_create_order_delivery_verifications_table', 72), (242, '2023_09_03_212200_add_free_delivery_responsibility_column_to_orders_table', 72), (243, '2023_09_23_153314_add_shipping_responsibility_column_to_orders_table', 72), (244, '2023_09_25_152733_create_digital_product_otp_verifications_table', 72), (245, '2023_09_27_191638_add_attachment_column_to_support_ticket_convs_table', 73), (246, '2023_10_01_205117_add_attachment_column_to_chattings_table', 73), (247, '2023_10_07_182714_create_notification_messages_table', 73), (248, '2023_10_21_113354_add_app_language_column_to_users_table', 73), (249, '2023_10_21_123433_add_app_language_column_to_sellers_table', 73), (250, '2023_10_21_124657_add_app_language_column_to_delivery_men_table', 73), (251, '2023_10_22_130225_add_attachment_to_support_tickets_table', 73), (252, '2023_10_25_113233_make_message_nullable_in_chattings_table', 73), (253, '2023_10_30_152005_make_attachment_column_type_change_to_reviews_table', 73), (254, '2024_01_14_192546_add_slug_to_shops_table', 74), (255, '2024_01_25_175421_add_country_code_to_emergency_contacts_table', 75), (256, '2024_02_01_200417_add_denied_count_and_approved_count_to_refund_requests_table', 75); -- -------------------------------------------------------- -- -- Table structure for table `most_demandeds` -- CREATE TABLE `most_demandeds` ( `id` bigint(20) UNSIGNED NOT NULL, `banner` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `sent_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'system', `sent_to` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT '0', `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notification_messages` -- CREATE TABLE `notification_messages` ( `id` bigint(20) UNSIGNED NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `notification_messages` -- INSERT INTO `notification_messages` (`id`, `user_type`, `key`, `message`, `status`, `created_at`, `updated_at`) VALUES (1, 'customer', 'order_pending_message', 'order pen message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (2, 'customer', 'order_confirmation_message', 'Order con Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (3, 'customer', 'order_processing_message', 'Order pro Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (4, 'customer', 'out_for_delivery_message', 'Order ouut Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (5, 'customer', 'order_delivered_message', 'Order del Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (6, 'customer', 'order_returned_message', 'Order hh Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (7, 'customer', 'order_failed_message', 'Order fa Message', 0, '2023-10-30 11:02:55', '2024-02-19 08:35:38'), (8, 'customer', 'order_canceled', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (9, 'customer', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (10, 'customer', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (11, 'customer', 'message_from_delivery_man', 'customize your message from delivery man message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (12, 'customer', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (13, 'customer', 'fund_added_by_admin_message', 'customize your fund added by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (14, 'seller', 'new_order_message', 'customize your new order message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (15, 'seller', 'refund_request_message', 'customize your refund request message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (16, 'seller', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (17, 'seller', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (18, 'seller', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (19, 'seller', 'delivery_man_assign_by_admin_message', 'customize your delivery man assign by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (20, 'seller', 'order_delivered_message', 'customize your order delivered message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (21, 'seller', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (22, 'seller', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (23, 'seller', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (24, 'seller', 'refund_request_status_changed_by_admin', 'customize your refund request status changed by admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (25, 'delivery_man', 'new_order_assigned_message', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (26, 'delivery_man', 'expected_delivery_date', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (27, 'delivery_man', 'delivery_man_charge', 'customize your delivery man charge message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (28, 'delivery_man', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (29, 'delivery_man', 'order_rescheduled_message', 'customize your order rescheduled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (30, 'delivery_man', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (31, 'delivery_man', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (32, 'delivery_man', 'message_from_admin', 'customize your message from admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (33, 'delivery_man', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (34, 'delivery_man', 'cash_collect_by_admin_message', 'customize your cash collect by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (35, 'delivery_man', 'cash_collect_by_seller_message', 'customize your cash collect by seller message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (36, 'delivery_man', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (37, 'seller', 'product_request_approved_message', 'customize your product request approved message message', 1, '2024-02-19 08:35:38', '2024-02-19 08:35:38'), (38, 'seller', 'product_request_rejected_message', 'customize your product request rejected message message', 1, '2024-02-19 08:35:38', '2024-02-19 08:35:38'); -- -------------------------------------------------------- -- -- Table structure for table `notification_seens` -- CREATE TABLE `notification_seens` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `notification_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payments` -- CREATE TABLE `offline_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `payment_info` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payment_methods` -- CREATE TABLE `offline_payment_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `method_informations` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_note` text COLLATE utf8mb4_unicode_ci, `order_amount` double NOT NULL DEFAULT '0', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `is_pause` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_discount_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `shipping_responsibility` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `is_shipping_free` tinyint(1) NOT NULL DEFAULT '0', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `verification_status` tinyint(4) NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT '0', `expected_delivery_date` date DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_delivery_bearer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_delivery_verifications` -- CREATE TABLE `order_delivery_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `image` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(50,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT '0.00', `tax` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payment_requests` -- CREATE TABLE `payment_requests` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `payer_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_amount` decimal(24,2) NOT NULL DEFAULT '0.00', `gateway_callback_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `success_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `failure_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currency_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'USD', `payment_method` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `is_paid` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `payer_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `external_redirect_link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `attribute_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attribute` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_platform` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci, `color_image` text COLLATE utf8mb4_unicode_ci NOT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT '1', `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_compares` -- CREATE TABLE `product_compares` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL COMMENT 'customer_id', `product_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_tag` -- CREATE TABLE `product_tag` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `tag_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `approved_count` tinyint(4) NOT NULL DEFAULT '0', `denied_count` tinyint(4) NOT NULL DEFAULT '0', `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `is_saved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0', `minimum_order_amount` double(8,2) NOT NULL DEFAULT '0.00', `free_delivery_status` int(11) NOT NULL DEFAULT '0', `free_delivery_over_amount` double(8,2) NOT NULL DEFAULT '0.00', `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `bottom_banner` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `offer_banner` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_start_date` date DEFAULT NULL, `vacation_end_date` date DEFAULT NULL, `vacation_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_status` tinyint(4) NOT NULL DEFAULT '0', `temporary_close` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shop_followers` -- CREATE TABLE `shop_followers` ( `id` bigint(20) UNSIGNED NOT NULL, `shop_id` int(11) NOT NULL, `user_id` int(11) NOT NULL COMMENT 'Customer ID', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` bigint(20) UNSIGNED NOT NULL, `tag` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `visit_count` bigint(20) UNSIGNED NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` int(10) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0', `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL, `login_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `referral_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referred_by` int(11) DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`, `login_hit_count`, `is_temp_blocked`, `temp_block_time`, `referral_code`, `referred_by`, `app_language`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, 0, NULL, NULL, NULL, 'en'); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `admin_bonus` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdrawal_methods` -- CREATE TABLE `withdrawal_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` tinyint(4) NOT NULL DEFAULT '0', `is_active` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `withdrawal_method_id` bigint(20) UNSIGNED DEFAULT NULL, `withdrawal_method_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `transaction_note` text COLLATE utf8mb4_unicode_ci, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `addon_settings` -- ALTER TABLE `addon_settings` ADD PRIMARY KEY (`id`), ADD KEY `payment_settings_id_index` (`id`); -- -- Indexes for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `guest_users` -- ALTER TABLE `guest_users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `most_demandeds` -- ALTER TABLE `most_demandeds` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_messages` -- ALTER TABLE `notification_messages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_seens` -- ALTER TABLE `notification_seens` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `offline_payments` -- ALTER TABLE `offline_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD PRIMARY KEY (`id`), ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_compares` -- ALTER TABLE `product_compares` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_tag` -- ALTER TABLE `product_tag` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shop_followers` -- ALTER TABLE `shop_followers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=152; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `guest_users` -- ALTER TABLE `guest_users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=257; -- -- AUTO_INCREMENT for table `most_demandeds` -- ALTER TABLE `most_demandeds` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notification_messages` -- ALTER TABLE `notification_messages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39; -- -- AUTO_INCREMENT for table `notification_seens` -- ALTER TABLE `notification_seens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `offline_payments` -- ALTER TABLE `offline_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `password_resets` -- ALTER TABLE `password_resets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_compares` -- ALTER TABLE `product_compares` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_tag` -- ALTER TABLE `product_tag` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shop_followers` -- ALTER TABLE `shop_followers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!P?8c8cbackup/database_v6.0.sqlnu[-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Jan 18, 2022 at 09:47 AM -- Server version: 5.7.34 -- PHP Version: 7.4.21 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_live` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` int(10) UNSIGNED DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1}]', '2020-10-11 07:53:02', '2021-06-10 21:16:25'), (3, 'mail_config', '{\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"store_id\":null,\"store_password\":null}', '2020-11-09 08:36:51', '2021-07-06 12:29:46'), (7, 'paypal', '{\"status\":\"0\",\"paypal_client_id\":null,\"paypal_secret\":null}', '2020-11-09 08:51:39', '2021-07-06 12:29:57'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (9, 'paytm', '{\"status\":\"0\",\"paytm_merchant_id\":\"dbzfb\",\"paytm_merchant_key\":\"sdfbsdfb\",\"paytm_merchant_website\":\"dsfbsdf\",\"paytm_channel\":\"sdfbsdf\",\"paytm_industry_type\":\"sdfb\"}', '2020-11-09 09:19:08', '2020-11-09 09:19:56'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\"}', '2020-10-11 13:53:02', '2021-05-25 21:43:11'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, NULL), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double(8,2) NOT NULL DEFAULT '1.00', `tax` double(8,2) NOT NULL DEFAULT '1.00', `discount` double(8,2) NOT NULL DEFAULT '1.00', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `seller_id` bigint(20) NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (16, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (38, 'Fuchsia', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (93, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_amount` double NOT NULL DEFAULT '0', `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(8,2) NOT NULL DEFAULT '0.00', `tax` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `images` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `transaction_note` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `delivery_men_phone_unique` (`phone`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=67; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=142; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!dubackup/database_v14.3.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: Jan 09, 2024 at 04:05 AM -- Server version: 5.7.39 -- PHP Version: 8.2.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `install` -- -- -------------------------------------------------------- -- -- Table structure for table `addon_settings` -- CREATE TABLE `addon_settings` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `key_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `live_values` longtext COLLATE utf8mb4_unicode_ci, `test_values` longtext COLLATE utf8mb4_unicode_ci, `settings_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'live', `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `addon_settings` -- INSERT INTO `addon_settings` (`id`, `key_name`, `live_values`, `test_values`, `settings_type`, `mode`, `is_active`, `created_at`, `updated_at`, `additional_data`) VALUES ('070c6bbd-d777-11ed-96f4-0c7a158e4469', 'twilio', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:29', NULL), ('070c766c-d777-11ed-96f4-0c7a158e4469', '2factor', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:36', NULL), ('0d8a9308-d6a5-11ed-962c-0c7a158e4469', 'mercadopago', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-27 11:57:11', '{\"gateway_title\":\"Mercadopago\",\"gateway_image\":null}'), ('0d8a9e49-d6a5-11ed-962c-0c7a158e4469', 'liqpay', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:31', '{\"gateway_title\":\"Liqpay\",\"gateway_image\":null}'), ('101befdf-d44b-11ed-8564-0c7a158e4469', 'paypal', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:41:32', '{\"gateway_title\":\"Paypal\",\"gateway_image\":null}'), ('133d9647-cabb-11ed-8fec-0c7a158e4469', 'hyper_pay', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:42', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('1821029f-d776-11ed-96f4-0c7a158e4469', 'msg91', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:48', NULL), ('18210f2b-d776-11ed-96f4-0c7a158e4469', 'nexmo', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('18fbb21f-d6ad-11ed-962c-0c7a158e4469', 'foloosi', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:33', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('2767d142-d6a1-11ed-962c-0c7a158e4469', 'paytm', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-22 06:30:55', '{\"gateway_title\":\"Paytm\",\"gateway_image\":null}'), ('3201d2e6-c937-11ed-a424-0c7a158e4469', 'amazon_pay', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:07', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('4593b25c-d6a1-11ed-962c-0c7a158e4469', 'paytabs', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:51', '{\"gateway_title\":\"Paytabs\",\"gateway_image\":null}'), ('4e9b8dfb-e7d1-11ed-a559-0c7a158e4469', 'bkash', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:39:42', '{\"gateway_title\":\"Bkash\",\"gateway_image\":null}'), ('544a24a4-c872-11ed-ac7a-0c7a158e4469', 'fatoorah', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:24', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('58c1bc8a-d6ac-11ed-962c-0c7a158e4469', 'ccavenue', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:42:38', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-643783f01d386.png\"}'), ('5e2d2ef9-d6ab-11ed-962c-0c7a158e4469', 'thawani', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:40', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-64378f9856f29.png\"}'), ('60cc83cc-d5b9-11ed-b56f-0c7a158e4469', 'sixcash', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:16:17', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-12-6436774e77ff9.png\"}'), ('68579846-d8e8-11ed-8249-0c7a158e4469', 'alphanet_sms', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('6857a2e8-d8e8-11ed-8249-0c7a158e4469', 'sms_to', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('74c30c00-d6a6-11ed-962c-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:37:43', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('74e46b0a-d6aa-11ed-962c-0c7a158e4469', 'tap', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:09', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('761ca96c-d1eb-11ed-87ca-0c7a158e4469', 'swish', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('7b1c3c5f-d2bd-11ed-b485-0c7a158e4469', 'payfast', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:13', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('8592417b-d1d1-11ed-a984-0c7a158e4469', 'esewa', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:38', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('9162a1dc-cdf1-11ed-affe-0c7a158e4469', 'viva_wallet', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', 'payment_config', 'test', 0, NULL, NULL, NULL), ('998ccc62-d6a0-11ed-962c-0c7a158e4469', 'stripe', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:55', '{\"gateway_title\":\"Stripe\",\"gateway_image\":null}'), ('a3313755-c95d-11ed-b1db-0c7a158e4469', 'iyzi_pay', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a76c8993-d299-11ed-b485-0c7a158e4469', 'momo', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', 'payment_config', 'live', 0, NULL, '2023-08-30 04:19:28', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a8608119-cc76-11ed-9bca-0c7a158e4469', 'moncash', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:34', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('ad5af1c1-d6a2-11ed-962c-0c7a158e4469', 'razor_pay', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:00', '{\"gateway_title\":\"Razor pay\",\"gateway_image\":null}'), ('ad5b02a0-d6a2-11ed-962c-0c7a158e4469', 'senang_pay', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', 'payment_config', 'test', 0, NULL, '2023-08-27 09:58:57', '{\"gateway_title\":\"Senang pay\",\"gateway_image\":null}'), ('b6c333f6-d8e9-11ed-8249-0c7a158e4469', 'akandit_sms', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b6c33c87-d8e9-11ed-8249-0c7a158e4469', 'global_sms', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b8992bd4-d6a0-11ed-962c-0c7a158e4469', 'paymob_accept', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', 'payment_config', 'test', 0, NULL, NULL, '{\"gateway_title\":\"Paymob accept\",\"gateway_image\":null}'), ('c41c0dcd-d119-11ed-9f67-0c7a158e4469', 'maxicash', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:49:15', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('c9249d17-cd60-11ed-b879-0c7a158e4469', 'pvit', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', 'payment_config', 'test', 0, NULL, NULL, NULL), ('cb0081ce-d775-11ed-96f4-0c7a158e4469', 'releans', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('d4f3f5f1-d6a0-11ed-962c-0c7a158e4469', 'flutterwave', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:41:03', '{\"gateway_title\":\"Flutterwave\",\"gateway_image\":null}'), ('d822f1a5-c864-11ed-ac7a-0c7a158e4469', 'paystack', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:45', '{\"gateway_title\":\"Paystack\",\"gateway_image\":null}'), ('daec8d59-c893-11ed-ac7a-0c7a158e4469', 'xendit', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:46', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('dc0f5fc9-d6a5-11ed-962c-0c7a158e4469', 'worldpay', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:26', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('e0450278-d8eb-11ed-8249-0c7a158e4469', 'signal_wire', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('e0450b40-d8eb-11ed-8249-0c7a158e4469', 'paradox', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-09-10 01:14:01', NULL), ('ea346efe-cdda-11ed-affe-0c7a158e4469', 'ssl_commerz', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:43:49', '{\"gateway_title\":\"Ssl commerz\",\"gateway_image\":null}'), ('eed88336-d8ec-11ed-8249-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149c546-d8ea-11ed-8249-0c7a158e4469', 'viatech', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149cd9c-d8ea-11ed-8249-0c7a158e4469', '019_sms', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `add_fund_bonus_categories` -- CREATE TABLE `add_fund_bonus_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `bonus_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `min_add_money_amount` double(14,2) NOT NULL DEFAULT '0.00', `max_bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `start_date_time` datetime DEFAULT NULL, `end_date_time` datetime DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `identify_image` text COLLATE utf8mb4_unicode_ci, `identify_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identify_number` int(11) DEFAULT NULL, `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button_text` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `background_color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1,\"default\":true}]', '2020-10-11 07:53:02', '2023-10-13 11:34:53'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2023-01-10 05:51:56'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2023-01-10 05:51:56'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\",\"primary_light\":\"#CFDFFB\"}', '2020-10-11 13:53:02', '2024-01-09 04:05:15'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2023-01-10 05:51:56'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":0,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":0,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2023-01-10 05:51:56'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (87, 'refund-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (88, 'return-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (89, 'cancellation-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (90, 'offline_payment', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (91, 'temporary_close', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (92, 'vacation_add', '{\"status\":0,\"vacation_start_date\":null,\"vacation_end_date\":null,\"vacation_note\":null}', NULL, '2023-03-04 06:25:36'), (93, 'cookie_setting', '{\"status\":0,\"cookie_text\":null}', NULL, '2023-03-04 06:25:36'), (94, 'maximum_otp_hit', '0', NULL, '2023-06-13 13:04:49'), (95, 'otp_resend_time', '0', NULL, '2023-06-13 13:04:49'), (96, 'temporary_block_time', '0', NULL, '2023-06-13 13:04:49'), (97, 'maximum_login_hit', '0', NULL, '2023-06-13 13:04:49'), (98, 'temporary_login_block_time', '0', NULL, '2023-06-13 13:04:49'), (104, 'apple_login', '[{\"login_medium\":\"apple\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":0,\"team_id\":\"\",\"key_id\":\"\",\"service_file\":\"\",\"redirect_url\":\"\"}]', NULL, '2023-10-13 05:34:53'), (105, 'ref_earning_status', '0', NULL, '2023-10-13 05:34:53'), (106, 'ref_earning_exchange_rate', '0', NULL, '2023-10-13 05:34:53'), (107, 'guest_checkout', '0', NULL, '2023-10-13 11:34:53'), (108, 'minimum_order_amount', '0', NULL, '2023-10-13 11:34:53'), (109, 'minimum_order_amount_by_seller', '0', NULL, '2023-10-13 11:34:53'), (110, 'minimum_order_amount_status', '0', NULL, '2023-10-13 11:34:53'), (111, 'admin_login_url', 'admin', NULL, '2023-10-13 11:34:53'), (112, 'employee_login_url', 'employee', NULL, '2023-10-13 11:34:53'), (113, 'free_delivery_status', '0', NULL, '2023-10-13 11:34:53'), (114, 'free_delivery_responsibility', 'admin', NULL, '2023-10-13 11:34:53'), (115, 'free_delivery_over_amount', '0', NULL, '2023-10-13 11:34:53'), (116, 'free_delivery_over_amount_seller', '0', NULL, '2023-10-13 11:34:53'), (117, 'add_funds_to_wallet', '0', NULL, '2023-10-13 11:34:53'), (118, 'minimum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (119, 'maximum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (120, 'user_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (121, 'seller_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (122, 'delivery_man_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (123, 'whatsapp', '{\"status\":1,\"phone\":\"00000000000\"}', NULL, '2023-10-13 11:34:53'), (124, 'currency_symbol_position', 'left', NULL, '2023-10-13 11:34:53'), (148, 'company_reliability', '[{\"item\":\"delivery_info\",\"title\":\"Fast Delivery all across the country\",\"image\":\"\",\"status\":1},{\"item\":\"safe_payment\",\"title\":\"Safe Payment\",\"image\":\"\",\"status\":1},{\"item\":\"return_policy\",\"title\":\"7 Days Return Policy\",\"image\":\"\",\"status\":1},{\"item\":\"authentic_product\",\"title\":\"100% Authentic Products\",\"image\":\"\",\"status\":1}]', NULL, NULL), (149, 'react_setup', '{\"status\":0,\"react_license_code\":\"\",\"react_domain\":\"\",\"react_platform\":\"\"}', NULL, '2024-01-09 04:05:15'), (150, 'app_activation', '{\"software_id\":\"\",\"is_active\":0}', NULL, '2024-01-09 04:05:15'); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0', `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `seller_id` bigint(20) DEFAULT NULL COMMENT 'NULL=in-house, 0=all seller', `customer_id` bigint(20) DEFAULT NULL COMMENT '0 = all customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT '0.00', `cash_in_hand` decimal(50,2) NOT NULL DEFAULT '0.00', `pending_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `total_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT '0.00', `credit` decimal(50,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `is_online` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `digital_product_otp_verifications` -- CREATE TABLE `digital_product_otp_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `guest_users` -- CREATE TABLE `guest_users` ( `id` bigint(20) UNSIGNED NOT NULL, `ip_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fcm_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `guest_users` -- INSERT INTO `guest_users` (`id`, `ip_address`, `fcm_token`, `created_at`, `updated_at`) VALUES (1, '::1', NULL, '2023-10-13 05:34:54', NULL), (2, '::1', NULL, '2023-10-30 11:02:56', NULL), (3, '::1', NULL, '2024-01-09 04:05:18', NULL); -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68), (195, '2022_12_17_035723_few_field_add_to_coupons_table', 69), (196, '2022_12_26_231606_add_coupon_discount_bearer_and_admin_commission_to_orders', 69), (197, '2023_01_04_003034_alter_billing_addresses_change_zip', 69), (198, '2023_01_05_121600_change_id_to_transactions_table', 69), (199, '2023_02_02_113330_create_product_tag_table', 70), (200, '2023_02_02_114518_create_tags_table', 70), (201, '2023_02_02_152248_add_tax_model_to_products_table', 70), (202, '2023_02_02_152718_add_tax_model_to_order_details_table', 70), (203, '2023_02_02_171034_add_tax_type_to_carts', 70), (204, '2023_02_06_124447_add_color_image_column_to_products_table', 70), (205, '2023_02_07_120136_create_withdrawal_methods_table', 70), (206, '2023_02_07_175939_add_withdrawal_method_id_and_withdrawal_method_fields_to_withdraw_requests_table', 70), (207, '2023_02_08_143314_add_vacation_start_and_vacation_end_and_vacation_not_column_to_shops_table', 70), (208, '2023_02_09_104656_add_payment_by_and_payment_not_to_orders_table', 70), (209, '2023_03_27_150723_add_expires_at_to_phone_or_email_verifications', 71), (210, '2023_04_17_095721_create_shop_followers_table', 71), (211, '2023_04_17_111249_add_bottom_banner_to_shops_table', 71), (212, '2023_04_20_125423_create_product_compares_table', 71), (213, '2023_04_30_165642_add_category_sub_category_and_sub_sub_category_add_in_product_table', 71), (214, '2023_05_16_131006_add_expires_at_to_password_resets', 71), (215, '2023_05_17_044243_add_visit_count_to_tags_table', 71), (216, '2023_05_18_000403_add_title_and_subtitle_and_background_color_and_button_text_to_banners_table', 71), (217, '2023_05_21_111300_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_users_table', 71), (218, '2023_05_21_111600_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_phone_or_email_verifications_table', 71), (219, '2023_05_21_112215_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_password_resets_table', 71), (220, '2023_06_04_210726_attachment_lenght_change_to_reviews_table', 71), (221, '2023_06_05_115153_add_referral_code_and_referred_by_to_users_table', 72), (222, '2023_06_21_002658_add_offer_banner_to_shops_table', 72), (223, '2023_07_08_210747_create_most_demandeds_table', 72), (224, '2023_07_31_111419_add_minimum_order_amount_to_sellers_table', 72), (225, '2023_08_03_105256_create_offline_payment_methods_table', 72), (226, '2023_08_07_131013_add_is_guest_column_to_carts_table', 72), (227, '2023_08_07_170601_create_offline_payments_table', 72), (228, '2023_08_12_102355_create_add_fund_bonus_categories_table', 72), (229, '2023_08_12_215346_create_guest_users_table', 72), (230, '2023_08_12_215659_add_is_guest_column_to_orders_table', 72), (231, '2023_08_12_215933_add_is_guest_column_to_shipping_addresses_table', 72), (232, '2023_08_15_000957_add_email_column_toshipping_address_table', 72), (233, '2023_08_17_222330_add_identify_related_columns_to_admins_table', 72), (234, '2023_08_20_230624_add_sent_by_and_send_to_in_notifications_table', 72), (235, '2023_08_20_230911_create_notification_seens_table', 72), (236, '2023_08_21_042331_add_theme_to_banners_table', 72), (237, '2023_08_24_150009_add_free_delivery_over_amount_and_status_to_seller_table', 72), (238, '2023_08_26_161214_add_is_shipping_free_to_orders_table', 72), (239, '2023_08_26_173523_add_payment_method_column_to_wallet_transactions_table', 72), (240, '2023_08_26_204653_add_verification_status_column_to_orders_table', 72), (241, '2023_08_26_225113_create_order_delivery_verifications_table', 72), (242, '2023_09_03_212200_add_free_delivery_responsibility_column_to_orders_table', 72), (243, '2023_09_23_153314_add_shipping_responsibility_column_to_orders_table', 72), (244, '2023_09_25_152733_create_digital_product_otp_verifications_table', 72), (245, '2023_09_27_191638_add_attachment_column_to_support_ticket_convs_table', 73), (246, '2023_10_01_205117_add_attachment_column_to_chattings_table', 73), (247, '2023_10_07_182714_create_notification_messages_table', 73), (248, '2023_10_21_113354_add_app_language_column_to_users_table', 73), (249, '2023_10_21_123433_add_app_language_column_to_sellers_table', 73), (250, '2023_10_21_124657_add_app_language_column_to_delivery_men_table', 73), (251, '2023_10_22_130225_add_attachment_to_support_tickets_table', 73), (252, '2023_10_25_113233_make_message_nullable_in_chattings_table', 73), (253, '2023_10_30_152005_make_attachment_column_type_change_to_reviews_table', 73); -- -------------------------------------------------------- -- -- Table structure for table `most_demandeds` -- CREATE TABLE `most_demandeds` ( `id` bigint(20) UNSIGNED NOT NULL, `banner` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `sent_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'system', `sent_to` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT '0', `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notification_messages` -- CREATE TABLE `notification_messages` ( `id` bigint(20) UNSIGNED NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `notification_messages` -- INSERT INTO `notification_messages` (`id`, `user_type`, `key`, `message`, `status`, `created_at`, `updated_at`) VALUES (1, 'customer', 'order_pending_message', 'order pen message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (2, 'customer', 'order_confirmation_message', 'Order con Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (3, 'customer', 'order_processing_message', 'Order pro Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (4, 'customer', 'out_for_delivery_message', 'Order ouut Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (5, 'customer', 'order_delivered_message', 'Order del Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (6, 'customer', 'order_returned_message', 'Order hh Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (7, 'customer', 'order_failed_message', 'Order fa Message', 0, '2023-10-30 11:02:55', '2024-01-09 04:05:15'), (8, 'customer', 'order_canceled', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (9, 'customer', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (10, 'customer', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (11, 'customer', 'message_from_delivery_man', 'customize your message from delivery man message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (12, 'customer', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (13, 'customer', 'fund_added_by_admin_message', 'customize your fund added by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (14, 'seller', 'new_order_message', 'customize your new order message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (15, 'seller', 'refund_request_message', 'customize your refund request message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (16, 'seller', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (17, 'seller', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (18, 'seller', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (19, 'seller', 'delivery_man_assign_by_admin_message', 'customize your delivery man assign by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (20, 'seller', 'order_delivered_message', 'customize your order delivered message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (21, 'seller', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (22, 'seller', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (23, 'seller', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (24, 'seller', 'refund_request_status_changed_by_admin', 'customize your refund request status changed by admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (25, 'delivery_man', 'new_order_assigned_message', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (26, 'delivery_man', 'expected_delivery_date', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (27, 'delivery_man', 'delivery_man_charge', 'customize your delivery man charge message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (28, 'delivery_man', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (29, 'delivery_man', 'order_rescheduled_message', 'customize your order rescheduled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (30, 'delivery_man', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (31, 'delivery_man', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (32, 'delivery_man', 'message_from_admin', 'customize your message from admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (33, 'delivery_man', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (34, 'delivery_man', 'cash_collect_by_admin_message', 'customize your cash collect by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (35, 'delivery_man', 'cash_collect_by_seller_message', 'customize your cash collect by seller message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (36, 'delivery_man', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'); -- -------------------------------------------------------- -- -- Table structure for table `notification_seens` -- CREATE TABLE `notification_seens` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `notification_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payments` -- CREATE TABLE `offline_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `payment_info` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payment_methods` -- CREATE TABLE `offline_payment_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `method_informations` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_note` text COLLATE utf8mb4_unicode_ci, `order_amount` double NOT NULL DEFAULT '0', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `is_pause` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_discount_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `shipping_responsibility` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `is_shipping_free` tinyint(1) NOT NULL DEFAULT '0', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `verification_status` tinyint(4) NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT '0', `expected_delivery_date` date DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_delivery_bearer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_delivery_verifications` -- CREATE TABLE `order_delivery_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `image` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(50,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT '0.00', `tax` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payment_requests` -- CREATE TABLE `payment_requests` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `payer_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_amount` decimal(24,2) NOT NULL DEFAULT '0.00', `gateway_callback_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `success_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `failure_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currency_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'USD', `payment_method` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `is_paid` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `payer_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `external_redirect_link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `attribute_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attribute` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_platform` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci, `color_image` text COLLATE utf8mb4_unicode_ci NOT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT '1', `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_compares` -- CREATE TABLE `product_compares` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL COMMENT 'customer_id', `product_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_tag` -- CREATE TABLE `product_tag` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `tag_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `is_saved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0', `minimum_order_amount` double(8,2) NOT NULL DEFAULT '0.00', `free_delivery_status` int(11) NOT NULL DEFAULT '0', `free_delivery_over_amount` double(8,2) NOT NULL DEFAULT '0.00', `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `bottom_banner` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `offer_banner` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_start_date` date DEFAULT NULL, `vacation_end_date` date DEFAULT NULL, `vacation_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_status` tinyint(4) NOT NULL DEFAULT '0', `temporary_close` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shop_followers` -- CREATE TABLE `shop_followers` ( `id` bigint(20) UNSIGNED NOT NULL, `shop_id` int(11) NOT NULL, `user_id` int(11) NOT NULL COMMENT 'Customer ID', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` bigint(20) UNSIGNED NOT NULL, `tag` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `visit_count` bigint(20) UNSIGNED NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` int(10) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0', `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL, `login_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `referral_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referred_by` int(11) DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`, `login_hit_count`, `is_temp_blocked`, `temp_block_time`, `referral_code`, `referred_by`, `app_language`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, 0, NULL, NULL, NULL, 'en'); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `admin_bonus` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdrawal_methods` -- CREATE TABLE `withdrawal_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` tinyint(4) NOT NULL DEFAULT '0', `is_active` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `withdrawal_method_id` bigint(20) UNSIGNED DEFAULT NULL, `withdrawal_method_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `transaction_note` text COLLATE utf8mb4_unicode_ci, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `addon_settings` -- ALTER TABLE `addon_settings` ADD PRIMARY KEY (`id`), ADD KEY `payment_settings_id_index` (`id`); -- -- Indexes for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `guest_users` -- ALTER TABLE `guest_users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `most_demandeds` -- ALTER TABLE `most_demandeds` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_messages` -- ALTER TABLE `notification_messages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_seens` -- ALTER TABLE `notification_seens` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `offline_payments` -- ALTER TABLE `offline_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD PRIMARY KEY (`id`), ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_compares` -- ALTER TABLE `product_compares` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_tag` -- ALTER TABLE `product_tag` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shop_followers` -- ALTER TABLE `shop_followers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=151; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `guest_users` -- ALTER TABLE `guest_users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=254; -- -- AUTO_INCREMENT for table `most_demandeds` -- ALTER TABLE `most_demandeds` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notification_messages` -- ALTER TABLE `notification_messages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37; -- -- AUTO_INCREMENT for table `notification_seens` -- ALTER TABLE `notification_seens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `offline_payments` -- ALTER TABLE `offline_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `password_resets` -- ALTER TABLE `password_resets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_compares` -- ALTER TABLE `product_compares` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_tag` -- ALTER TABLE `product_tag` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shop_followers` -- ALTER TABLE `shop_followers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!ׇbackup/database_v13.0.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: Jan 10, 2023 at 06:53 AM -- Server version: 10.4.24-MariaDB -- PHP Version: 8.1.6 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_test` -- -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT 2, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT 0, `withdrawn` double NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT 0.00, `delivery_charge_earned` double(8,2) NOT NULL DEFAULT 0.00, `pending_amount` double(8,2) NOT NULL DEFAULT 0.00, `total_tax_collected` double(8,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `published` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1}]', '2020-10-11 07:53:02', '2021-06-10 21:16:25'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2023-01-10 05:51:56'), (7, 'paypal', '{\"status\":\"0\",\"environment\":\"sandbox\",\"paypal_client_id\":\"\",\"paypal_secret\":\"\"}', '2020-11-09 08:51:39', '2023-01-10 05:51:56'), (8, 'stripe', '{\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '2020-11-09 09:01:47', '2021-07-06 12:30:05'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\"}', '2020-10-11 13:53:02', '2021-05-25 21:43:11'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (32, 'razor_pay', '{\"status\":\"0\",\"razor_key\":null,\"razor_secret\":null}', NULL, '2021-07-06 12:30:14'), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (46, 'paystack', '{\"status\":\"0\",\"publicKey\":null,\"secretKey\":null,\"paymentUrl\":\"https:\\/\\/api.paystack.co\",\"merchantEmail\":null}', NULL, '2021-07-06 12:30:35'), (47, 'senang_pay', '{\"status\":\"0\",\"secret_key\":null,\"merchant_id\":null}', NULL, '2021-07-06 12:30:23'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (57, 'paymob_accept', '{\"status\":\"0\",\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', NULL, NULL), (58, 'bkash', '{\"status\":\"0\",\"environment\":\"sandbox\",\"api_key\":\"\",\"api_secret\":\"\",\"username\":\"\",\"password\":\"\"}', NULL, '2023-01-10 05:51:56'), (59, 'forgot_password_verification', 'email', NULL, NULL), (60, 'paytabs', '{\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', NULL, '2021-11-21 03:01:40'), (61, 'stock_limit', '10', NULL, NULL), (62, 'flutterwave', '{\"status\":1,\"public_key\":\"\",\"secret_key\":\"\",\"hash\":\"\"}', NULL, NULL), (63, 'mercadopago', '{\"status\":1,\"public_key\":\"\",\"access_token\":\"\"}', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (68, 'liqpay', '{\"status\":0,\"public_key\":\"\",\"private_key\":\"\"}', NULL, NULL), (69, 'paytm', '{\"status\":0,\"environment\":\"sandbox\",\"paytm_merchant_key\":\"\",\"paytm_merchant_mid\":\"\",\"paytm_merchant_website\":\"\",\"paytm_refund_url\":\"\"}', NULL, '2023-01-10 05:51:56'), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (87, 'refund-policy', '', NULL, NULL), (88, 'return-policy', '', NULL, NULL), (89, 'cancellation-policy', '', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variations` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `quantity` int(11) NOT NULL DEFAULT 1, `price` double NOT NULL DEFAULT 1, `tax` double NOT NULL DEFAULT 1, `discount` double NOT NULL DEFAULT 1, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT 0, `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT 0, `sent_by_seller` tinyint(1) NOT NULL DEFAULT 0, `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT 1, `seen_by_seller` tinyint(1) NOT NULL DEFAULT 1, `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp(), `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (16, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (38, 'Fuchsia', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (93, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT 0, `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `seller_id` bigint(20) DEFAULT NULL COMMENT 'NULL=in-house, 0=all seller', `customer_id` bigint(20) DEFAULT NULL COMMENT '0 = all customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT 0.00, `max_discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT 0.00, `royality_points` decimal(8,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT 0.00, `cash_in_hand` decimal(50,2) NOT NULL DEFAULT 0.00, `pending_withdraw` decimal(50,2) NOT NULL DEFAULT 0.00, `total_withdraw` decimal(50,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT 0.00, `credit` decimal(50,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `is_online` tinyint(4) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 0, `featured` tinyint(1) NOT NULL DEFAULT 0, `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT 0.00, `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `question` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `answer` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `ranking` int(11) NOT NULL DEFAULT 1, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT 0.000, `debit` decimal(24,3) NOT NULL DEFAULT 0.000, `balance` decimal(24,3) NOT NULL DEFAULT 0.000, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68), (195, '2022_12_17_035723_few_field_add_to_coupons_table', 69), (196, '2022_12_26_231606_add_coupon_discount_bearer_and_admin_commission_to_orders', 69), (197, '2023_01_04_003034_alter_billing_addresses_change_zip', 69), (198, '2023_01_05_121600_change_id_to_transactions_table', 69); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT 0, `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_amount` double NOT NULL DEFAULT 0, `admin_commission` decimal(8,2) NOT NULL DEFAULT 0.00, `is_pause` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT 0, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_discount_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `shipping_method_id` bigint(20) NOT NULL DEFAULT 0, `shipping_cost` double(8,2) NOT NULL DEFAULT 0.00, `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT 0, `expected_delivery_date` date DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT 0.00, `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT 0, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int(11) NOT NULL DEFAULT 0, `price` double NOT NULL DEFAULT 0, `tax` double NOT NULL DEFAULT 0, `discount` double NOT NULL DEFAULT 0, `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT 1, `refund_request` int(11) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT 0.00, `seller_amount` decimal(50,2) NOT NULL DEFAULT 0.00, `admin_commission` decimal(50,2) NOT NULL DEFAULT 0.00, `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT 0.00, `tax` decimal(50,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT 1, `refundable` tinyint(1) NOT NULL DEFAULT 1, `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT 0, `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `published` tinyint(1) NOT NULL DEFAULT 0, `unit_price` double NOT NULL DEFAULT 0, `purchase_price` double NOT NULL DEFAULT 0, `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT 1, `details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_shipping` tinyint(1) NOT NULL DEFAULT 0, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `featured_status` tinyint(1) NOT NULL DEFAULT 1, `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT 0, `denied_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT 0.00, `qty` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rejected_note` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_info` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT 0, `status` int(11) NOT NULL DEFAULT 1, `is_saved` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT 0 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT 0, `withdrawn` double NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT 0.00, `pending_withdraw` double(8,2) NOT NULL DEFAULT 0.00, `delivery_charge_earned` double(8,2) NOT NULL DEFAULT 0.00, `collected_cash` double(8,2) NOT NULL DEFAULT 0.00, `total_tax_collected` double(8,2) NOT NULL DEFAULT 0.00 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT 0, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT 0.00, `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` int(10) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT 0.00, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT 0, `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT 0, `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT 0.000, `debit` decimal(24,3) NOT NULL DEFAULT 0.000, `admin_bonus` decimal(24,3) NOT NULL DEFAULT 0.000, `balance` decimal(24,3) NOT NULL DEFAULT 0.000, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `transaction_note` text COLLATE utf8mb4_unicode_ci DEFAULT NULL, `approved` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=90; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=199; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!) backup/database.sqlnu[-- phpMyAdmin SQL Dump -- version 5.2.0 -- https://www.phpmyadmin.net/ -- -- Host: localhost:8889 -- Generation Time: May 18, 2024 at 10:58 AM -- Server version: 5.7.39 -- PHP Version: 8.2.0 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `6valley_install` -- -- -------------------------------------------------------- -- -- Table structure for table `addon_settings` -- CREATE TABLE `addon_settings` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `key_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `live_values` longtext COLLATE utf8mb4_unicode_ci, `test_values` longtext COLLATE utf8mb4_unicode_ci, `settings_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mode` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'live', `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `addon_settings` -- INSERT INTO `addon_settings` (`id`, `key_name`, `live_values`, `test_values`, `settings_type`, `mode`, `is_active`, `created_at`, `updated_at`, `additional_data`) VALUES ('070c6bbd-d777-11ed-96f4-0c7a158e4469', 'twilio', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', '{\"gateway\":\"twilio\",\"mode\":\"live\",\"status\":\"0\",\"sid\":\"data\",\"messaging_service_sid\":\"data\",\"token\":\"data\",\"from\":\"data\",\"otp_template\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:29', NULL), ('070c766c-d777-11ed-96f4-0c7a158e4469', '2factor', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"2factor\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:36', NULL), ('0d8a9308-d6a5-11ed-962c-0c7a158e4469', 'mercadopago', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"mercadopago\",\"mode\":\"live\",\"status\":0,\"access_token\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-27 11:57:11', '{\"gateway_title\":\"Mercadopago\",\"gateway_image\":null}'), ('0d8a9e49-d6a5-11ed-962c-0c7a158e4469', 'liqpay', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', '{\"gateway\":\"liqpay\",\"mode\":\"live\",\"status\":0,\"private_key\":\"\",\"public_key\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:31', '{\"gateway_title\":\"Liqpay\",\"gateway_image\":null}'), ('101befdf-d44b-11ed-8564-0c7a158e4469', 'paypal', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', '{\"gateway\":\"paypal\",\"mode\":\"live\",\"status\":\"0\",\"client_id\":\"\",\"client_secret\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:41:32', '{\"gateway_title\":\"Paypal\",\"gateway_image\":null}'), ('133d9647-cabb-11ed-8fec-0c7a158e4469', 'hyper_pay', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"hyper_pay\",\"mode\":\"test\",\"status\":\"0\",\"entity_id\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:32:42', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('1821029f-d776-11ed-96f4-0c7a158e4469', 'msg91', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', '{\"gateway\":\"msg91\",\"mode\":\"live\",\"status\":\"0\",\"template_id\":\"data\",\"auth_key\":\"data\"}', 'sms_config', 'live', 0, NULL, '2023-08-12 07:01:48', NULL), ('18210f2b-d776-11ed-96f4-0c7a158e4469', 'nexmo', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"nexmo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"api_secret\":\"\",\"token\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('18fbb21f-d6ad-11ed-962c-0c7a158e4469', 'foloosi', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', '{\"gateway\":\"foloosi\",\"mode\":\"test\",\"status\":\"0\",\"merchant_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:33', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('2767d142-d6a1-11ed-962c-0c7a158e4469', 'paytm', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', '{\"gateway\":\"paytm\",\"mode\":\"live\",\"status\":0,\"merchant_key\":\"\",\"merchant_id\":\"\",\"merchant_website_link\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-22 06:30:55', '{\"gateway_title\":\"Paytm\",\"gateway_image\":null}'), ('3201d2e6-c937-11ed-a424-0c7a158e4469', 'amazon_pay', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', '{\"gateway\":\"amazon_pay\",\"mode\":\"test\",\"status\":\"0\",\"pass_phrase\":\"data\",\"access_code\":\"data\",\"merchant_identifier\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:07', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('4593b25c-d6a1-11ed-962c-0c7a158e4469', 'paytabs', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', '{\"gateway\":\"paytabs\",\"mode\":\"live\",\"status\":0,\"profile_id\":\"\",\"server_key\":\"\",\"base_url\":\"https:\\/\\/secure-egypt.paytabs.com\\/\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:34:51', '{\"gateway_title\":\"Paytabs\",\"gateway_image\":null}'), ('4e9b8dfb-e7d1-11ed-a559-0c7a158e4469', 'bkash', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', '{\"gateway\":\"bkash\",\"mode\":\"live\",\"status\":\"0\",\"app_key\":\"\",\"app_secret\":\"\",\"username\":\"\",\"password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:39:42', '{\"gateway_title\":\"Bkash\",\"gateway_image\":null}'), ('544a24a4-c872-11ed-ac7a-0c7a158e4469', 'fatoorah', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"fatoorah\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:36:24', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('58c1bc8a-d6ac-11ed-962c-0c7a158e4469', 'ccavenue', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', '{\"gateway\":\"ccavenue\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"working_key\":\"data\",\"access_code\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:42:38', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-643783f01d386.png\"}'), ('5e2d2ef9-d6ab-11ed-962c-0c7a158e4469', 'thawani', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', '{\"gateway\":\"thawani\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"private_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:40', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-13-64378f9856f29.png\"}'), ('60cc83cc-d5b9-11ed-b56f-0c7a158e4469', 'sixcash', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"sixcash\",\"mode\":\"test\",\"status\":\"0\",\"public_key\":\"data\",\"secret_key\":\"data\",\"merchant_number\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:16:17', '{\"gateway_title\":null,\"gateway_image\":\"2023-04-12-6436774e77ff9.png\"}'), ('68579846-d8e8-11ed-8249-0c7a158e4469', 'alphanet_sms', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"alphanet_sms\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('6857a2e8-d8e8-11ed-8249-0c7a158e4469', 'sms_to', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"sms_to\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('74c30c00-d6a6-11ed-962c-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', '{\"gateway\":\"hubtel\",\"mode\":\"test\",\"status\":\"0\",\"account_number\":\"data\",\"api_id\":\"data\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:37:43', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('74e46b0a-d6aa-11ed-962c-0c7a158e4469', 'tap', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', '{\"gateway\":\"tap\",\"mode\":\"test\",\"status\":\"0\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:50:09', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('761ca96c-d1eb-11ed-87ca-0c7a158e4469', 'swish', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', '{\"gateway\":\"swish\",\"mode\":\"test\",\"status\":\"0\",\"number\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('7b1c3c5f-d2bd-11ed-b485-0c7a158e4469', 'payfast', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', '{\"gateway\":\"payfast\",\"mode\":\"test\",\"status\":\"0\",\"merchant_id\":\"data\",\"secured_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:13', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('8592417b-d1d1-11ed-a984-0c7a158e4469', 'esewa', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', '{\"gateway\":\"esewa\",\"mode\":\"test\",\"status\":\"0\",\"merchantCode\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:17:38', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('9162a1dc-cdf1-11ed-affe-0c7a158e4469', 'viva_wallet', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', '{\"gateway\":\"viva_wallet\",\"mode\":\"test\",\"status\":\"0\",\"client_id\": \"\",\"client_secret\": \"\", \"source_code\":\"\"}\n', 'payment_config', 'test', 0, NULL, NULL, NULL), ('998ccc62-d6a0-11ed-962c-0c7a158e4469', 'stripe', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', '{\"gateway\":\"stripe\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"published_key\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:18:55', '{\"gateway_title\":\"Stripe\",\"gateway_image\":null}'), ('a3313755-c95d-11ed-b1db-0c7a158e4469', 'iyzi_pay', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', '{\"gateway\":\"iyzi_pay\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\",\"secret_key\":\"data\",\"base_url\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:02', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a76c8993-d299-11ed-b485-0c7a158e4469', 'momo', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', '{\"gateway\":\"momo\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"data\",\"api_user\":\"data\",\"subscription_key\":\"data\"}', 'payment_config', 'live', 0, NULL, '2023-08-30 04:19:28', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('a8608119-cc76-11ed-9bca-0c7a158e4469', 'moncash', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', '{\"gateway\":\"moncash\",\"mode\":\"test\",\"status\":\"0\",\"client_id\":\"data\",\"secret_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:34', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('ad5af1c1-d6a2-11ed-962c-0c7a158e4469', 'razor_pay', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', '{\"gateway\":\"razor_pay\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":null,\"api_secret\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:47:00', '{\"gateway_title\":\"Razor pay\",\"gateway_image\":null}'), ('ad5b02a0-d6a2-11ed-962c-0c7a158e4469', 'senang_pay', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', '{\"gateway\":\"senang_pay\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"secret_key\":null,\"merchant_id\":null}', 'payment_config', 'test', 0, NULL, '2023-08-27 09:58:57', '{\"gateway_title\":\"Senang pay\",\"gateway_image\":null}'), ('b6c333f6-d8e9-11ed-8249-0c7a158e4469', 'akandit_sms', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"akandit_sms\",\"mode\":\"live\",\"status\":0,\"username\":\"\",\"password\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b6c33c87-d8e9-11ed-8249-0c7a158e4469', 'global_sms', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"global_sms\",\"mode\":\"live\",\"status\":0,\"user_name\":\"\",\"password\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('b8992bd4-d6a0-11ed-962c-0c7a158e4469', 'paymob_accept', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', '{\"gateway\":\"paymob_accept\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":null,\"api_key\":\"\",\"iframe_id\":\"\",\"integration_id\":\"\",\"hmac\":\"\"}', 'payment_config', 'test', 0, NULL, NULL, '{\"gateway_title\":\"Paymob accept\",\"gateway_image\":null}'), ('c41c0dcd-d119-11ed-9f67-0c7a158e4469', 'maxicash', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', '{\"gateway\":\"maxicash\",\"mode\":\"test\",\"status\":\"0\",\"merchantId\":\"data\",\"merchantPassword\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:49:15', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('c9249d17-cd60-11ed-b879-0c7a158e4469', 'pvit', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', '{\"gateway\":\"pvit\",\"mode\":\"test\",\"status\":\"0\",\"mc_tel_merchant\": \"\",\"access_token\": \"\", \"mc_merchant_code\": \"\"}', 'payment_config', 'test', 0, NULL, NULL, NULL), ('cb0081ce-d775-11ed-96f4-0c7a158e4469', 'releans', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"releans\",\"mode\":\"live\",\"status\":0,\"api_key\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-04-10 02:14:44', NULL), ('d4f3f5f1-d6a0-11ed-962c-0c7a158e4469', 'flutterwave', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', '{\"gateway\":\"flutterwave\",\"mode\":\"live\",\"status\":0,\"secret_key\":\"\",\"public_key\":\"\",\"hash\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:41:03', '{\"gateway_title\":\"Flutterwave\",\"gateway_image\":null}'), ('d822f1a5-c864-11ed-ac7a-0c7a158e4469', 'paystack', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', '{\"gateway\":\"paystack\",\"mode\":\"live\",\"status\":\"0\",\"callback_url\":\"https:\\/\\/api.paystack.co\",\"public_key\":null,\"secret_key\":null,\"merchant_email\":null}', 'payment_config', 'test', 0, NULL, '2023-08-30 04:20:45', '{\"gateway_title\":\"Paystack\",\"gateway_image\":null}'), ('daec8d59-c893-11ed-ac7a-0c7a158e4469', 'xendit', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', '{\"gateway\":\"xendit\",\"mode\":\"test\",\"status\":\"0\",\"api_key\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:46', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('dc0f5fc9-d6a5-11ed-962c-0c7a158e4469', 'worldpay', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', '{\"gateway\":\"worldpay\",\"mode\":\"test\",\"status\":\"0\",\"OrgUnitId\":\"data\",\"jwt_issuer\":\"data\",\"mac\":\"data\",\"merchantCode\":\"data\",\"xml_password\":\"data\"}', 'payment_config', 'test', 0, NULL, '2023-08-12 06:35:26', '{\"gateway_title\":null,\"gateway_image\":\"\"}'), ('e0450278-d8eb-11ed-8249-0c7a158e4469', 'signal_wire', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"signal_wire\",\"mode\":\"live\",\"status\":0,\"project_id\":\"\",\"token\":\"\",\"space_url\":\"\",\"from\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('e0450b40-d8eb-11ed-8249-0c7a158e4469', 'paradox', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', '{\"gateway\":\"paradox\",\"mode\":\"live\",\"status\":\"0\",\"api_key\":\"\",\"sender_id\":\"\"}', 'sms_config', 'live', 0, NULL, '2023-09-10 01:14:01', NULL), ('ea346efe-cdda-11ed-affe-0c7a158e4469', 'ssl_commerz', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', '{\"gateway\":\"ssl_commerz\",\"mode\":\"live\",\"status\":\"0\",\"store_id\":\"\",\"store_password\":\"\"}', 'payment_config', 'test', 0, NULL, '2023-08-30 03:43:49', '{\"gateway_title\":\"Ssl commerz\",\"gateway_image\":null}'), ('eed88336-d8ec-11ed-8249-0c7a158e4469', 'hubtel', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"hubtel\",\"mode\":\"live\",\"status\":0,\"sender_id\":\"\",\"client_id\":\"\",\"client_secret\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149c546-d8ea-11ed-8249-0c7a158e4469', 'viatech', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"viatech\",\"mode\":\"live\",\"status\":0,\"api_url\":\"\",\"api_key\":\"\",\"sender_id\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL), ('f149cd9c-d8ea-11ed-8249-0c7a158e4469', '019_sms', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', '{\"gateway\":\"019_sms\",\"mode\":\"live\",\"status\":0,\"password\":\"\",\"username\":\"\",\"username_for_token\":\"\",\"sender\":\"\",\"otp_template\":\"\"}', 'sms_config', 'live', 0, NULL, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `add_fund_bonus_categories` -- CREATE TABLE `add_fund_bonus_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `bonus_type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `min_add_money_amount` double(14,2) NOT NULL DEFAULT '0.00', `max_bonus_amount` double(14,2) NOT NULL DEFAULT '0.00', `start_date_time` datetime DEFAULT NULL, `end_date_time` datetime DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admins` -- CREATE TABLE `admins` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `admin_role_id` bigint(20) NOT NULL DEFAULT '2', `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `identify_image` text COLLATE utf8mb4_unicode_ci, `identify_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identify_number` int(11) DEFAULT NULL, `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `admin_roles` -- CREATE TABLE `admin_roles` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `module_access` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_roles` -- INSERT INTO `admin_roles` (`id`, `name`, `module_access`, `status`, `created_at`, `updated_at`) VALUES (1, 'Master Admin', NULL, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallets` -- CREATE TABLE `admin_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `inhouse_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_earned` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `pending_amount` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `admin_wallets` -- INSERT INTO `admin_wallets` (`id`, `admin_id`, `inhouse_earning`, `withdrawn`, `created_at`, `updated_at`, `commission_earned`, `delivery_charge_earned`, `pending_amount`, `total_tax_collected`) VALUES (1, 1, 0, 0, NULL, NULL, 0.00, 0.00, 0.00, 0.00); -- -------------------------------------------------------- -- -- Table structure for table `admin_wallet_histories` -- CREATE TABLE `admin_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attributes` -- CREATE TABLE `attributes` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `banners` -- CREATE TABLE `banners` ( `id` bigint(20) UNSIGNED NOT NULL, `photo` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `published` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `resource_id` bigint(20) DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button_text` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `background_color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `billing_addresses` -- CREATE TABLE `billing_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED DEFAULT NULL, `contact_person_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `brands` -- CREATE TABLE `brands` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `business_settings` -- CREATE TABLE `business_settings` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `value` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `business_settings` -- INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1, 'system_default_currency', '1', '2020-10-11 07:43:44', '2021-06-04 18:25:29'), (2, 'language', '[{\"id\":\"1\",\"name\":\"english\",\"code\":\"en\",\"status\":1,\"default\":true}]', '2020-10-11 07:53:02', '2023-10-13 11:34:53'), (3, 'mail_config', '{\"status\":0,\"name\":\"demo\",\"host\":\"mail.demo.com\",\"driver\":\"SMTP\",\"port\":\"587\",\"username\":\"info@demo.com\",\"email_id\":\"info@demo.com\",\"encryption\":\"TLS\",\"password\":\"demo\"}', '2020-10-12 10:29:18', '2021-07-06 12:32:01'), (4, 'cash_on_delivery', '{\"status\":\"1\"}', NULL, '2021-05-25 21:21:15'), (6, 'ssl_commerz_payment', '{\"status\":\"0\",\"environment\":\"sandbox\",\"store_id\":\"\",\"store_password\":\"\"}', '2020-11-09 08:36:51', '2023-01-10 05:51:56'), (10, 'company_phone', '000000000', NULL, '2020-12-08 14:15:01'), (11, 'company_name', '', NULL, '2021-02-27 18:11:53'), (12, 'company_web_logo', '2021-05-25-60ad1b313a9d4.png', NULL, '2021-05-25 21:43:45'), (13, 'company_mobile_logo', '2021-02-20-6030c88c91911.png', NULL, '2021-02-20 14:30:04'), (14, 'terms_condition', '

terms and conditions

', NULL, '2021-06-11 01:51:36'), (15, 'about_us', '

this is about us page. hello and hi from about page description..

', NULL, '2021-06-11 01:42:53'), (16, 'sms_nexmo', '{\"status\":\"0\",\"nexmo_key\":\"custo5cc042f7abf4c\",\"nexmo_secret\":\"custo5cc042f7abf4c@ssl\"}', NULL, NULL), (17, 'company_email', 'Copy@6amtech.com', NULL, '2021-03-15 12:29:51'), (18, 'colors', '{\"primary\":\"#1b7fed\",\"secondary\":\"black\",\"primary_light\":\"#CFDFFB\"}', '2020-10-11 13:53:02', '2024-05-18 10:57:02'), (19, 'company_footer_logo', '2021-02-20-6030c8a02a5f9.png', NULL, '2021-02-20 14:30:24'), (20, 'company_copyright_text', 'CopyRight 6amTech@2021', NULL, '2021-03-15 12:30:47'), (21, 'download_app_apple_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/www.target.com\\/s\\/apple+store++now?ref=tgt_adv_XS000000&AFID=msn&fndsrc=tgtao&DFA=71700000012505188&CPNG=Electronics_Portable+Computers&adgroup=Portable+Computers&LID=700000001176246&LNM=apple+store+near+me+now&MT=b&network=s&device=c&location=12&targetid=kwd-81913773633608:loc-12&ds_rl=1246978&ds_rl=1248099&gclsrc=ds\"}', NULL, '2020-12-08 12:54:53'), (22, 'download_app_google_stroe', '{\"status\":\"1\",\"link\":\"https:\\/\\/play.google.com\\/store?hl=en_US&gl=US\"}', NULL, '2020-12-08 12:54:48'), (23, 'company_fav_icon', '2021-03-02-603df1634614f.png', '2020-10-11 13:53:02', '2021-03-02 14:03:48'), (24, 'fcm_topic', '', NULL, NULL), (25, 'fcm_project_id', '', NULL, NULL), (26, 'push_notification_key', 'Put your firebase server key here.', NULL, NULL), (27, 'order_pending_message', '{\"status\":\"1\",\"message\":\"order pen message\"}', NULL, NULL), (28, 'order_confirmation_msg', '{\"status\":\"1\",\"message\":\"Order con Message\"}', NULL, NULL), (29, 'order_processing_message', '{\"status\":\"1\",\"message\":\"Order pro Message\"}', NULL, NULL), (30, 'out_for_delivery_message', '{\"status\":\"1\",\"message\":\"Order ouut Message\"}', NULL, NULL), (31, 'order_delivered_message', '{\"status\":\"1\",\"message\":\"Order del Message\"}', NULL, NULL), (33, 'sales_commission', '0', NULL, '2021-06-11 18:13:13'), (34, 'seller_registration', '1', NULL, '2021-06-04 21:02:48'), (35, 'pnc_language', '[\"en\"]', NULL, NULL), (36, 'order_returned_message', '{\"status\":\"1\",\"message\":\"Order hh Message\"}', NULL, NULL), (37, 'order_failed_message', '{\"status\":null,\"message\":\"Order fa Message\"}', NULL, NULL), (40, 'delivery_boy_assign_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (41, 'delivery_boy_start_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (42, 'delivery_boy_delivered_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (43, 'terms_and_conditions', '', NULL, NULL), (44, 'minimum_order_value', '1', NULL, NULL), (45, 'privacy_policy', '

my privacy policy

\r\n\r\n

 

', NULL, '2021-07-06 11:09:07'), (48, 'currency_model', 'single_currency', NULL, NULL), (49, 'social_login', '[{\"login_medium\":\"google\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"},{\"login_medium\":\"facebook\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":\"\"}]', NULL, NULL), (50, 'digital_payment', '{\"status\":\"1\"}', NULL, NULL), (51, 'phone_verification', '0', NULL, NULL), (52, 'email_verification', '0', NULL, NULL), (53, 'order_verification', '0', NULL, NULL), (54, 'country_code', 'BD', NULL, NULL), (55, 'pagination_limit', '10', NULL, NULL), (56, 'shipping_method', 'inhouse_shipping', NULL, NULL), (59, 'forgot_password_verification', 'email', NULL, NULL), (61, 'stock_limit', '10', NULL, NULL), (64, 'announcement', '{\"status\":null,\"color\":null,\"text_color\":null,\"announcement\":null}', NULL, NULL), (65, 'fawry_pay', '{\"status\":0,\"merchant_code\":\"\",\"security_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (66, 'recaptcha', '{\"status\":0,\"site_key\":\"\",\"secret_key\":\"\"}', NULL, '2022-01-18 09:46:30'), (67, 'seller_pos', '0', NULL, NULL), (70, 'refund_day_limit', '0', NULL, NULL), (71, 'business_mode', 'multi', NULL, NULL), (72, 'mail_config_sendgrid', '{\"status\":0,\"name\":\"\",\"host\":\"\",\"driver\":\"\",\"port\":\"\",\"username\":\"\",\"email_id\":\"\",\"encryption\":\"\",\"password\":\"\"}', NULL, NULL), (73, 'decimal_point_settings', '2', NULL, NULL), (74, 'shop_address', '', NULL, NULL), (75, 'billing_input_by_customer', '1', NULL, NULL), (76, 'wallet_status', '0', NULL, NULL), (77, 'loyalty_point_status', '0', NULL, NULL), (78, 'wallet_add_refund', '0', NULL, NULL), (79, 'loyalty_point_exchange_rate', '0', NULL, NULL), (80, 'loyalty_point_item_purchase_point', '0', NULL, NULL), (81, 'loyalty_point_minimum_point', '0', NULL, NULL), (82, 'minimum_order_limit', '1', NULL, NULL), (83, 'product_brand', '1', NULL, NULL), (84, 'digital_product', '1', NULL, NULL), (85, 'delivery_boy_expected_delivery_date_message', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (86, 'order_canceled', '{\"status\":0,\"message\":\"\"}', NULL, NULL), (87, 'refund-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (88, 'return-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (89, 'cancellation-policy', '{\"status\":1,\"content\":\"\"}', NULL, '2023-03-04 06:25:36'), (90, 'offline_payment', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (91, 'temporary_close', '{\"status\":0}', NULL, '2023-03-04 06:25:36'), (92, 'vacation_add', '{\"status\":0,\"vacation_start_date\":null,\"vacation_end_date\":null,\"vacation_note\":null}', NULL, '2023-03-04 06:25:36'), (93, 'cookie_setting', '{\"status\":0,\"cookie_text\":null}', NULL, '2023-03-04 06:25:36'), (94, 'maximum_otp_hit', '0', NULL, '2023-06-13 13:04:49'), (95, 'otp_resend_time', '0', NULL, '2023-06-13 13:04:49'), (96, 'temporary_block_time', '0', NULL, '2023-06-13 13:04:49'), (97, 'maximum_login_hit', '0', NULL, '2023-06-13 13:04:49'), (98, 'temporary_login_block_time', '0', NULL, '2023-06-13 13:04:49'), (104, 'apple_login', '[{\"login_medium\":\"apple\",\"client_id\":\"\",\"client_secret\":\"\",\"status\":0,\"team_id\":\"\",\"key_id\":\"\",\"service_file\":\"\",\"redirect_url\":\"\"}]', NULL, '2023-10-13 05:34:53'), (105, 'ref_earning_status', '0', NULL, '2023-10-13 05:34:53'), (106, 'ref_earning_exchange_rate', '0', NULL, '2023-10-13 05:34:53'), (107, 'guest_checkout', '0', NULL, '2023-10-13 11:34:53'), (108, 'minimum_order_amount', '0', NULL, '2023-10-13 11:34:53'), (109, 'minimum_order_amount_by_seller', '0', NULL, '2023-10-13 11:34:53'), (110, 'minimum_order_amount_status', '0', NULL, '2023-10-13 11:34:53'), (111, 'admin_login_url', 'admin', NULL, '2023-10-13 11:34:53'), (112, 'employee_login_url', 'employee', NULL, '2023-10-13 11:34:53'), (113, 'free_delivery_status', '0', NULL, '2023-10-13 11:34:53'), (114, 'free_delivery_responsibility', 'admin', NULL, '2023-10-13 11:34:53'), (115, 'free_delivery_over_amount', '0', NULL, '2023-10-13 11:34:53'), (116, 'free_delivery_over_amount_seller', '0', NULL, '2023-10-13 11:34:53'), (117, 'add_funds_to_wallet', '0', NULL, '2023-10-13 11:34:53'), (118, 'minimum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (119, 'maximum_add_fund_amount', '0', NULL, '2023-10-13 11:34:53'), (120, 'user_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (121, 'seller_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (122, 'delivery_man_app_version_control', '{\"for_android\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"},\"for_ios\":{\"status\":1,\"version\":\"14.1\",\"link\":\"\"}}', NULL, '2023-10-13 11:34:53'), (123, 'whatsapp', '{\"status\":1,\"phone\":\"00000000000\"}', NULL, '2023-10-13 11:34:53'), (124, 'currency_symbol_position', 'left', NULL, '2023-10-13 11:34:53'), (148, 'company_reliability', '[{\"item\":\"delivery_info\",\"title\":\"Fast Delivery all across the country\",\"image\":\"\",\"status\":1},{\"item\":\"safe_payment\",\"title\":\"Safe Payment\",\"image\":\"\",\"status\":1},{\"item\":\"return_policy\",\"title\":\"7 Days Return Policy\",\"image\":\"\",\"status\":1},{\"item\":\"authentic_product\",\"title\":\"100% Authentic Products\",\"image\":\"\",\"status\":1}]', NULL, NULL), (149, 'react_setup', '{\"status\":0,\"react_license_code\":\"\",\"react_domain\":\"\",\"react_platform\":\"\"}', NULL, '2024-01-09 04:05:15'), (150, 'app_activation', '{\"software_id\":\"\",\"is_active\":0}', NULL, '2024-01-09 04:05:15'), (151, 'shop_banner', '', NULL, '2023-10-13 11:34:53'), (152, 'map_api_status', '1', NULL, '2024-03-27 03:12:32'), (153, 'vendor_registration_header', '{\"title\":\"Vendor Registration\",\"sub_title\":\"Create your own store.Already have store?\",\"image\":\"\"}', NULL, NULL), (154, 'vendor_registration_sell_with_us', '{\"title\":\"Why Sell With Us\",\"sub_title\":\"Boost your sales! Join us for a seamless, profitable experience with vast buyer reach and top-notch support. Sell smarter today!\",\"image\":\"\"}', NULL, NULL), (155, 'download_vendor_app', '{\"title\":\"Download Free Vendor App\",\"sub_title\":\"Download our free seller app and start reaching millions of buyers on the go! Easy setup, manage listings, and boost sales anywhere.\",\"image\":null,\"download_google_app\":null,\"download_google_app_status\":0,\"download_apple_app\":null,\"download_apple_app_status\":0}', NULL, NULL), (156, 'business_process_main_section', '{\"title\":\"3 Easy Steps To Start Selling\",\"sub_title\":\"Start selling quickly! Register, upload your products with detailed info and images, and reach millions of buyers instantly.\",\"image\":\"\"}', NULL, NULL), (157, 'business_process_step', '[{\"title\":\"Get Registered\",\"description\":\"Sign up easily and create your seller account in just a few minutes. It\'s fast and simple to get started.\",\"image\":\"\"},{\"title\":\"Upload Products\",\"description\":\"List your products with detailed descriptions and high-quality images to attract more buyers effortlessly.\",\"image\":\"\"},{\"title\":\"Start Selling\",\"description\":\"Go live and start reaching millions of potential buyers immediately. Watch your sales grow with our vast audience.\",\"image\":\"\"}]', NULL, NULL), (158, 'brand_list_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'), (159, 'category_list_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'), (160, 'vendor_list_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'), (161, 'flash_deal_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'), (162, 'featured_product_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'), (163, 'feature_deal_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'), (164, 'new_arrival_product_list_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'), (165, 'top_vendor_list_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'), (166, 'category_wise_product_list_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'), (167, 'top_rated_product_list_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'), (168, 'best_selling_product_list_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'), (169, 'searched_product_list_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'), (170, 'vendor_product_list_priority', '', '2024-05-18 10:57:03', '2024-05-18 10:57:03'); -- -------------------------------------------------------- -- -- Table structure for table `carts` -- CREATE TABLE `carts` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choices` text COLLATE utf8mb4_unicode_ci, `variations` text COLLATE utf8mb4_unicode_ci, `variant` text COLLATE utf8mb4_unicode_ci, `quantity` int(11) NOT NULL DEFAULT '1', `price` double NOT NULL DEFAULT '1', `tax` double NOT NULL DEFAULT '1', `discount` double NOT NULL DEFAULT '1', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `is_checked` tinyint(1) NOT NULL DEFAULT '0', `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `thumbnail` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_info` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_cost` double(8,2) DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cart_shippings` -- CREATE TABLE `cart_shippings` ( `id` bigint(20) UNSIGNED NOT NULL, `cart_group_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` int(11) NOT NULL, `position` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `home_status` tinyint(1) NOT NULL DEFAULT '0', `priority` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `category_shipping_costs` -- CREATE TABLE `category_shipping_costs` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `category_id` int(10) UNSIGNED DEFAULT NULL, `cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chattings` -- CREATE TABLE `chattings` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `sent_by_customer` tinyint(1) NOT NULL DEFAULT '0', `sent_by_seller` tinyint(1) NOT NULL DEFAULT '0', `sent_by_admin` tinyint(1) DEFAULT NULL, `sent_by_delivery_man` tinyint(1) DEFAULT NULL, `seen_by_customer` tinyint(1) NOT NULL DEFAULT '1', `seen_by_seller` tinyint(1) NOT NULL DEFAULT '1', `seen_by_admin` tinyint(1) DEFAULT NULL, `seen_by_delivery_man` tinyint(1) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `notification_receiver` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'admin, seller, customer, deliveryman', `seen_notification` tinyint(1) DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shop_id` bigint(20) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `colors` -- CREATE TABLE `colors` ( `id` int(11) NOT NULL, `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL, `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `colors` -- INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1, 'IndianRed', '#CD5C5C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (2, 'LightCoral', '#F08080', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (3, 'Salmon', '#FA8072', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (4, 'DarkSalmon', '#E9967A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (5, 'LightSalmon', '#FFA07A', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (6, 'Crimson', '#DC143C', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (7, 'Red', '#FF0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (8, 'FireBrick', '#B22222', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (9, 'DarkRed', '#8B0000', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (10, 'Pink', '#FFC0CB', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (11, 'LightPink', '#FFB6C1', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (12, 'HotPink', '#FF69B4', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (13, 'DeepPink', '#FF1493', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (14, 'MediumVioletRed', '#C71585', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (15, 'PaleVioletRed', '#DB7093', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (17, 'Coral', '#FF7F50', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (18, 'Tomato', '#FF6347', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (19, 'OrangeRed', '#FF4500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (20, 'DarkOrange', '#FF8C00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (21, 'Orange', '#FFA500', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (22, 'Gold', '#FFD700', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (23, 'Yellow', '#FFFF00', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (24, 'LightYellow', '#FFFFE0', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (25, 'LemonChiffon', '#FFFACD', '2018-11-05 02:12:26', '2018-11-05 02:12:26'), (26, 'LightGoldenrodYellow', '#FAFAD2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (27, 'PapayaWhip', '#FFEFD5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (28, 'Moccasin', '#FFE4B5', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (29, 'PeachPuff', '#FFDAB9', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (30, 'PaleGoldenrod', '#EEE8AA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (31, 'Khaki', '#F0E68C', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (32, 'DarkKhaki', '#BDB76B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (33, 'Lavender', '#E6E6FA', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (34, 'Thistle', '#D8BFD8', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (35, 'Plum', '#DDA0DD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (36, 'Violet', '#EE82EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (37, 'Orchid', '#DA70D6', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (39, 'Magenta', '#FF00FF', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (40, 'MediumOrchid', '#BA55D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (41, 'MediumPurple', '#9370DB', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (42, 'Amethyst', '#9966CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (43, 'BlueViolet', '#8A2BE2', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (44, 'DarkViolet', '#9400D3', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (45, 'DarkOrchid', '#9932CC', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (46, 'DarkMagenta', '#8B008B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (47, 'Purple', '#800080', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (48, 'Indigo', '#4B0082', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (49, 'SlateBlue', '#6A5ACD', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (50, 'DarkSlateBlue', '#483D8B', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (51, 'MediumSlateBlue', '#7B68EE', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (52, 'GreenYellow', '#ADFF2F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (53, 'Chartreuse', '#7FFF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (54, 'LawnGreen', '#7CFC00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (55, 'Lime', '#00FF00', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (56, 'LimeGreen', '#32CD32', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (57, 'PaleGreen', '#98FB98', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (58, 'LightGreen', '#90EE90', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (59, 'MediumSpringGreen', '#00FA9A', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (60, 'SpringGreen', '#00FF7F', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (61, 'MediumSeaGreen', '#3CB371', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (62, 'SeaGreen', '#2E8B57', '2018-11-05 02:12:27', '2018-11-05 02:12:27'), (63, 'ForestGreen', '#228B22', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (64, 'Green', '#008000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (65, 'DarkGreen', '#006400', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (66, 'YellowGreen', '#9ACD32', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (67, 'OliveDrab', '#6B8E23', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (68, 'Olive', '#808000', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (69, 'DarkOliveGreen', '#556B2F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (70, 'MediumAquamarine', '#66CDAA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (71, 'DarkSeaGreen', '#8FBC8F', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (72, 'LightSeaGreen', '#20B2AA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (73, 'DarkCyan', '#008B8B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (74, 'Teal', '#008080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (75, 'Aqua', '#00FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (77, 'LightCyan', '#E0FFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (78, 'PaleTurquoise', '#AFEEEE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (79, 'Aquamarine', '#7FFFD4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (80, 'Turquoise', '#40E0D0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (81, 'MediumTurquoise', '#48D1CC', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (82, 'DarkTurquoise', '#00CED1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (83, 'CadetBlue', '#5F9EA0', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (84, 'SteelBlue', '#4682B4', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (85, 'LightSteelBlue', '#B0C4DE', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (86, 'PowderBlue', '#B0E0E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (87, 'LightBlue', '#ADD8E6', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (88, 'SkyBlue', '#87CEEB', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (89, 'LightSkyBlue', '#87CEFA', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (90, 'DeepSkyBlue', '#00BFFF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (91, 'DodgerBlue', '#1E90FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (92, 'CornflowerBlue', '#6495ED', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (94, 'RoyalBlue', '#4169E1', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (95, 'Blue', '#0000FF', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (96, 'MediumBlue', '#0000CD', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (97, 'DarkBlue', '#00008B', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (98, 'Navy', '#000080', '2018-11-05 02:12:28', '2018-11-05 02:12:28'), (99, 'MidnightBlue', '#191970', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (100, 'Cornsilk', '#FFF8DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (101, 'BlanchedAlmond', '#FFEBCD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (102, 'Bisque', '#FFE4C4', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (103, 'NavajoWhite', '#FFDEAD', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (104, 'Wheat', '#F5DEB3', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (105, 'BurlyWood', '#DEB887', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (106, 'Tan', '#D2B48C', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (107, 'RosyBrown', '#BC8F8F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (108, 'SandyBrown', '#F4A460', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (109, 'Goldenrod', '#DAA520', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (110, 'DarkGoldenrod', '#B8860B', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (111, 'Peru', '#CD853F', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (112, 'Chocolate', '#D2691E', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (113, 'SaddleBrown', '#8B4513', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (114, 'Sienna', '#A0522D', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (115, 'Brown', '#A52A2A', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (116, 'Maroon', '#800000', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (117, 'White', '#FFFFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (118, 'Snow', '#FFFAFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (119, 'Honeydew', '#F0FFF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (120, 'MintCream', '#F5FFFA', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (121, 'Azure', '#F0FFFF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (122, 'AliceBlue', '#F0F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (123, 'GhostWhite', '#F8F8FF', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (124, 'WhiteSmoke', '#F5F5F5', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (125, 'Seashell', '#FFF5EE', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (126, 'Beige', '#F5F5DC', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (127, 'OldLace', '#FDF5E6', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (128, 'FloralWhite', '#FFFAF0', '2018-11-05 02:12:29', '2018-11-05 02:12:29'), (129, 'Ivory', '#FFFFF0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (130, 'AntiqueWhite', '#FAEBD7', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (131, 'Linen', '#FAF0E6', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (132, 'LavenderBlush', '#FFF0F5', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (133, 'MistyRose', '#FFE4E1', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (134, 'Gainsboro', '#DCDCDC', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (135, 'LightGrey', '#D3D3D3', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (136, 'Silver', '#C0C0C0', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (137, 'DarkGray', '#A9A9A9', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (138, 'Gray', '#808080', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (139, 'DimGray', '#696969', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (140, 'LightSlateGray', '#778899', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (141, 'SlateGray', '#708090', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (142, 'DarkSlateGray', '#2F4F4F', '2018-11-05 02:12:30', '2018-11-05 02:12:30'), (143, 'Black', '#000000', '2018-11-05 02:12:30', '2018-11-05 02:12:30'); -- -------------------------------------------------------- -- -- Table structure for table `contacts` -- CREATE TABLE `contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `mobile_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `seen` tinyint(1) NOT NULL DEFAULT '0', `feedback` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `reply` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `coupon_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `seller_id` bigint(20) DEFAULT NULL COMMENT 'NULL=in-house, 0=all seller', `customer_id` bigint(20) DEFAULT NULL COMMENT '0 = all customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `expire_date` date DEFAULT NULL, `min_purchase` decimal(8,2) NOT NULL DEFAULT '0.00', `max_discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `limit` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `currencies` -- CREATE TABLE `currencies` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `exchange_rate` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `currencies` -- INSERT INTO `currencies` (`id`, `name`, `symbol`, `code`, `exchange_rate`, `status`, `created_at`, `updated_at`) VALUES (1, 'USD', '$', 'USD', '1', 1, NULL, '2021-06-27 13:39:37'), (2, 'BDT', '৳', 'BDT', '84', 1, NULL, '2021-07-06 11:52:58'), (3, 'Indian Rupi', '₹', 'INR', '60', 1, '2020-10-15 17:23:04', '2021-06-04 18:26:38'), (4, 'Euro', '€', 'EUR', '100', 1, '2021-05-25 21:00:23', '2021-06-04 18:25:29'), (5, 'YEN', '¥', 'JPY', '110', 1, '2021-06-10 22:08:31', '2021-06-26 14:21:10'), (6, 'Ringgit', 'RM', 'MYR', '4.16', 1, '2021-07-03 11:08:33', '2021-07-03 11:10:37'), (7, 'Rand', 'R', 'ZAR', '14.26', 1, '2021-07-03 11:12:38', '2021-07-03 11:12:42'); -- -------------------------------------------------------- -- -- Table structure for table `customer_wallets` -- CREATE TABLE `customer_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `balance` decimal(8,2) NOT NULL DEFAULT '0.00', `royality_points` decimal(8,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_wallet_histories` -- CREATE TABLE `customer_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `transaction_amount` decimal(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_method` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deal_of_the_days` -- CREATE TABLE `deal_of_the_days` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(12) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_notifications` -- CREATE TABLE `deliveryman_notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deliveryman_wallets` -- CREATE TABLE `deliveryman_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `current_balance` decimal(50,2) NOT NULL DEFAULT '0.00', `cash_in_hand` decimal(50,2) NOT NULL DEFAULT '0.00', `pending_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `total_withdraw` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_country_codes` -- CREATE TABLE `delivery_country_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `country_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_histories` -- CREATE TABLE `delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `deliveryman_id` bigint(20) DEFAULT NULL, `time` datetime DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_man_transactions` -- CREATE TABLE `delivery_man_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `delivery_man_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `debit` decimal(50,2) NOT NULL DEFAULT '0.00', `credit` decimal(50,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_men` -- CREATE TABLE `delivery_men` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `f_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` text COLLATE utf8mb4_unicode_ci, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_number` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `is_online` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `auth_token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '6yIRXJRRfp78qJsAoKZZ6TTqhzuNJ3TcdvPBmk6n', `fcm_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `delivery_zip_codes` -- CREATE TABLE `delivery_zip_codes` ( `id` bigint(20) UNSIGNED NOT NULL, `zipcode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `digital_product_otp_verifications` -- CREATE TABLE `digital_product_otp_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `identity` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `email_templates` -- CREATE TABLE `email_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `template_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `template_design_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `body` text COLLATE utf8mb4_unicode_ci, `banner_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `button_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `footer_text` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `copyright_text` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pages` json DEFAULT NULL, `social_media` json DEFAULT NULL, `hide_field` json DEFAULT NULL, `button_content_status` tinyint(4) NOT NULL DEFAULT '1', `product_information_status` tinyint(4) NOT NULL DEFAULT '1', `order_information_status` tinyint(4) NOT NULL DEFAULT '1', `status` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `emergency_contacts` -- CREATE TABLE `emergency_contacts` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `country_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `feature_deals` -- CREATE TABLE `feature_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deals` -- CREATE TABLE `flash_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `background_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `banner` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int(11) DEFAULT NULL, `deal_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `flash_deal_products` -- CREATE TABLE `flash_deal_products` ( `id` bigint(20) UNSIGNED NOT NULL, `flash_deal_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `discount` decimal(8,2) NOT NULL DEFAULT '0.00', `discount_type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `guest_users` -- CREATE TABLE `guest_users` ( `id` bigint(20) UNSIGNED NOT NULL, `ip_address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fcm_token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `guest_users` -- INSERT INTO `guest_users` (`id`, `ip_address`, `fcm_token`, `created_at`, `updated_at`) VALUES (1, '::1', NULL, '2024-02-19 08:35:50', NULL), (2, '::1', NULL, '2024-03-27 03:10:49', NULL), (3, '::1', NULL, '2024-03-27 03:12:35', NULL), (4, '::1', NULL, '2024-05-18 10:57:05', NULL); -- -------------------------------------------------------- -- -- Table structure for table `help_topics` -- CREATE TABLE `help_topics` ( `id` bigint(20) UNSIGNED NOT NULL, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, `ranking` int(11) NOT NULL DEFAULT '1', `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `help_topics` -- INSERT INTO `help_topics` (`id`, `type`, `question`, `answer`, `ranking`, `status`, `created_at`, `updated_at`) VALUES (1, 'vendor_registration', 'How do I register as a seller?', 'To register, click on the \"Sign Up\" button, fill in your details, and verify your account via email.', 1, 1, NULL, NULL), (2, 'vendor_registration', 'What are the fees for selling?', 'Our platform charges a small commission on each sale. There are no upfront listing fees.', 2, 1, NULL, NULL), (3, 'vendor_registration', 'How do I upload products?', 'Log in to your seller account, go to the \"Upload Products\" section, and fill in the product details and images.', 3, 1, NULL, NULL), (4, 'vendor_registration', 'How do I handle customer inquiries?', 'You can manage customer inquiries directly through our platform\'s messaging system, ensuring quick and efficient communication.', 4, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `jobs` -- CREATE TABLE `jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint(3) UNSIGNED NOT NULL, `reserved_at` int(10) UNSIGNED DEFAULT NULL, `available_at` int(10) UNSIGNED NOT NULL, `created_at` int(10) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `loyalty_point_transactions` -- CREATE TABLE `loyalty_point_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2019_08_19_000000_create_failed_jobs_table', 1), (4, '2020_09_08_105159_create_admins_table', 1), (5, '2020_09_08_111837_create_admin_roles_table', 1), (6, '2020_09_16_142451_create_categories_table', 2), (7, '2020_09_16_181753_create_categories_table', 3), (8, '2020_09_17_134238_create_brands_table', 4), (9, '2020_09_17_203054_create_attributes_table', 5), (10, '2020_09_19_112509_create_coupons_table', 6), (11, '2020_09_19_161802_create_curriencies_table', 7), (12, '2020_09_20_114509_create_sellers_table', 8), (13, '2020_09_23_113454_create_shops_table', 9), (14, '2020_09_23_115615_create_shops_table', 10), (15, '2020_09_23_153822_create_shops_table', 11), (16, '2020_09_21_122817_create_products_table', 12), (17, '2020_09_22_140800_create_colors_table', 12), (18, '2020_09_28_175020_create_products_table', 13), (19, '2020_09_28_180311_create_products_table', 14), (20, '2020_10_04_105041_create_search_functions_table', 15), (21, '2020_10_05_150730_create_customers_table', 15), (22, '2020_10_08_133548_create_wishlists_table', 16), (23, '2016_06_01_000001_create_oauth_auth_codes_table', 17), (24, '2016_06_01_000002_create_oauth_access_tokens_table', 17), (25, '2016_06_01_000003_create_oauth_refresh_tokens_table', 17), (26, '2016_06_01_000004_create_oauth_clients_table', 17), (27, '2016_06_01_000005_create_oauth_personal_access_clients_table', 17), (28, '2020_10_06_133710_create_product_stocks_table', 17), (29, '2020_10_06_134636_create_flash_deals_table', 17), (30, '2020_10_06_134719_create_flash_deal_products_table', 17), (31, '2020_10_08_115439_create_orders_table', 17), (32, '2020_10_08_115453_create_order_details_table', 17), (33, '2020_10_08_121135_create_shipping_addresses_table', 17), (34, '2020_10_10_171722_create_business_settings_table', 17), (35, '2020_09_19_161802_create_currencies_table', 18), (36, '2020_10_12_152350_create_reviews_table', 18), (37, '2020_10_12_161834_create_reviews_table', 19), (38, '2020_10_12_180510_create_support_tickets_table', 20), (39, '2020_10_14_140130_create_transactions_table', 21), (40, '2020_10_14_143553_create_customer_wallets_table', 21), (41, '2020_10_14_143607_create_customer_wallet_histories_table', 21), (42, '2020_10_22_142212_create_support_ticket_convs_table', 21), (43, '2020_10_24_234813_create_banners_table', 22), (44, '2020_10_27_111557_create_shipping_methods_table', 23), (45, '2020_10_27_114154_add_url_to_banners_table', 24), (46, '2020_10_28_170308_add_shipping_id_to_order_details', 25), (47, '2020_11_02_140528_add_discount_to_order_table', 26), (48, '2020_11_03_162723_add_column_to_order_details', 27), (49, '2020_11_08_202351_add_url_to_banners_table', 28), (50, '2020_11_10_112713_create_help_topic', 29), (51, '2020_11_10_141513_create_contacts_table', 29), (52, '2020_11_15_180036_add_address_column_user_table', 30), (53, '2020_11_18_170209_add_status_column_to_product_table', 31), (54, '2020_11_19_115453_add_featured_status_product', 32), (55, '2020_11_21_133302_create_deal_of_the_days_table', 33), (56, '2020_11_20_172332_add_product_id_to_products', 34), (57, '2020_11_27_234439_add__state_to_shipping_addresses', 34), (58, '2020_11_28_091929_create_chattings_table', 35), (59, '2020_12_02_011815_add_bank_info_to_sellers', 36), (60, '2020_12_08_193234_create_social_medias_table', 37), (61, '2020_12_13_122649_shop_id_to_chattings', 37), (62, '2020_12_14_145116_create_seller_wallet_histories_table', 38), (63, '2020_12_14_145127_create_seller_wallets_table', 38), (64, '2020_12_15_174804_create_admin_wallets_table', 39), (65, '2020_12_15_174821_create_admin_wallet_histories_table', 39), (66, '2020_12_15_214312_create_feature_deals_table', 40), (67, '2020_12_17_205712_create_withdraw_requests_table', 41), (68, '2021_02_22_161510_create_notifications_table', 42), (69, '2021_02_24_154706_add_deal_type_to_flash_deals', 43), (70, '2021_03_03_204349_add_cm_firebase_token_to_users', 44), (71, '2021_04_17_134848_add_column_to_order_details_stock', 45), (72, '2021_05_12_155401_add_auth_token_seller', 46), (73, '2021_06_03_104531_ex_rate_update', 47), (74, '2021_06_03_222413_amount_withdraw_req', 48), (75, '2021_06_04_154501_seller_wallet_withdraw_bal', 49), (76, '2021_06_04_195853_product_dis_tax', 50), (77, '2021_05_27_103505_create_product_translations_table', 51), (78, '2021_06_17_054551_create_soft_credentials_table', 51), (79, '2021_06_29_212549_add_active_col_user_table', 52), (80, '2021_06_30_212619_add_col_to_contact', 53), (81, '2021_07_01_160828_add_col_daily_needs_products', 54), (82, '2021_07_04_182331_add_col_seller_sales_commission', 55), (83, '2021_08_07_190655_add_seo_columns_to_products', 56), (84, '2021_08_07_205913_add_col_to_category_table', 56), (85, '2021_08_07_210808_add_col_to_shops_table', 56), (86, '2021_08_14_205216_change_product_price_col_type', 56), (87, '2021_08_16_201505_change_order_price_col', 56), (88, '2021_08_16_201552_change_order_details_price_col', 56), (89, '2019_09_29_154000_create_payment_cards_table', 57), (90, '2021_08_17_213934_change_col_type_seller_earning_history', 57), (91, '2021_08_17_214109_change_col_type_admin_earning_history', 57), (92, '2021_08_17_214232_change_col_type_admin_wallet', 57), (93, '2021_08_17_214405_change_col_type_seller_wallet', 57), (94, '2021_08_22_184834_add_publish_to_products_table', 57), (95, '2021_09_08_211832_add_social_column_to_users_table', 57), (96, '2021_09_13_165535_add_col_to_user', 57), (97, '2021_09_19_061647_add_limit_to_coupons_table', 57), (98, '2021_09_20_020716_add_coupon_code_to_orders_table', 57), (99, '2021_09_23_003059_add_gst_to_sellers_table', 57), (100, '2021_09_28_025411_create_order_transactions_table', 57), (101, '2021_10_02_185124_create_carts_table', 57), (102, '2021_10_02_190207_create_cart_shippings_table', 57), (103, '2021_10_03_194334_add_col_order_table', 57), (104, '2021_10_03_200536_add_shipping_cost', 57), (105, '2021_10_04_153201_add_col_to_order_table', 57), (106, '2021_10_07_172701_add_col_cart_shop_info', 57), (107, '2021_10_07_184442_create_phone_or_email_verifications_table', 57), (108, '2021_10_07_185416_add_user_table_email_verified', 57), (109, '2021_10_11_192739_add_transaction_amount_table', 57), (110, '2021_10_11_200850_add_order_verification_code', 57), (111, '2021_10_12_083241_add_col_to_order_transaction', 57), (112, '2021_10_12_084440_add_seller_id_to_order', 57), (113, '2021_10_12_102853_change_col_type', 57), (114, '2021_10_12_110434_add_col_to_admin_wallet', 57), (115, '2021_10_12_110829_add_col_to_seller_wallet', 57), (116, '2021_10_13_091801_add_col_to_admin_wallets', 57), (117, '2021_10_13_092000_add_col_to_seller_wallets_tax', 57), (118, '2021_10_13_165947_rename_and_remove_col_seller_wallet', 57), (119, '2021_10_13_170258_rename_and_remove_col_admin_wallet', 57), (120, '2021_10_14_061603_column_update_order_transaction', 57), (121, '2021_10_15_103339_remove_col_from_seller_wallet', 57), (122, '2021_10_15_104419_add_id_col_order_tran', 57), (123, '2021_10_15_213454_update_string_limit', 57), (124, '2021_10_16_234037_change_col_type_translation', 57), (125, '2021_10_16_234329_change_col_type_translation_1', 57), (126, '2021_10_27_091250_add_shipping_address_in_order', 58), (127, '2021_01_24_205114_create_paytabs_invoices_table', 59), (128, '2021_11_20_043814_change_pass_reset_email_col', 59), (129, '2021_11_25_043109_create_delivery_men_table', 60), (130, '2021_11_25_062242_add_auth_token_delivery_man', 60), (131, '2021_11_27_043405_add_deliveryman_in_order_table', 60), (132, '2021_11_27_051432_create_delivery_histories_table', 60), (133, '2021_11_27_051512_add_fcm_col_for_delivery_man', 60), (134, '2021_12_15_123216_add_columns_to_banner', 60), (135, '2022_01_04_100543_add_order_note_to_orders_table', 60), (136, '2022_01_10_034952_add_lat_long_to_shipping_addresses_table', 60), (137, '2022_01_10_045517_create_billing_addresses_table', 60), (138, '2022_01_11_040755_add_is_billing_to_shipping_addresses_table', 60), (139, '2022_01_11_053404_add_billing_to_orders_table', 60), (140, '2022_01_11_234310_add_firebase_toke_to_sellers_table', 60), (141, '2022_01_16_121801_change_colu_type', 60), (142, '2022_01_22_101601_change_cart_col_type', 61), (143, '2022_01_23_031359_add_column_to_orders_table', 61), (144, '2022_01_28_235054_add_status_to_admins_table', 61), (145, '2022_02_01_214654_add_pos_status_to_sellers_table', 61), (146, '2019_12_14_000001_create_personal_access_tokens_table', 62), (147, '2022_02_11_225355_add_checked_to_orders_table', 62), (148, '2022_02_14_114359_create_refund_requests_table', 62), (149, '2022_02_14_115757_add_refund_request_to_order_details_table', 62), (150, '2022_02_15_092604_add_order_details_id_to_transactions_table', 62), (151, '2022_02_15_121410_create_refund_transactions_table', 62), (152, '2022_02_24_091236_add_multiple_column_to_refund_requests_table', 62), (153, '2022_02_24_103827_create_refund_statuses_table', 62), (154, '2022_03_01_121420_add_refund_id_to_refund_transactions_table', 62), (155, '2022_03_10_091943_add_priority_to_categories_table', 63), (156, '2022_03_13_111914_create_shipping_types_table', 63), (157, '2022_03_13_121514_create_category_shipping_costs_table', 63), (158, '2022_03_14_074413_add_four_column_to_products_table', 63), (159, '2022_03_15_105838_add_shipping_to_carts_table', 63), (160, '2022_03_16_070327_add_shipping_type_to_orders_table', 63), (161, '2022_03_17_070200_add_delivery_info_to_orders_table', 63), (162, '2022_03_18_143339_add_shipping_type_to_carts_table', 63), (163, '2022_04_06_020313_create_subscriptions_table', 64), (164, '2022_04_12_233704_change_column_to_products_table', 64), (165, '2022_04_19_095926_create_jobs_table', 64), (166, '2022_05_12_104247_create_wallet_transactions_table', 65), (167, '2022_05_12_104511_add_two_column_to_users_table', 65), (168, '2022_05_14_063309_create_loyalty_point_transactions_table', 65), (169, '2022_05_26_044016_add_user_type_to_password_resets_table', 65), (170, '2022_04_15_235820_add_provider', 66), (171, '2022_07_21_101659_add_code_to_products_table', 66), (172, '2022_07_26_103744_add_notification_count_to_notifications_table', 66), (173, '2022_07_31_031541_add_minimum_order_qty_to_products_table', 66), (174, '2022_08_11_172839_add_product_type_and_digital_product_type_and_digital_file_ready_to_products', 67), (175, '2022_08_11_173941_add_product_type_and_digital_product_type_and_digital_file_to_order_details', 67), (176, '2022_08_20_094225_add_product_type_and_digital_product_type_and_digital_file_ready_to_carts_table', 67), (177, '2022_10_04_160234_add_banking_columns_to_delivery_men_table', 68), (178, '2022_10_04_161339_create_deliveryman_wallets_table', 68), (179, '2022_10_04_184506_add_deliverymanid_column_to_withdraw_requests_table', 68), (180, '2022_10_11_103011_add_deliverymans_columns_to_chattings_table', 68), (181, '2022_10_11_144902_add_deliverman_id_cloumn_to_reviews_table', 68), (182, '2022_10_17_114744_create_order_status_histories_table', 68), (183, '2022_10_17_120840_create_order_expected_delivery_histories_table', 68), (184, '2022_10_18_084245_add_deliveryman_charge_and_expected_delivery_date', 68), (185, '2022_10_18_130938_create_delivery_zip_codes_table', 68), (186, '2022_10_18_130956_create_delivery_country_codes_table', 68), (187, '2022_10_20_164712_create_delivery_man_transactions_table', 68), (188, '2022_10_27_145604_create_emergency_contacts_table', 68), (189, '2022_10_29_182930_add_is_pause_cause_to_orders_table', 68), (190, '2022_10_31_150604_add_address_phone_country_code_column_to_delivery_men_table', 68), (191, '2022_11_05_185726_add_order_id_to_reviews_table', 68), (192, '2022_11_07_190749_create_deliveryman_notifications_table', 68), (193, '2022_11_08_132745_change_transaction_note_type_to_withdraw_requests_table', 68), (194, '2022_11_10_193747_chenge_order_amount_seller_amount_admin_commission_delivery_charge_tax_toorder_transactions_table', 68), (195, '2022_12_17_035723_few_field_add_to_coupons_table', 69), (196, '2022_12_26_231606_add_coupon_discount_bearer_and_admin_commission_to_orders', 69), (197, '2023_01_04_003034_alter_billing_addresses_change_zip', 69), (198, '2023_01_05_121600_change_id_to_transactions_table', 69), (199, '2023_02_02_113330_create_product_tag_table', 70), (200, '2023_02_02_114518_create_tags_table', 70), (201, '2023_02_02_152248_add_tax_model_to_products_table', 70), (202, '2023_02_02_152718_add_tax_model_to_order_details_table', 70), (203, '2023_02_02_171034_add_tax_type_to_carts', 70), (204, '2023_02_06_124447_add_color_image_column_to_products_table', 70), (205, '2023_02_07_120136_create_withdrawal_methods_table', 70), (206, '2023_02_07_175939_add_withdrawal_method_id_and_withdrawal_method_fields_to_withdraw_requests_table', 70), (207, '2023_02_08_143314_add_vacation_start_and_vacation_end_and_vacation_not_column_to_shops_table', 70), (208, '2023_02_09_104656_add_payment_by_and_payment_not_to_orders_table', 70), (209, '2023_03_27_150723_add_expires_at_to_phone_or_email_verifications', 71), (210, '2023_04_17_095721_create_shop_followers_table', 71), (211, '2023_04_17_111249_add_bottom_banner_to_shops_table', 71), (212, '2023_04_20_125423_create_product_compares_table', 71), (213, '2023_04_30_165642_add_category_sub_category_and_sub_sub_category_add_in_product_table', 71), (214, '2023_05_16_131006_add_expires_at_to_password_resets', 71), (215, '2023_05_17_044243_add_visit_count_to_tags_table', 71), (216, '2023_05_18_000403_add_title_and_subtitle_and_background_color_and_button_text_to_banners_table', 71), (217, '2023_05_21_111300_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_users_table', 71), (218, '2023_05_21_111600_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_phone_or_email_verifications_table', 71), (219, '2023_05_21_112215_add_login_hit_count_and_is_temp_blocked_and_temp_block_time_to_password_resets_table', 71), (220, '2023_06_04_210726_attachment_lenght_change_to_reviews_table', 71), (221, '2023_06_05_115153_add_referral_code_and_referred_by_to_users_table', 72), (222, '2023_06_21_002658_add_offer_banner_to_shops_table', 72), (223, '2023_07_08_210747_create_most_demandeds_table', 72), (224, '2023_07_31_111419_add_minimum_order_amount_to_sellers_table', 72), (225, '2023_08_03_105256_create_offline_payment_methods_table', 72), (226, '2023_08_07_131013_add_is_guest_column_to_carts_table', 72), (227, '2023_08_07_170601_create_offline_payments_table', 72), (228, '2023_08_12_102355_create_add_fund_bonus_categories_table', 72), (229, '2023_08_12_215346_create_guest_users_table', 72), (230, '2023_08_12_215659_add_is_guest_column_to_orders_table', 72), (231, '2023_08_12_215933_add_is_guest_column_to_shipping_addresses_table', 72), (232, '2023_08_15_000957_add_email_column_toshipping_address_table', 72), (233, '2023_08_17_222330_add_identify_related_columns_to_admins_table', 72), (234, '2023_08_20_230624_add_sent_by_and_send_to_in_notifications_table', 72), (235, '2023_08_20_230911_create_notification_seens_table', 72), (236, '2023_08_21_042331_add_theme_to_banners_table', 72), (237, '2023_08_24_150009_add_free_delivery_over_amount_and_status_to_seller_table', 72), (238, '2023_08_26_161214_add_is_shipping_free_to_orders_table', 72), (239, '2023_08_26_173523_add_payment_method_column_to_wallet_transactions_table', 72), (240, '2023_08_26_204653_add_verification_status_column_to_orders_table', 72), (241, '2023_08_26_225113_create_order_delivery_verifications_table', 72), (242, '2023_09_03_212200_add_free_delivery_responsibility_column_to_orders_table', 72), (243, '2023_09_23_153314_add_shipping_responsibility_column_to_orders_table', 72), (244, '2023_09_25_152733_create_digital_product_otp_verifications_table', 72), (245, '2023_09_27_191638_add_attachment_column_to_support_ticket_convs_table', 73), (246, '2023_10_01_205117_add_attachment_column_to_chattings_table', 73), (247, '2023_10_07_182714_create_notification_messages_table', 73), (248, '2023_10_21_113354_add_app_language_column_to_users_table', 73), (249, '2023_10_21_123433_add_app_language_column_to_sellers_table', 73), (250, '2023_10_21_124657_add_app_language_column_to_delivery_men_table', 73), (251, '2023_10_22_130225_add_attachment_to_support_tickets_table', 73), (252, '2023_10_25_113233_make_message_nullable_in_chattings_table', 73), (253, '2023_10_30_152005_make_attachment_column_type_change_to_reviews_table', 73), (254, '2024_01_14_192546_add_slug_to_shops_table', 74), (255, '2024_01_25_175421_add_country_code_to_emergency_contacts_table', 75), (256, '2024_02_01_200417_add_denied_count_and_approved_count_to_refund_requests_table', 75), (257, '2024_03_11_130425_add_seen_notification_and_notification_receiver_to_chattings_table', 76), (258, '2024_03_12_123322_update_images_column_in_refund_requests_table', 76), (259, '2024_03_21_134659_change_denied_note_column_type_to_text', 76), (260, '2024_04_03_093637_create_email_templates_table', 77), (261, '2024_04_17_102137_add_is_checked_column_to_carts_table', 77), (262, '2024_04_23_130436_create_vendor_registration_reasons_table', 77), (263, '2024_04_24_093932_add_type_to_help_topics_table', 77); -- -------------------------------------------------------- -- -- Table structure for table `most_demandeds` -- CREATE TABLE `most_demandeds` ( `id` bigint(20) UNSIGNED NOT NULL, `banner` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` bigint(20) UNSIGNED NOT NULL, `sent_by` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'system', `sent_to` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notification_count` int(11) NOT NULL DEFAULT '0', `image` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `notification_messages` -- CREATE TABLE `notification_messages` ( `id` bigint(20) UNSIGNED NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `notification_messages` -- INSERT INTO `notification_messages` (`id`, `user_type`, `key`, `message`, `status`, `created_at`, `updated_at`) VALUES (1, 'customer', 'order_pending_message', 'order pen message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (2, 'customer', 'order_confirmation_message', 'Order con Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (3, 'customer', 'order_processing_message', 'Order pro Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (4, 'customer', 'out_for_delivery_message', 'Order ouut Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (5, 'customer', 'order_delivered_message', 'Order del Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (6, 'customer', 'order_returned_message', 'Order hh Message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (7, 'customer', 'order_failed_message', 'Order fa Message', 0, '2023-10-30 11:02:55', '2024-05-18 10:57:03'), (8, 'customer', 'order_canceled', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (9, 'customer', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (10, 'customer', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (11, 'customer', 'message_from_delivery_man', 'customize your message from delivery man message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (12, 'customer', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (13, 'customer', 'fund_added_by_admin_message', 'customize your fund added by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (14, 'seller', 'new_order_message', 'customize your new order message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (15, 'seller', 'refund_request_message', 'customize your refund request message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (16, 'seller', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (17, 'seller', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (18, 'seller', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (19, 'seller', 'delivery_man_assign_by_admin_message', 'customize your delivery man assign by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (20, 'seller', 'order_delivered_message', 'customize your order delivered message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (21, 'seller', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (22, 'seller', 'order_refunded_message', 'customize your order refunded message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (23, 'seller', 'refund_request_canceled_message', 'customize your refund request canceled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (24, 'seller', 'refund_request_status_changed_by_admin', 'customize your refund request status changed by admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (25, 'delivery_man', 'new_order_assigned_message', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (26, 'delivery_man', 'expected_delivery_date', '', 0, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (27, 'delivery_man', 'delivery_man_charge', 'customize your delivery man charge message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (28, 'delivery_man', 'order_canceled', 'customize your order canceled message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (29, 'delivery_man', 'order_rescheduled_message', 'customize your order rescheduled message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (30, 'delivery_man', 'order_edit_message', 'customize your order edit message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (31, 'delivery_man', 'message_from_seller', 'customize your message from seller message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (32, 'delivery_man', 'message_from_admin', 'customize your message from admin message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (33, 'delivery_man', 'message_from_customer', 'customize your message from customer message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (34, 'delivery_man', 'cash_collect_by_admin_message', 'customize your cash collect by admin message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (35, 'delivery_man', 'cash_collect_by_seller_message', 'customize your cash collect by seller message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (36, 'delivery_man', 'withdraw_request_status_message', 'customize your withdraw request status message message', 1, '2023-10-30 11:02:55', '2023-10-30 11:02:55'), (37, 'seller', 'product_request_approved_message', 'customize your product request approved message message', 1, '2024-02-19 08:35:38', '2024-02-19 08:35:38'), (38, 'seller', 'product_request_rejected_message', 'customize your product request rejected message message', 1, '2024-02-19 08:35:38', '2024-02-19 08:35:38'); -- -------------------------------------------------------- -- -- Table structure for table `notification_seens` -- CREATE TABLE `notification_seens` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` int(11) DEFAULT NULL, `user_id` int(11) DEFAULT NULL, `notification_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_access_tokens` -- CREATE TABLE `oauth_access_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) DEFAULT NULL, `client_id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_access_tokens` -- INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('6840b7d4ed685bf2e0dc593affa0bd3b968065f47cc226d39ab09f1422b5a1d9666601f3f60a79c1', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:25:41', '2021-07-05 09:25:41', '2022-07-05 15:25:41'), ('c42cdd5ae652b8b2cbac4f2f4b496e889e1a803b08672954c8bbe06722b54160e71dce3e02331544', 98, 1, 'LaravelAuthApp', '[]', 1, '2021-07-05 09:24:36', '2021-07-05 09:24:36', '2022-07-05 15:24:36'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_auth_codes` -- CREATE TABLE `oauth_auth_codes` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `user_id` bigint(20) NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `scopes` text COLLATE utf8mb4_unicode_ci, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `oauth_clients` -- CREATE TABLE `oauth_clients` ( `id` int(10) UNSIGNED NOT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL, `personal_access_client` tinyint(1) NOT NULL, `password_client` tinyint(1) NOT NULL, `revoked` tinyint(1) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `provider` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_clients` -- INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`, `provider`) VALUES (1, NULL, '6amtech', 'GEUx5tqkviM6AAQcz4oi1dcm1KtRdJPgw41lj0eI', 'http://localhost', 1, 0, 0, '2020-10-21 18:27:22', '2020-10-21 18:27:22', NULL); -- -------------------------------------------------------- -- -- Table structure for table `oauth_personal_access_clients` -- CREATE TABLE `oauth_personal_access_clients` ( `id` int(10) UNSIGNED NOT NULL, `client_id` int(10) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `oauth_personal_access_clients` -- INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1, 1, '2020-10-21 18:27:23', '2020-10-21 18:27:23'); -- -------------------------------------------------------- -- -- Table structure for table `oauth_refresh_tokens` -- CREATE TABLE `oauth_refresh_tokens` ( `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `revoked` tinyint(1) NOT NULL, `expires_at` datetime DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payments` -- CREATE TABLE `offline_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` int(11) NOT NULL, `payment_info` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `offline_payment_methods` -- CREATE TABLE `offline_payment_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `method_informations` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `customer_type` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `order_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_method` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_ref` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_note` text COLLATE utf8mb4_unicode_ci, `order_amount` double NOT NULL DEFAULT '0', `admin_commission` decimal(8,2) NOT NULL DEFAULT '0.00', `is_pause` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` double NOT NULL DEFAULT '0', `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_discount_bearer` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'inhouse', `shipping_responsibility` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method_id` bigint(20) NOT NULL DEFAULT '0', `shipping_cost` double(8,2) NOT NULL DEFAULT '0.00', `is_shipping_free` tinyint(1) NOT NULL DEFAULT '0', `order_group_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def-order-group', `verification_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0', `verification_status` tinyint(4) NOT NULL DEFAULT '0', `seller_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_address_data` text COLLATE utf8mb4_unicode_ci, `delivery_man_id` bigint(20) DEFAULT NULL, `deliveryman_charge` double NOT NULL DEFAULT '0', `expected_delivery_date` date DEFAULT NULL, `order_note` text COLLATE utf8mb4_unicode_ci, `billing_address` bigint(20) UNSIGNED DEFAULT NULL, `billing_address_data` text COLLATE utf8mb4_unicode_ci, `order_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default_type', `extra_discount` double(8,2) NOT NULL DEFAULT '0.00', `extra_discount_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `free_delivery_bearer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `checked` tinyint(1) NOT NULL DEFAULT '0', `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_service_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `third_party_delivery_tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_delivery_verifications` -- CREATE TABLE `order_delivery_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `image` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_details` -- CREATE TABLE `order_details` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `seller_id` bigint(20) DEFAULT NULL, `digital_file_after_sell` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_details` text COLLATE utf8mb4_unicode_ci, `qty` int(11) NOT NULL DEFAULT '0', `price` double NOT NULL DEFAULT '0', `tax` double NOT NULL DEFAULT '0', `discount` double NOT NULL DEFAULT '0', `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `delivery_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `payment_status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unpaid', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `shipping_method_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variation` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_stock_decreased` tinyint(1) NOT NULL DEFAULT '1', `refund_request` int(11) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_expected_delivery_histories` -- CREATE TABLE `order_expected_delivery_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `expected_delivery_date` date NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_status_histories` -- CREATE TABLE `order_status_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) NOT NULL, `user_id` bigint(20) NOT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `cause` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `order_transactions` -- CREATE TABLE `order_transactions` ( `seller_id` bigint(20) NOT NULL, `order_id` bigint(20) NOT NULL, `order_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `seller_amount` decimal(50,2) NOT NULL DEFAULT '0.00', `admin_commission` decimal(50,2) NOT NULL DEFAULT '0.00', `received_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivery_charge` decimal(50,2) NOT NULL DEFAULT '0.00', `tax` decimal(50,2) NOT NULL DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` bigint(20) DEFAULT NULL, `seller_is` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `delivered_by` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `identity` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'customer', `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `payment_requests` -- CREATE TABLE `payment_requests` ( `id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `payer_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_amount` decimal(24,2) NOT NULL DEFAULT '0.00', `gateway_callback_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `success_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `failure_hook` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `currency_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'USD', `payment_method` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `additional_data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `is_paid` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `payer_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `external_redirect_link` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `receiver_information` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `attribute_id` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attribute` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_platform` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `paytabs_invoices` -- CREATE TABLE `paytabs_invoices` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `result` text COLLATE utf8mb4_unicode_ci NOT NULL, `response_code` int(10) UNSIGNED NOT NULL, `pt_invoice_id` int(10) UNSIGNED DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` int(10) UNSIGNED DEFAULT NULL, `card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `card_first_six_digits` int(10) UNSIGNED DEFAULT NULL, `card_last_four_digits` int(10) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `phone_or_email_verifications` -- CREATE TABLE `phone_or_email_verifications` ( `id` bigint(20) UNSIGNED NOT NULL, `phone_or_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `otp_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `products` -- CREATE TABLE `products` ( `id` bigint(20) UNSIGNED NOT NULL, `added_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint(20) DEFAULT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `category_ids` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_sub_category_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` bigint(20) DEFAULT NULL, `unit` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_qty` int(11) NOT NULL DEFAULT '1', `refundable` tinyint(1) NOT NULL DEFAULT '1', `digital_product_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `digital_file_ready` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` longtext COLLATE utf8mb4_unicode_ci, `color_image` text COLLATE utf8mb4_unicode_ci NOT NULL, `thumbnail` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `featured` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `flash_deal` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_provider` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video_url` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `colors` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `variant_product` tinyint(1) NOT NULL DEFAULT '0', `attributes` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `choice_options` text COLLATE utf8mb4_unicode_ci, `variation` text COLLATE utf8mb4_unicode_ci, `published` tinyint(1) NOT NULL DEFAULT '0', `unit_price` double NOT NULL DEFAULT '0', `purchase_price` double NOT NULL DEFAULT '0', `tax` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `tax_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tax_model` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'exclude', `discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `discount_type` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `current_stock` int(11) DEFAULT NULL, `minimum_order_qty` int(11) NOT NULL DEFAULT '1', `details` text COLLATE utf8mb4_unicode_ci, `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `attachment` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `featured_status` tinyint(1) NOT NULL DEFAULT '1', `meta_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `request_status` tinyint(1) NOT NULL DEFAULT '0', `denied_note` text COLLATE utf8mb4_unicode_ci, `shipping_cost` double(8,2) DEFAULT NULL, `multiply_qty` tinyint(1) DEFAULT NULL, `temp_shipping_cost` double(8,2) DEFAULT NULL, `is_shipping_cost_updated` tinyint(1) DEFAULT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_compares` -- CREATE TABLE `product_compares` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL COMMENT 'customer_id', `product_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_stocks` -- CREATE TABLE `product_stocks` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) DEFAULT NULL, `variant` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(8,2) NOT NULL DEFAULT '0.00', `qty` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `product_tag` -- CREATE TABLE `product_tag` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `tag_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_requests` -- CREATE TABLE `refund_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `order_details_id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `approved_count` tinyint(4) NOT NULL DEFAULT '0', `denied_count` tinyint(4) NOT NULL DEFAULT '0', `amount` double(8,2) NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED NOT NULL, `refund_reason` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `images` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `approved_note` longtext COLLATE utf8mb4_unicode_ci, `rejected_note` longtext COLLATE utf8mb4_unicode_ci, `payment_info` longtext COLLATE utf8mb4_unicode_ci, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_statuses` -- CREATE TABLE `refund_statuses` ( `id` bigint(20) UNSIGNED NOT NULL, `refund_request_id` bigint(20) UNSIGNED DEFAULT NULL, `change_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `change_by_id` bigint(20) UNSIGNED DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `refund_transactions` -- CREATE TABLE `refund_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `order_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_for` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) UNSIGNED DEFAULT NULL, `payment_receiver_id` bigint(20) UNSIGNED DEFAULT NULL, `paid_by` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` double(8,2) DEFAULT NULL, `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `reviews` -- CREATE TABLE `reviews` ( `id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) NOT NULL, `customer_id` bigint(20) NOT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `order_id` bigint(20) DEFAULT NULL, `comment` mediumtext COLLATE utf8mb4_unicode_ci, `attachment` json DEFAULT NULL, `rating` int(11) NOT NULL DEFAULT '0', `status` int(11) NOT NULL DEFAULT '1', `is_saved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `search_functions` -- CREATE TABLE `search_functions` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `visible_for` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `search_functions` -- INSERT INTO `search_functions` (`id`, `key`, `url`, `visible_for`, `created_at`, `updated_at`) VALUES (1, 'Dashboard', 'admin/dashboard', 'admin', NULL, NULL), (2, 'Order All', 'admin/orders/list/all', 'admin', NULL, NULL), (3, 'Order Pending', 'admin/orders/list/pending', 'admin', NULL, NULL), (4, 'Order Processed', 'admin/orders/list/processed', 'admin', NULL, NULL), (5, 'Order Delivered', 'admin/orders/list/delivered', 'admin', NULL, NULL), (6, 'Order Returned', 'admin/orders/list/returned', 'admin', NULL, NULL), (7, 'Order Failed', 'admin/orders/list/failed', 'admin', NULL, NULL), (8, 'Brand Add', 'admin/brand/add-new', 'admin', NULL, NULL), (9, 'Brand List', 'admin/brand/list', 'admin', NULL, NULL), (10, 'Banner', 'admin/banner/list', 'admin', NULL, NULL), (11, 'Category', 'admin/category/view', 'admin', NULL, NULL), (12, 'Sub Category', 'admin/category/sub-category/view', 'admin', NULL, NULL), (13, 'Sub sub category', 'admin/category/sub-sub-category/view', 'admin', NULL, NULL), (14, 'Attribute', 'admin/attribute/view', 'admin', NULL, NULL), (15, 'Product', 'admin/product/list', 'admin', NULL, NULL), (16, 'Promotion', 'admin/coupon/add-new', 'admin', NULL, NULL), (17, 'Custom Role', 'admin/custom-role/create', 'admin', NULL, NULL), (18, 'Employee', 'admin/employee/add-new', 'admin', NULL, NULL), (19, 'Seller', 'admin/sellers/seller-list', 'admin', NULL, NULL), (20, 'Contacts', 'admin/contact/list', 'admin', NULL, NULL), (21, 'Flash Deal', 'admin/deal/flash', 'admin', NULL, NULL), (22, 'Deal of the day', 'admin/deal/day', 'admin', NULL, NULL), (23, 'Language', 'admin/business-settings/language', 'admin', NULL, NULL), (24, 'Mail', 'admin/business-settings/mail', 'admin', NULL, NULL), (25, 'Shipping method', 'admin/business-settings/shipping-method/add', 'admin', NULL, NULL), (26, 'Currency', 'admin/currency/view', 'admin', NULL, NULL), (27, 'Payment method', 'admin/business-settings/payment-method', 'admin', NULL, NULL), (28, 'SMS Gateway', 'admin/business-settings/sms-gateway', 'admin', NULL, NULL), (29, 'Support Ticket', 'admin/support-ticket/view', 'admin', NULL, NULL), (30, 'FAQ', 'admin/helpTopic/list', 'admin', NULL, NULL), (31, 'About Us', 'admin/business-settings/about-us', 'admin', NULL, NULL), (32, 'Terms and Conditions', 'admin/business-settings/terms-condition', 'admin', NULL, NULL), (33, 'Web Config', 'admin/business-settings/web-config', 'admin', NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` bigint(20) UNSIGNED NOT NULL, `f_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `branch` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `account_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `auth_token` text COLLATE utf8mb4_unicode_ci, `sales_commission_percentage` double(8,2) DEFAULT NULL, `gst` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pos_status` tinyint(1) NOT NULL DEFAULT '0', `minimum_order_amount` double(8,2) NOT NULL DEFAULT '0.00', `free_delivery_status` int(11) NOT NULL DEFAULT '0', `free_delivery_over_amount` double(8,2) NOT NULL DEFAULT '0.00', `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallets` -- CREATE TABLE `seller_wallets` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `total_earning` double NOT NULL DEFAULT '0', `withdrawn` double NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_given` double(8,2) NOT NULL DEFAULT '0.00', `pending_withdraw` double(8,2) NOT NULL DEFAULT '0.00', `delivery_charge_earned` double(8,2) NOT NULL DEFAULT '0.00', `collected_cash` double(8,2) NOT NULL DEFAULT '0.00', `total_tax_collected` double(8,2) NOT NULL DEFAULT '0.00' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `seller_wallet_histories` -- CREATE TABLE `seller_wallet_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `amount` double NOT NULL DEFAULT '0', `order_id` bigint(20) DEFAULT NULL, `product_id` bigint(20) DEFAULT NULL, `payment` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'received', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_addresses` -- CREATE TABLE `shipping_addresses` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(4) NOT NULL DEFAULT '0', `contact_person_name` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'home', `address` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `state` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `latitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `longitude` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_billing` tinyint(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shipping_methods` -- CREATE TABLE `shipping_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) DEFAULT NULL, `creator_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'admin', `title` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost` decimal(8,2) NOT NULL DEFAULT '0.00', `duration` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `shipping_methods` -- INSERT INTO `shipping_methods` (`id`, `creator_id`, `creator_type`, `title`, `cost`, `duration`, `status`, `created_at`, `updated_at`) VALUES (2, 1, 'admin', 'Company Vehicle', '5.00', '2 Week', 1, '2021-05-25 20:57:04', '2021-05-25 20:57:04'); -- -------------------------------------------------------- -- -- Table structure for table `shipping_types` -- CREATE TABLE `shipping_types` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) UNSIGNED DEFAULT NULL, `shipping_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shops` -- CREATE TABLE `shops` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en', `address` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `contact` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `bottom_banner` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `offer_banner` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_start_date` date DEFAULT NULL, `vacation_end_date` date DEFAULT NULL, `vacation_note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vacation_status` tinyint(4) NOT NULL DEFAULT '0', `temporary_close` tinyint(4) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `banner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `shop_followers` -- CREATE TABLE `shop_followers` ( `id` bigint(20) UNSIGNED NOT NULL, `shop_id` int(11) NOT NULL, `user_id` int(11) NOT NULL COMMENT 'Customer ID', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `social_medias` -- CREATE TABLE `social_medias` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `icon` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `active_status` int(11) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `social_medias` -- INSERT INTO `social_medias` (`id`, `name`, `link`, `icon`, `active_status`, `status`, `created_at`, `updated_at`) VALUES (1, 'twitter', 'https://www.w3schools.com/howto/howto_css_table_responsive.asp', 'fa fa-twitter', 1, 1, '2020-12-31 21:18:03', '2020-12-31 21:18:25'), (2, 'linkedin', 'https://dev.6amtech.com/', 'fa fa-linkedin', 1, 1, '2021-02-27 16:23:01', '2021-02-27 16:23:05'), (3, 'google-plus', 'https://dev.6amtech.com/', 'fa fa-google-plus-square', 1, 1, '2021-02-27 16:23:30', '2021-02-27 16:23:33'), (4, 'pinterest', 'https://dev.6amtech.com/', 'fa fa-pinterest', 1, 1, '2021-02-27 16:24:14', '2021-02-27 16:24:26'), (5, 'instagram', 'https://dev.6amtech.com/', 'fa fa-instagram', 1, 1, '2021-02-27 16:24:36', '2021-02-27 16:24:41'), (6, 'facebook', 'facebook.com', 'fa fa-facebook', 1, 1, '2021-02-27 19:19:42', '2021-06-11 17:41:59'); -- -------------------------------------------------------- -- -- Table structure for table `soft_credentials` -- CREATE TABLE `soft_credentials` ( `id` bigint(20) UNSIGNED NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` longtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `subscriptions` -- CREATE TABLE `subscriptions` ( `id` bigint(20) UNSIGNED NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_tickets` -- CREATE TABLE `support_tickets` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) DEFAULT NULL, `subject` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'low', `description` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `reply` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `support_ticket_convs` -- CREATE TABLE `support_ticket_convs` ( `id` bigint(20) UNSIGNED NOT NULL, `support_ticket_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `customer_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `attachment` json DEFAULT NULL, `admin_message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int(11) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `tags` -- CREATE TABLE `tags` ( `id` bigint(20) UNSIGNED NOT NULL, `tag` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `visit_count` bigint(20) UNSIGNED NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `transactions` -- CREATE TABLE `transactions` ( `id` int(10) UNSIGNED NOT NULL, `order_id` bigint(20) DEFAULT NULL, `payment_for` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payer_id` bigint(20) DEFAULT NULL, `payment_receiver_id` bigint(20) DEFAULT NULL, `paid_by` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `paid_to` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_status` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'success', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` double(8,2) NOT NULL DEFAULT '0.00', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_details_id` bigint(20) UNSIGNED DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `translations` -- CREATE TABLE `translations` ( `translationable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `translationable_id` bigint(20) UNSIGNED NOT NULL, `locale` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `id` bigint(20) UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `f_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `l_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'def.png', `email` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(80) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `street_address` varchar(250) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `house_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `apartment_no` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cm_firebase_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `payment_card_last_four` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_brand` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_card_fawry_token` text COLLATE utf8mb4_unicode_ci, `login_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `social_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_phone_verified` tinyint(1) NOT NULL DEFAULT '0', `temporary_token` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_email_verified` tinyint(1) NOT NULL DEFAULT '0', `wallet_balance` double(8,2) DEFAULT NULL, `loyalty_point` double(8,2) DEFAULT NULL, `login_hit_count` tinyint(4) NOT NULL DEFAULT '0', `is_temp_blocked` tinyint(1) NOT NULL DEFAULT '0', `temp_block_time` timestamp NULL DEFAULT NULL, `referral_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referred_by` int(11) DEFAULT NULL, `app_language` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'en' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `f_name`, `l_name`, `phone`, `image`, `email`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `street_address`, `country`, `city`, `zip`, `house_no`, `apartment_no`, `cm_firebase_token`, `is_active`, `payment_card_last_four`, `payment_card_brand`, `payment_card_fawry_token`, `login_medium`, `social_id`, `is_phone_verified`, `temporary_token`, `is_email_verified`, `wallet_balance`, `loyalty_point`, `login_hit_count`, `is_temp_blocked`, `temp_block_time`, `referral_code`, `referred_by`, `app_language`) VALUES (0, 'walking customer', 'walking', 'customer', '000000000000', 'def.png', 'walking@customer.com', NULL, '', NULL, NULL, '2022-02-03 03:46:01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, 0, NULL, NULL, NULL, 'en'); -- -------------------------------------------------------- -- -- Table structure for table `vendor_registration_reasons` -- CREATE TABLE `vendor_registration_reasons` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `priority` tinyint(4) NOT NULL DEFAULT '1', `status` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `vendor_registration_reasons` -- INSERT INTO `vendor_registration_reasons` (`id`, `title`, `description`, `priority`, `status`, `created_at`, `updated_at`) VALUES (1, 'Millions of Users', 'Access a vast audience with millions of active users ready to buy your products.', 1, 1, NULL, NULL), (2, 'Free Marketing', 'Benefit from our extensive, no-cost marketing efforts to boost your visibility and sales.', 2, 1, NULL, NULL), (3, 'SEO Friendly', 'Enjoy enhanced search visibility with our SEO-friendly platform, driving more traffic to your listings.', 3, 1, NULL, NULL), (4, '24/7 Support', 'Get round-the-clock support from our dedicated team to resolve any issues and assist you anytime.', 4, 1, NULL, NULL), (5, 'Easy Onboarding', 'Start selling quickly with our user-friendly onboarding process designed to get you up and running fast.', 5, 1, NULL, NULL); -- -------------------------------------------------------- -- -- Table structure for table `wallet_transactions` -- CREATE TABLE `wallet_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `transaction_id` char(36) COLLATE utf8mb4_unicode_ci NOT NULL, `credit` decimal(24,3) NOT NULL DEFAULT '0.000', `debit` decimal(24,3) NOT NULL DEFAULT '0.000', `admin_bonus` decimal(24,3) NOT NULL DEFAULT '0.000', `balance` decimal(24,3) NOT NULL DEFAULT '0.000', `transaction_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `wishlists` -- CREATE TABLE `wishlists` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdrawal_methods` -- CREATE TABLE `withdrawal_methods` ( `id` bigint(20) UNSIGNED NOT NULL, `method_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `method_fields` text COLLATE utf8mb4_unicode_ci NOT NULL, `is_default` tinyint(4) NOT NULL DEFAULT '0', `is_active` tinyint(4) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `withdraw_requests` -- CREATE TABLE `withdraw_requests` ( `id` bigint(20) UNSIGNED NOT NULL, `seller_id` bigint(20) DEFAULT NULL, `delivery_man_id` bigint(20) DEFAULT NULL, `admin_id` bigint(20) DEFAULT NULL, `amount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.00', `withdrawal_method_id` bigint(20) UNSIGNED DEFAULT NULL, `withdrawal_method_fields` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin, `transaction_note` text COLLATE utf8mb4_unicode_ci, `approved` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `addon_settings` -- ALTER TABLE `addon_settings` ADD PRIMARY KEY (`id`), ADD KEY `payment_settings_id_index` (`id`); -- -- Indexes for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admins` -- ALTER TABLE `admins` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `admins_email_unique` (`email`); -- -- Indexes for table `admin_roles` -- ALTER TABLE `admin_roles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallets` -- ALTER TABLE `admin_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `attributes` -- ALTER TABLE `attributes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `banners` -- ALTER TABLE `banners` ADD PRIMARY KEY (`id`); -- -- Indexes for table `billing_addresses` -- ALTER TABLE `billing_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `brands` -- ALTER TABLE `brands` ADD PRIMARY KEY (`id`); -- -- Indexes for table `business_settings` -- ALTER TABLE `business_settings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `carts` -- ALTER TABLE `carts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `cart_shippings` -- ALTER TABLE `cart_shippings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chattings` -- ALTER TABLE `chattings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `colors` -- ALTER TABLE `colors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `contacts` -- ALTER TABLE `contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupons` -- ALTER TABLE `coupons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `currencies` -- ALTER TABLE `currencies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallets` -- ALTER TABLE `customer_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_histories` -- ALTER TABLE `delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_men` -- ALTER TABLE `delivery_men` ADD PRIMARY KEY (`id`); -- -- Indexes for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `email_templates` -- ALTER TABLE `email_templates` ADD PRIMARY KEY (`id`); -- -- Indexes for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `feature_deals` -- ALTER TABLE `feature_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deals` -- ALTER TABLE `flash_deals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `guest_users` -- ALTER TABLE `guest_users` ADD PRIMARY KEY (`id`); -- -- Indexes for table `help_topics` -- ALTER TABLE `help_topics` ADD PRIMARY KEY (`id`); -- -- Indexes for table `jobs` -- ALTER TABLE `jobs` ADD PRIMARY KEY (`id`), ADD KEY `jobs_queue_index` (`queue`); -- -- Indexes for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `most_demandeds` -- ALTER TABLE `most_demandeds` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_messages` -- ALTER TABLE `notification_messages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification_seens` -- ALTER TABLE `notification_seens` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_access_tokens` -- ALTER TABLE `oauth_access_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_access_tokens_user_id_index` (`user_id`); -- -- Indexes for table `oauth_auth_codes` -- ALTER TABLE `oauth_auth_codes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `oauth_clients` -- ALTER TABLE `oauth_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_clients_user_id_index` (`user_id`); -- -- Indexes for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` ADD PRIMARY KEY (`id`), ADD KEY `oauth_personal_access_clients_client_id_index` (`client_id`); -- -- Indexes for table `oauth_refresh_tokens` -- ALTER TABLE `oauth_refresh_tokens` ADD PRIMARY KEY (`id`), ADD KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`); -- -- Indexes for table `offline_payments` -- ALTER TABLE `offline_payments` ADD PRIMARY KEY (`id`); -- -- Indexes for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_details` -- ALTER TABLE `order_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_status_histories` -- ALTER TABLE `order_status_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `order_transactions` -- ALTER TABLE `order_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD PRIMARY KEY (`id`), ADD KEY `password_resets_email_index` (`identity`); -- -- Indexes for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` ADD PRIMARY KEY (`id`); -- -- Indexes for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`), ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`); -- -- Indexes for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `products` -- ALTER TABLE `products` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_compares` -- ALTER TABLE `product_compares` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_stocks` -- ALTER TABLE `product_stocks` ADD PRIMARY KEY (`id`); -- -- Indexes for table `product_tag` -- ALTER TABLE `product_tag` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_requests` -- ALTER TABLE `refund_requests` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_statuses` -- ALTER TABLE `refund_statuses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `refund_transactions` -- ALTER TABLE `refund_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `reviews` -- ALTER TABLE `reviews` ADD PRIMARY KEY (`id`); -- -- Indexes for table `search_functions` -- ALTER TABLE `search_functions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_email_unique` (`email`); -- -- Indexes for table `seller_wallets` -- ALTER TABLE `seller_wallets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_methods` -- ALTER TABLE `shipping_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shipping_types` -- ALTER TABLE `shipping_types` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shops` -- ALTER TABLE `shops` ADD PRIMARY KEY (`id`); -- -- Indexes for table `shop_followers` -- ALTER TABLE `shop_followers` ADD PRIMARY KEY (`id`); -- -- Indexes for table `social_medias` -- ALTER TABLE `social_medias` ADD PRIMARY KEY (`id`); -- -- Indexes for table `soft_credentials` -- ALTER TABLE `soft_credentials` ADD PRIMARY KEY (`id`); -- -- Indexes for table `subscriptions` -- ALTER TABLE `subscriptions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_tickets` -- ALTER TABLE `support_tickets` ADD PRIMARY KEY (`id`); -- -- Indexes for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tags` -- ALTER TABLE `tags` ADD PRIMARY KEY (`id`); -- -- Indexes for table `transactions` -- ALTER TABLE `transactions` ADD UNIQUE KEY `transactions_id_unique` (`id`); -- -- Indexes for table `translations` -- ALTER TABLE `translations` ADD PRIMARY KEY (`id`), ADD KEY `translations_translationable_id_index` (`translationable_id`), ADD KEY `translations_locale_index` (`locale`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `vendor_registration_reasons` -- ALTER TABLE `vendor_registration_reasons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `wishlists` -- ALTER TABLE `wishlists` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` ADD PRIMARY KEY (`id`); -- -- Indexes for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `add_fund_bonus_categories` -- ALTER TABLE `add_fund_bonus_categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admins` -- ALTER TABLE `admins` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `admin_roles` -- ALTER TABLE `admin_roles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `admin_wallets` -- ALTER TABLE `admin_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `admin_wallet_histories` -- ALTER TABLE `admin_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `attributes` -- ALTER TABLE `attributes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `banners` -- ALTER TABLE `banners` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `billing_addresses` -- ALTER TABLE `billing_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `brands` -- ALTER TABLE `brands` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `business_settings` -- ALTER TABLE `business_settings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=171; -- -- AUTO_INCREMENT for table `carts` -- ALTER TABLE `carts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `cart_shippings` -- ALTER TABLE `cart_shippings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `category_shipping_costs` -- ALTER TABLE `category_shipping_costs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chattings` -- ALTER TABLE `chattings` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `colors` -- ALTER TABLE `colors` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144; -- -- AUTO_INCREMENT for table `contacts` -- ALTER TABLE `contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupons` -- ALTER TABLE `coupons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `currencies` -- ALTER TABLE `currencies` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `customer_wallets` -- ALTER TABLE `customer_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_wallet_histories` -- ALTER TABLE `customer_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deal_of_the_days` -- ALTER TABLE `deal_of_the_days` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_notifications` -- ALTER TABLE `deliveryman_notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `deliveryman_wallets` -- ALTER TABLE `deliveryman_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_country_codes` -- ALTER TABLE `delivery_country_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_histories` -- ALTER TABLE `delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_man_transactions` -- ALTER TABLE `delivery_man_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_men` -- ALTER TABLE `delivery_men` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `delivery_zip_codes` -- ALTER TABLE `delivery_zip_codes` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `digital_product_otp_verifications` -- ALTER TABLE `digital_product_otp_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `email_templates` -- ALTER TABLE `email_templates` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `emergency_contacts` -- ALTER TABLE `emergency_contacts` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `feature_deals` -- ALTER TABLE `feature_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deals` -- ALTER TABLE `flash_deals` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `flash_deal_products` -- ALTER TABLE `flash_deal_products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `guest_users` -- ALTER TABLE `guest_users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `help_topics` -- ALTER TABLE `help_topics` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `jobs` -- ALTER TABLE `jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `loyalty_point_transactions` -- ALTER TABLE `loyalty_point_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=264; -- -- AUTO_INCREMENT for table `most_demandeds` -- ALTER TABLE `most_demandeds` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `notification_messages` -- ALTER TABLE `notification_messages` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39; -- -- AUTO_INCREMENT for table `notification_seens` -- ALTER TABLE `notification_seens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `oauth_clients` -- ALTER TABLE `oauth_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `oauth_personal_access_clients` -- ALTER TABLE `oauth_personal_access_clients` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `offline_payments` -- ALTER TABLE `offline_payments` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `offline_payment_methods` -- ALTER TABLE `offline_payment_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_delivery_verifications` -- ALTER TABLE `order_delivery_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_details` -- ALTER TABLE `order_details` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_expected_delivery_histories` -- ALTER TABLE `order_expected_delivery_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_status_histories` -- ALTER TABLE `order_status_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `order_transactions` -- ALTER TABLE `order_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `password_resets` -- ALTER TABLE `password_resets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `paytabs_invoices` -- ALTER TABLE `paytabs_invoices` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `phone_or_email_verifications` -- ALTER TABLE `phone_or_email_verifications` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `products` -- ALTER TABLE `products` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_compares` -- ALTER TABLE `product_compares` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_stocks` -- ALTER TABLE `product_stocks` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `product_tag` -- ALTER TABLE `product_tag` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_requests` -- ALTER TABLE `refund_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_statuses` -- ALTER TABLE `refund_statuses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `refund_transactions` -- ALTER TABLE `refund_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `reviews` -- ALTER TABLE `reviews` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `search_functions` -- ALTER TABLE `search_functions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallets` -- ALTER TABLE `seller_wallets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `seller_wallet_histories` -- ALTER TABLE `seller_wallet_histories` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_addresses` -- ALTER TABLE `shipping_addresses` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shipping_methods` -- ALTER TABLE `shipping_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `shipping_types` -- ALTER TABLE `shipping_types` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shops` -- ALTER TABLE `shops` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `shop_followers` -- ALTER TABLE `shop_followers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `social_medias` -- ALTER TABLE `social_medias` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `soft_credentials` -- ALTER TABLE `soft_credentials` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `subscriptions` -- ALTER TABLE `subscriptions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_tickets` -- ALTER TABLE `support_tickets` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `support_ticket_convs` -- ALTER TABLE `support_ticket_convs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tags` -- ALTER TABLE `tags` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `transactions` -- ALTER TABLE `transactions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `translations` -- ALTER TABLE `translations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `vendor_registration_reasons` -- ALTER TABLE `vendor_registration_reasons` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `wallet_transactions` -- ALTER TABLE `wallet_transactions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `wishlists` -- ALTER TABLE `wishlists` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdrawal_methods` -- ALTER TABLE `withdrawal_methods` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `withdraw_requests` -- ALTER TABLE `withdraw_requests` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; COMMIT; /*!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 */; PK!ၔDactivate_update_routes.txtnu[mapUpdateRoutes(); } /** * Define the "web" routes for the application. * * These routes all receive session state, CSRF protection, etc. * * @return void */ protected function mapInstallRoutes() { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/install.php')); } protected function mapUpdateRoutes() { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/update.php')); } /** * Define the "api" routes for the application. * * These routes are typically stateless. * * @return void */ protected function mapApiRoutes() { Route::prefix('api') ->middleware('api') ->namespace($this->namespace) ->group(base_path('routes/rest_api/v1/api.php')); } protected function mapApiv2Routes() { Route::prefix('api') ->middleware('api') ->namespace($this->namespace) ->group(base_path('routes/rest_api/v2/api.php')); } protected function mapApiv3Routes() { Route::prefix('api') ->middleware('api') ->namespace($this->namespace) ->group(base_path('routes/rest_api/v3/seller.php')); } protected function mapApiv4Routes() { Route::prefix('api') ->middleware('api') ->namespace($this->namespace) ->group(base_path('routes/rest_api/v4/api.php')); } /** * Define the "beta" routes for the application. * * These routes all receive session state, CSRF protection, etc. * * @return void */ protected function mapBetaAdminRoutes(): void { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/admin/routes.php')); } protected function mapBetaVendorRoutes(): void { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/vendor/routes.php')); } protected function mapBetaWebRoutes(): void { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/web/routes.php')); } /** * Configure the rate limiters for the application. */ protected function configureRateLimiting(): void { RateLimiter::for('global', function (Request $request) { return Limit::perMinute(3000); }); } } PK! @@activate_install_routes.txtnu[mapInstallRoutes(); //$this->mapUpdateRoutes(); } /** * Define the "web" routes for the application. * * These routes all receive session state, CSRF protection, etc. * * @return void */ protected function mapInstallRoutes() { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/install.php')); } protected function mapUpdateRoutes() { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/update.php')); } /** * Define the "api" routes for the application. * * These routes are typically stateless. * * @return void */ protected function mapApiRoutes() { Route::prefix('api') ->middleware('api') ->namespace($this->namespace) ->group(base_path('routes/rest_api/v1/api.php')); } protected function mapApiv2Routes() { Route::prefix('api') ->middleware('api') ->namespace($this->namespace) ->group(base_path('routes/rest_api/v2/api.php')); } protected function mapApiv3Routes() { Route::prefix('api') ->middleware('api') ->namespace($this->namespace) ->group(base_path('routes/rest_api/v3/seller.php')); } protected function mapApiv4Routes() { Route::prefix('api') ->middleware('api') ->namespace($this->namespace) ->group(base_path('routes/rest_api/v4/api.php')); } /** * Define the "beta" routes for the application. * * These routes all receive session state, CSRF protection, etc. * * @return void */ protected function mapBetaAdminRoutes(): void { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/admin/routes.php')); } protected function mapBetaVendorRoutes(): void { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/vendor/routes.php')); } protected function mapBetaWebRoutes(): void { Route::middleware('web') ->namespace($this->namespace) ->group(base_path('routes/web/routes.php')); } /** * Configure the rate limiters for the application. */ protected function configureRateLimiting(): void { RateLimiter::for('global', function (Request $request) { return Limit::perMinute(3000); }); } } PK!Bmmbackup/database_v9.0.sqlnu[PK!|backup/old-database.sqlnu[PK!*)backup/database_v14.3.1.sqlnu[PK!ؠؠzbackup/database_v12.0.sqlnu[PK!yRbackup/database_v12.2.sqlnu[PK!vx^#~#~{ backup/database_v7.1.sqlnu[PK!J2 backup/database_v13.1.sqlnu[PK! 88(p backup/database_v14.5.sqlnu[PK!0 backup/public.zipnu[PK! | backup/database_v11.0.sqlnu[PK!˝##"backup/116732/index.phpnu[PK!Ÿ(backup/116732/.htaccessnu[PK!(backup/116732/288173/index.phpnu[PK!)(backup/116732/288173/.htaccessnu[PK!S(backup/index.phpnu[PK!backup/database.sqlnu[PK!ၔD2@activate_update_routes.txtnu[PK! @@@activate_install_routes.txtnu[PK "@