-- ------------------------------------------------------------- -- TablePlus 4.7.1(428) -- -- https://tableplus.com/ -- -- Database: islegelsin -- Generation Time: 2023-01-18 22:38:58.5980 -- ------------------------------------------------------------- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; DROP TABLE IF EXISTS `addresses`; CREATE TABLE `addresses` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `address_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `customer_id` int unsigned DEFAULT NULL COMMENT 'null if guest checkout', `cart_id` int unsigned DEFAULT NULL COMMENT 'only for cart_addresses', `order_id` int unsigned DEFAULT NULL COMMENT 'only for order_addresses', `first_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `gender` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address1` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `address2` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `postcode` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `state` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `vat_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `default_address` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'only for customer_addresses', `additional` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `addresses_customer_id_foreign` (`customer_id`), KEY `addresses_cart_id_foreign` (`cart_id`), KEY `addresses_order_id_foreign` (`order_id`), CONSTRAINT `addresses_cart_id_foreign` FOREIGN KEY (`cart_id`) REFERENCES `cart` (`id`) ON DELETE CASCADE, CONSTRAINT `addresses_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE, CONSTRAINT `addresses_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `admin_password_resets`; CREATE TABLE `admin_password_resets` ( `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, KEY `admin_password_resets_email_index` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `admins`; CREATE TABLE `admins` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `api_token` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `role_id` int unsigned NOT NULL, `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `admins_email_unique` (`email`), UNIQUE KEY `admins_api_token_unique` (`api_token`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `attribute_families`; CREATE TABLE `attribute_families` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `is_user_defined` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `attribute_group_mappings`; CREATE TABLE `attribute_group_mappings` ( `attribute_id` int unsigned NOT NULL, `attribute_group_id` int unsigned NOT NULL, `position` int DEFAULT NULL, PRIMARY KEY (`attribute_id`,`attribute_group_id`), KEY `attribute_group_mappings_attribute_group_id_foreign` (`attribute_group_id`), CONSTRAINT `attribute_group_mappings_attribute_group_id_foreign` FOREIGN KEY (`attribute_group_id`) REFERENCES `attribute_groups` (`id`) ON DELETE CASCADE, CONSTRAINT `attribute_group_mappings_attribute_id_foreign` FOREIGN KEY (`attribute_id`) REFERENCES `attributes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `attribute_groups`; CREATE TABLE `attribute_groups` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `position` int NOT NULL, `is_user_defined` tinyint(1) NOT NULL DEFAULT '1', `attribute_family_id` int unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `attribute_groups_attribute_family_id_name_unique` (`attribute_family_id`,`name`), CONSTRAINT `attribute_groups_attribute_family_id_foreign` FOREIGN KEY (`attribute_family_id`) REFERENCES `attribute_families` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `attribute_option_translations`; CREATE TABLE `attribute_option_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `label` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `attribute_option_id` int unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `attribute_option_translations_attribute_option_id_locale_unique` (`attribute_option_id`,`locale`), CONSTRAINT `attribute_option_translations_attribute_option_id_foreign` FOREIGN KEY (`attribute_option_id`) REFERENCES `attribute_options` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `attribute_options`; CREATE TABLE `attribute_options` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `admin_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sort_order` int DEFAULT NULL, `attribute_id` int unsigned NOT NULL, `swatch_value` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `attribute_options_attribute_id_foreign` (`attribute_id`), CONSTRAINT `attribute_options_attribute_id_foreign` FOREIGN KEY (`attribute_id`) REFERENCES `attributes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `attribute_translations`; CREATE TABLE `attribute_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `attribute_id` int unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `attribute_translations_attribute_id_locale_unique` (`attribute_id`,`locale`), CONSTRAINT `attribute_translations_attribute_id_foreign` FOREIGN KEY (`attribute_id`) REFERENCES `attributes` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `attributes`; CREATE TABLE `attributes` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `admin_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `validation` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int DEFAULT NULL, `is_required` tinyint(1) NOT NULL DEFAULT '0', `is_unique` tinyint(1) NOT NULL DEFAULT '0', `value_per_locale` tinyint(1) NOT NULL DEFAULT '0', `value_per_channel` tinyint(1) NOT NULL DEFAULT '0', `is_filterable` tinyint(1) NOT NULL DEFAULT '0', `is_configurable` tinyint(1) NOT NULL DEFAULT '0', `is_user_defined` tinyint(1) NOT NULL DEFAULT '1', `is_visible_on_front` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `swatch_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `use_in_flat` tinyint(1) NOT NULL DEFAULT '1', `is_comparable` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `attributes_code_unique` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `booking_product_appointment_slots`; CREATE TABLE `booking_product_appointment_slots` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `duration` int DEFAULT NULL, `break_time` int DEFAULT NULL, `same_slot_all_days` tinyint(1) DEFAULT NULL, `slots` json DEFAULT NULL, `booking_product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `booking_product_appointment_slots_booking_product_id_foreign` (`booking_product_id`), CONSTRAINT `booking_product_appointment_slots_booking_product_id_foreign` FOREIGN KEY (`booking_product_id`) REFERENCES `booking_products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `booking_product_default_slots`; CREATE TABLE `booking_product_default_slots` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `booking_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `duration` int DEFAULT NULL, `break_time` int DEFAULT NULL, `slots` json DEFAULT NULL, `booking_product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `booking_product_default_slots_booking_product_id_foreign` (`booking_product_id`), CONSTRAINT `booking_product_default_slots_booking_product_id_foreign` FOREIGN KEY (`booking_product_id`) REFERENCES `booking_products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `booking_product_event_ticket_translations`; CREATE TABLE `booking_product_event_ticket_translations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `booking_product_event_ticket_id` int unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `booking_product_event_ticket_translations_locale_unique` (`booking_product_event_ticket_id`,`locale`), CONSTRAINT `booking_product_event_ticket_translations_locale_foreign` FOREIGN KEY (`booking_product_event_ticket_id`) REFERENCES `booking_product_event_tickets` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `booking_product_event_tickets`; CREATE TABLE `booking_product_event_tickets` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `price` decimal(12,4) DEFAULT '0.0000', `qty` int DEFAULT '0', `special_price` decimal(12,4) DEFAULT NULL, `special_price_from` datetime DEFAULT NULL, `special_price_to` datetime DEFAULT NULL, `booking_product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `booking_product_event_tickets_booking_product_id_foreign` (`booking_product_id`), CONSTRAINT `booking_product_event_tickets_booking_product_id_foreign` FOREIGN KEY (`booking_product_id`) REFERENCES `booking_products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `booking_product_rental_slots`; CREATE TABLE `booking_product_rental_slots` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `renting_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `daily_price` decimal(12,4) DEFAULT '0.0000', `hourly_price` decimal(12,4) DEFAULT '0.0000', `same_slot_all_days` tinyint(1) DEFAULT NULL, `slots` json DEFAULT NULL, `booking_product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `booking_product_rental_slots_booking_product_id_foreign` (`booking_product_id`), CONSTRAINT `booking_product_rental_slots_booking_product_id_foreign` FOREIGN KEY (`booking_product_id`) REFERENCES `booking_products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `booking_product_table_slots`; CREATE TABLE `booking_product_table_slots` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `price_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `guest_limit` int NOT NULL DEFAULT '0', `duration` int NOT NULL, `break_time` int NOT NULL, `prevent_scheduling_before` int NOT NULL, `same_slot_all_days` tinyint(1) DEFAULT NULL, `slots` json DEFAULT NULL, `booking_product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `booking_product_table_slots_booking_product_id_foreign` (`booking_product_id`), CONSTRAINT `booking_product_table_slots_booking_product_id_foreign` FOREIGN KEY (`booking_product_id`) REFERENCES `booking_products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `booking_products`; CREATE TABLE `booking_products` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `qty` int DEFAULT '0', `location` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `show_location` tinyint(1) NOT NULL DEFAULT '0', `available_every_week` tinyint(1) DEFAULT NULL, `available_from` datetime DEFAULT NULL, `available_to` datetime DEFAULT NULL, `product_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `booking_products_product_id_foreign` (`product_id`), CONSTRAINT `booking_products_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `bookings`; CREATE TABLE `bookings` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `qty` int DEFAULT '0', `from` int DEFAULT NULL, `to` int DEFAULT NULL, `order_item_id` int unsigned DEFAULT NULL, `booking_product_event_ticket_id` int unsigned DEFAULT NULL, `order_id` int unsigned DEFAULT NULL, `product_id` int unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `bookings_order_id_foreign` (`order_id`), KEY `bookings_product_id_foreign` (`product_id`), CONSTRAINT `bookings_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE, CONSTRAINT `bookings_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `brands`; CREATE TABLE `brands` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `position` int NOT NULL DEFAULT '0', `image` varchar(191) CHARACTER SET utf8mb4 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, PRIMARY KEY (`id`), UNIQUE KEY `brands_code_unique` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cart`; CREATE TABLE `cart` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `customer_email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_first_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_last_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_gift` tinyint(1) NOT NULL DEFAULT '0', `items_count` int DEFAULT NULL, `items_qty` decimal(12,4) DEFAULT NULL, `exchange_rate` decimal(12,4) DEFAULT NULL, `global_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `base_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cart_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `grand_total` decimal(12,4) DEFAULT '0.0000', `base_grand_total` decimal(12,4) DEFAULT '0.0000', `sub_total` decimal(12,4) DEFAULT '0.0000', `base_sub_total` decimal(12,4) DEFAULT '0.0000', `tax_total` decimal(12,4) DEFAULT '0.0000', `base_tax_total` decimal(12,4) DEFAULT '0.0000', `discount_amount` decimal(12,4) DEFAULT '0.0000', `base_discount_amount` decimal(12,4) DEFAULT '0.0000', `checkout_method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(1) DEFAULT NULL, `is_active` tinyint(1) DEFAULT '1', `conversion_time` datetime DEFAULT NULL, `customer_id` int unsigned DEFAULT NULL, `channel_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `applied_cart_rule_ids` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `cart_customer_id_foreign` (`customer_id`), KEY `cart_channel_id_foreign` (`channel_id`), CONSTRAINT `cart_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, CONSTRAINT `cart_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cart_item_inventories`; CREATE TABLE `cart_item_inventories` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `qty` int unsigned NOT NULL DEFAULT '0', `inventory_source_id` int unsigned DEFAULT NULL, `cart_item_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cart_items`; CREATE TABLE `cart_items` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `quantity` int unsigned NOT NULL DEFAULT '0', `sku` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `weight` decimal(12,4) NOT NULL DEFAULT '0.0000', `total_weight` decimal(12,4) NOT NULL DEFAULT '0.0000', `base_total_weight` decimal(12,4) NOT NULL DEFAULT '0.0000', `price` decimal(12,4) NOT NULL DEFAULT '1.0000', `base_price` decimal(12,4) NOT NULL DEFAULT '0.0000', `total` decimal(12,4) NOT NULL DEFAULT '0.0000', `base_total` decimal(12,4) NOT NULL DEFAULT '0.0000', `tax_percent` decimal(12,4) DEFAULT '0.0000', `tax_amount` decimal(12,4) DEFAULT '0.0000', `base_tax_amount` decimal(12,4) DEFAULT '0.0000', `discount_percent` decimal(12,4) NOT NULL DEFAULT '0.0000', `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000', `base_discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000', `additional` json DEFAULT NULL, `parent_id` int unsigned DEFAULT NULL, `product_id` int unsigned NOT NULL, `cart_id` int unsigned NOT NULL, `tax_category_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `custom_price` decimal(12,4) DEFAULT NULL, `applied_cart_rule_ids` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `cart_items_product_id_foreign` (`product_id`), KEY `cart_items_cart_id_foreign` (`cart_id`), KEY `cart_items_tax_category_id_foreign` (`tax_category_id`), KEY `cart_items_parent_id_foreign` (`parent_id`), CONSTRAINT `cart_items_cart_id_foreign` FOREIGN KEY (`cart_id`) REFERENCES `cart` (`id`) ON DELETE CASCADE, CONSTRAINT `cart_items_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `cart_items` (`id`) ON DELETE CASCADE, CONSTRAINT `cart_items_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE, CONSTRAINT `cart_items_tax_category_id_foreign` FOREIGN KEY (`tax_category_id`) REFERENCES `tax_categories` (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cart_payment`; CREATE TABLE `cart_payment` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `method_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cart_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `cart_payment_cart_id_foreign` (`cart_id`), CONSTRAINT `cart_payment_cart_id_foreign` FOREIGN KEY (`cart_id`) REFERENCES `cart` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cart_rule_channels`; CREATE TABLE `cart_rule_channels` ( `cart_rule_id` int unsigned NOT NULL, `channel_id` int unsigned NOT NULL, PRIMARY KEY (`cart_rule_id`,`channel_id`), KEY `cart_rule_channels_channel_id_foreign` (`channel_id`), CONSTRAINT `cart_rule_channels_cart_rule_id_foreign` FOREIGN KEY (`cart_rule_id`) REFERENCES `cart_rules` (`id`) ON DELETE CASCADE, CONSTRAINT `cart_rule_channels_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cart_rule_coupon_usage`; CREATE TABLE `cart_rule_coupon_usage` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `times_used` int NOT NULL DEFAULT '0', `cart_rule_coupon_id` int unsigned NOT NULL, `customer_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `cart_rule_coupon_usage_cart_rule_coupon_id_foreign` (`cart_rule_coupon_id`), KEY `cart_rule_coupon_usage_customer_id_foreign` (`customer_id`), CONSTRAINT `cart_rule_coupon_usage_cart_rule_coupon_id_foreign` FOREIGN KEY (`cart_rule_coupon_id`) REFERENCES `cart_rule_coupons` (`id`) ON DELETE CASCADE, CONSTRAINT `cart_rule_coupon_usage_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cart_rule_coupons`; CREATE TABLE `cart_rule_coupons` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `usage_limit` int unsigned NOT NULL DEFAULT '0', `usage_per_customer` int unsigned NOT NULL DEFAULT '0', `times_used` int unsigned NOT NULL DEFAULT '0', `type` int unsigned NOT NULL DEFAULT '0', `is_primary` tinyint(1) NOT NULL DEFAULT '0', `expired_at` date DEFAULT NULL, `cart_rule_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `cart_rule_coupons_cart_rule_id_foreign` (`cart_rule_id`), CONSTRAINT `cart_rule_coupons_cart_rule_id_foreign` FOREIGN KEY (`cart_rule_id`) REFERENCES `cart_rules` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cart_rule_customer_groups`; CREATE TABLE `cart_rule_customer_groups` ( `cart_rule_id` int unsigned NOT NULL, `customer_group_id` int unsigned NOT NULL, PRIMARY KEY (`cart_rule_id`,`customer_group_id`), KEY `cart_rule_customer_groups_customer_group_id_foreign` (`customer_group_id`), CONSTRAINT `cart_rule_customer_groups_cart_rule_id_foreign` FOREIGN KEY (`cart_rule_id`) REFERENCES `cart_rules` (`id`) ON DELETE CASCADE, CONSTRAINT `cart_rule_customer_groups_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cart_rule_customers`; CREATE TABLE `cart_rule_customers` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `times_used` bigint unsigned NOT NULL DEFAULT '0', `cart_rule_id` int unsigned NOT NULL, `customer_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `cart_rule_customers_cart_rule_id_foreign` (`cart_rule_id`), KEY `cart_rule_customers_customer_id_foreign` (`customer_id`), CONSTRAINT `cart_rule_customers_cart_rule_id_foreign` FOREIGN KEY (`cart_rule_id`) REFERENCES `cart_rules` (`id`) ON DELETE CASCADE, CONSTRAINT `cart_rule_customers_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cart_rule_translations`; CREATE TABLE `cart_rule_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `label` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `cart_rule_id` int unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `cart_rule_translations_cart_rule_id_locale_unique` (`cart_rule_id`,`locale`), CONSTRAINT `cart_rule_translations_cart_rule_id_foreign` FOREIGN KEY (`cart_rule_id`) REFERENCES `cart_rules` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cart_rules`; CREATE TABLE `cart_rules` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `starts_from` datetime DEFAULT NULL, `ends_till` datetime DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `coupon_type` int NOT NULL DEFAULT '1', `use_auto_generation` tinyint(1) NOT NULL DEFAULT '0', `usage_per_customer` int NOT NULL DEFAULT '0', `uses_per_coupon` int NOT NULL DEFAULT '0', `times_used` int unsigned NOT NULL DEFAULT '0', `condition_type` tinyint(1) NOT NULL DEFAULT '1', `conditions` json DEFAULT NULL, `end_other_rules` tinyint(1) NOT NULL DEFAULT '0', `uses_attribute_conditions` tinyint(1) NOT NULL DEFAULT '0', `action_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000', `discount_quantity` int NOT NULL DEFAULT '1', `discount_step` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1', `apply_to_shipping` tinyint(1) NOT NULL DEFAULT '0', `free_shipping` tinyint(1) NOT NULL DEFAULT '0', `sort_order` int unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cart_shipping_rates`; CREATE TABLE `cart_shipping_rates` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `carrier` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `carrier_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `method_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `method_description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` double DEFAULT '0', `base_price` double DEFAULT '0', `cart_address_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000', `base_discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000', `is_calculate_tax` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), KEY `cart_shipping_rates_cart_address_id_foreign` (`cart_address_id`), CONSTRAINT `cart_shipping_rates_cart_address_id_foreign` FOREIGN KEY (`cart_address_id`) REFERENCES `addresses` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `catalog_rule_channels`; CREATE TABLE `catalog_rule_channels` ( `catalog_rule_id` int unsigned NOT NULL, `channel_id` int unsigned NOT NULL, PRIMARY KEY (`catalog_rule_id`,`channel_id`), KEY `catalog_rule_channels_channel_id_foreign` (`channel_id`), CONSTRAINT `catalog_rule_channels_catalog_rule_id_foreign` FOREIGN KEY (`catalog_rule_id`) REFERENCES `catalog_rules` (`id`) ON DELETE CASCADE, CONSTRAINT `catalog_rule_channels_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `catalog_rule_customer_groups`; CREATE TABLE `catalog_rule_customer_groups` ( `catalog_rule_id` int unsigned NOT NULL, `customer_group_id` int unsigned NOT NULL, PRIMARY KEY (`catalog_rule_id`,`customer_group_id`), KEY `catalog_rule_customer_groups_customer_group_id_foreign` (`customer_group_id`), CONSTRAINT `catalog_rule_customer_groups_catalog_rule_id_foreign` FOREIGN KEY (`catalog_rule_id`) REFERENCES `catalog_rules` (`id`) ON DELETE CASCADE, CONSTRAINT `catalog_rule_customer_groups_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `catalog_rule_product_prices`; CREATE TABLE `catalog_rule_product_prices` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `price` decimal(12,4) NOT NULL DEFAULT '0.0000', `rule_date` date NOT NULL, `starts_from` datetime DEFAULT NULL, `ends_till` datetime DEFAULT NULL, `product_id` int unsigned NOT NULL, `customer_group_id` int unsigned NOT NULL, `catalog_rule_id` int unsigned NOT NULL, `channel_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `catalog_rule_product_prices_product_id_foreign` (`product_id`), KEY `catalog_rule_product_prices_customer_group_id_foreign` (`customer_group_id`), KEY `catalog_rule_product_prices_catalog_rule_id_foreign` (`catalog_rule_id`), KEY `catalog_rule_product_prices_channel_id_foreign` (`channel_id`), CONSTRAINT `catalog_rule_product_prices_catalog_rule_id_foreign` FOREIGN KEY (`catalog_rule_id`) REFERENCES `catalog_rules` (`id`) ON DELETE CASCADE, CONSTRAINT `catalog_rule_product_prices_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, CONSTRAINT `catalog_rule_product_prices_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE CASCADE, CONSTRAINT `catalog_rule_product_prices_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `catalog_rule_products`; CREATE TABLE `catalog_rule_products` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `starts_from` datetime DEFAULT NULL, `ends_till` datetime DEFAULT NULL, `end_other_rules` tinyint(1) NOT NULL DEFAULT '0', `action_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000', `sort_order` int unsigned NOT NULL DEFAULT '0', `product_id` int unsigned NOT NULL, `customer_group_id` int unsigned NOT NULL, `catalog_rule_id` int unsigned NOT NULL, `channel_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `catalog_rule_products_product_id_foreign` (`product_id`), KEY `catalog_rule_products_customer_group_id_foreign` (`customer_group_id`), KEY `catalog_rule_products_catalog_rule_id_foreign` (`catalog_rule_id`), KEY `catalog_rule_products_channel_id_foreign` (`channel_id`), CONSTRAINT `catalog_rule_products_catalog_rule_id_foreign` FOREIGN KEY (`catalog_rule_id`) REFERENCES `catalog_rules` (`id`) ON DELETE CASCADE, CONSTRAINT `catalog_rule_products_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, CONSTRAINT `catalog_rule_products_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE CASCADE, CONSTRAINT `catalog_rule_products_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `catalog_rules`; CREATE TABLE `catalog_rules` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `starts_from` date DEFAULT NULL, `ends_till` date DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `condition_type` tinyint(1) NOT NULL DEFAULT '1', `conditions` json DEFAULT NULL, `end_other_rules` tinyint(1) NOT NULL DEFAULT '0', `action_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_amount` decimal(12,4) NOT NULL DEFAULT '0.0000', `sort_order` int unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `categories`; CREATE TABLE `categories` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `position` int NOT NULL DEFAULT '0', `image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `_lft` int unsigned NOT NULL DEFAULT '0', `_rgt` int unsigned NOT NULL DEFAULT '0', `parent_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `display_mode` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'products_and_description', `category_icon_path` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `additional` json DEFAULT NULL, `trendyol_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `lcw_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `default_weight` decimal(8,2) unsigned NOT NULL DEFAULT '0.50', PRIMARY KEY (`id`), KEY `categories__lft__rgt_parent_id_index` (`_lft`,`_rgt`,`parent_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1190 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `category_brands`; CREATE TABLE `category_brands` ( `category_id` int unsigned NOT NULL, `brand_id` int unsigned NOT NULL, KEY `category_brands_category_id_foreign` (`category_id`), KEY `category_brands_brand_id_foreign` (`brand_id`), CONSTRAINT `category_brands_brand_id_foreign` FOREIGN KEY (`brand_id`) REFERENCES `brands` (`id`) ON DELETE CASCADE, CONSTRAINT `category_brands_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `category_filterable_attributes`; CREATE TABLE `category_filterable_attributes` ( `category_id` int unsigned NOT NULL, `attribute_id` int unsigned NOT NULL, KEY `category_filterable_attributes_category_id_foreign` (`category_id`), KEY `category_filterable_attributes_attribute_id_foreign` (`attribute_id`), CONSTRAINT `category_filterable_attributes_attribute_id_foreign` FOREIGN KEY (`attribute_id`) REFERENCES `attributes` (`id`) ON DELETE CASCADE, CONSTRAINT `category_filterable_attributes_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `category_translations`; CREATE TABLE `category_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `meta_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `meta_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `meta_keywords` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `category_id` int unsigned NOT NULL, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `locale_id` int unsigned DEFAULT NULL, `url_path` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'maintained by database triggers', PRIMARY KEY (`id`), UNIQUE KEY `category_translations_category_id_slug_locale_unique` (`category_id`,`slug`,`locale`), KEY `category_translations_locale_id_foreign` (`locale_id`), CONSTRAINT `category_translations_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE, CONSTRAINT `category_translations_locale_id_foreign` FOREIGN KEY (`locale_id`) REFERENCES `locales` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=1480 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `channel_currencies`; CREATE TABLE `channel_currencies` ( `channel_id` int unsigned NOT NULL, `currency_id` int unsigned NOT NULL, PRIMARY KEY (`channel_id`,`currency_id`), KEY `channel_currencies_currency_id_foreign` (`currency_id`), CONSTRAINT `channel_currencies_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, CONSTRAINT `channel_currencies_currency_id_foreign` FOREIGN KEY (`currency_id`) REFERENCES `currencies` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `channel_inventory_sources`; CREATE TABLE `channel_inventory_sources` ( `channel_id` int unsigned NOT NULL, `inventory_source_id` int unsigned NOT NULL, UNIQUE KEY `channel_inventory_sources_channel_id_inventory_source_id_unique` (`channel_id`,`inventory_source_id`), KEY `channel_inventory_sources_inventory_source_id_foreign` (`inventory_source_id`), CONSTRAINT `channel_inventory_sources_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, CONSTRAINT `channel_inventory_sources_inventory_source_id_foreign` FOREIGN KEY (`inventory_source_id`) REFERENCES `inventory_sources` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `channel_locales`; CREATE TABLE `channel_locales` ( `channel_id` int unsigned NOT NULL, `locale_id` int unsigned NOT NULL, PRIMARY KEY (`channel_id`,`locale_id`), KEY `channel_locales_locale_id_foreign` (`locale_id`), CONSTRAINT `channel_locales_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, CONSTRAINT `channel_locales_locale_id_foreign` FOREIGN KEY (`locale_id`) REFERENCES `locales` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `channel_translations`; CREATE TABLE `channel_translations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `channel_id` int unsigned NOT NULL, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `home_page_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `footer_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `maintenance_mode_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `home_seo` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `channel_translations_channel_id_locale_unique` (`channel_id`,`locale`), KEY `channel_translations_locale_index` (`locale`), CONSTRAINT `channel_translations_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `channels`; CREATE TABLE `channels` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `timezone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `theme` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `hostname` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `favicon` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_maintenance_on` tinyint(1) NOT NULL DEFAULT '0', `allowed_ips` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `default_locale_id` int unsigned NOT NULL, `base_currency_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `root_category_id` int unsigned DEFAULT NULL, `promotion_category_id` int unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `channels_default_locale_id_foreign` (`default_locale_id`), KEY `channels_base_currency_id_foreign` (`base_currency_id`), KEY `channels_root_category_id_foreign` (`root_category_id`), KEY `channels_promotion_category_id_foreign` (`promotion_category_id`), CONSTRAINT `channels_base_currency_id_foreign` FOREIGN KEY (`base_currency_id`) REFERENCES `currencies` (`id`), CONSTRAINT `channels_default_locale_id_foreign` FOREIGN KEY (`default_locale_id`) REFERENCES `locales` (`id`), CONSTRAINT `channels_promotion_category_id_foreign` FOREIGN KEY (`promotion_category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL, CONSTRAINT `channels_root_category_id_foreign` FOREIGN KEY (`root_category_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cms_page_channels`; CREATE TABLE `cms_page_channels` ( `cms_page_id` int unsigned NOT NULL, `channel_id` int unsigned NOT NULL, UNIQUE KEY `cms_page_channels_cms_page_id_channel_id_unique` (`cms_page_id`,`channel_id`), KEY `cms_page_channels_channel_id_foreign` (`channel_id`), CONSTRAINT `cms_page_channels_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, CONSTRAINT `cms_page_channels_cms_page_id_foreign` FOREIGN KEY (`cms_page_id`) REFERENCES `cms_pages` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cms_page_translations`; CREATE TABLE `cms_page_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `page_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `url_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `html_content` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `meta_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `meta_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `meta_keywords` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `cms_page_id` int unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `cms_page_translations_cms_page_id_url_key_locale_unique` (`cms_page_id`,`url_key`,`locale`), CONSTRAINT `cms_page_translations_cms_page_id_foreign` FOREIGN KEY (`cms_page_id`) REFERENCES `cms_pages` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=210 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `cms_pages`; CREATE TABLE `cms_pages` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `layout` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `core_config`; CREATE TABLE `core_config` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `channel_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `locale_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `core_config_channel_id_foreign` (`channel_code`) ) ENGINE=InnoDB AUTO_INCREMENT=419 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `countries`; CREATE TABLE `countries` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=256 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `country_state_translations`; CREATE TABLE `country_state_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `default_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `country_state_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `country_state_translations_country_state_id_foreign` (`country_state_id`) ) ENGINE=InnoDB AUTO_INCREMENT=43559 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `country_states`; CREATE TABLE `country_states` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `country_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `default_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country_id` int unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `country_states_country_id_foreign` (`country_id`), CONSTRAINT `country_states_country_id_foreign` FOREIGN KEY (`country_id`) REFERENCES `countries` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=587 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `country_translations`; CREATE TABLE `country_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `country_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `country_translations_country_id_foreign` (`country_id`) ) ENGINE=InnoDB AUTO_INCREMENT=19397 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `currencies`; CREATE TABLE `currencies` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `symbol` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `currency_exchange_rates`; CREATE TABLE `currency_exchange_rates` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `rate` decimal(24,12) NOT NULL, `target_currency` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `currency_exchange_rates_target_currency_unique` (`target_currency`), CONSTRAINT `currency_exchange_rates_target_currency_foreign` FOREIGN KEY (`target_currency`) REFERENCES `currencies` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `customer_groups`; CREATE TABLE `customer_groups` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `is_user_defined` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `customer_groups_code_unique` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `customer_password_resets`; CREATE TABLE `customer_password_resets` ( `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, KEY `customer_password_resets_email_index` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `customer_social_accounts`; CREATE TABLE `customer_social_accounts` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `provider_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `provider_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `customer_social_accounts_provider_id_unique` (`provider_id`), KEY `customer_social_accounts_customer_id_foreign` (`customer_id`), CONSTRAINT `customer_social_accounts_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `customers`; CREATE TABLE `customers` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `first_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `last_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `gender` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `date_of_birth` date DEFAULT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint NOT NULL DEFAULT '1', `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `api_token` varchar(80) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_group_id` int unsigned DEFAULT NULL, `subscribed_to_news_letter` tinyint(1) NOT NULL DEFAULT '0', `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `is_verified` tinyint(1) NOT NULL DEFAULT '0', `is_suspended` tinyint unsigned NOT NULL DEFAULT '0', `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `notes` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `customers_email_unique` (`email`), UNIQUE KEY `customers_api_token_unique` (`api_token`), KEY `customers_customer_group_id_foreign` (`customer_group_id`), CONSTRAINT `customers_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=49 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `downloadable_link_purchased`; CREATE TABLE `downloadable_link_purchased` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `product_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `download_bought` int NOT NULL DEFAULT '0', `download_used` int NOT NULL DEFAULT '0', `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_id` int unsigned NOT NULL, `order_id` int unsigned NOT NULL, `order_item_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `download_canceled` int NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `downloadable_link_purchased_customer_id_foreign` (`customer_id`), KEY `downloadable_link_purchased_order_id_foreign` (`order_id`), KEY `downloadable_link_purchased_order_item_id_foreign` (`order_item_id`), CONSTRAINT `downloadable_link_purchased_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE, CONSTRAINT `downloadable_link_purchased_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE, CONSTRAINT `downloadable_link_purchased_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `inventory_sources`; CREATE TABLE `inventory_sources` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `contact_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `contact_email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `contact_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `contact_fax` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `state` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `city` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `street` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `postcode` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `priority` int NOT NULL DEFAULT '0', `latitude` decimal(10,5) DEFAULT NULL, `longitude` decimal(10,5) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `inventory_sources_code_unique` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `invoice_items`; CREATE TABLE `invoice_items` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int DEFAULT NULL, `price` decimal(12,4) NOT NULL DEFAULT '0.0000', `base_price` decimal(12,4) NOT NULL DEFAULT '0.0000', `total` decimal(12,4) NOT NULL DEFAULT '0.0000', `base_total` decimal(12,4) NOT NULL DEFAULT '0.0000', `tax_amount` decimal(12,4) DEFAULT '0.0000', `base_tax_amount` decimal(12,4) DEFAULT '0.0000', `product_id` int unsigned DEFAULT NULL, `product_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_item_id` int unsigned DEFAULT NULL, `invoice_id` int unsigned DEFAULT NULL, `parent_id` int unsigned DEFAULT NULL, `additional` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `discount_percent` decimal(12,4) DEFAULT '0.0000', `discount_amount` decimal(12,4) DEFAULT '0.0000', `base_discount_amount` decimal(12,4) DEFAULT '0.0000', PRIMARY KEY (`id`), KEY `invoice_items_invoice_id_foreign` (`invoice_id`), KEY `invoice_items_parent_id_foreign` (`parent_id`), CONSTRAINT `invoice_items_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE, CONSTRAINT `invoice_items_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `invoice_items` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `invoices`; CREATE TABLE `invoices` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `increment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_sent` tinyint(1) NOT NULL DEFAULT '0', `total_qty` int DEFAULT NULL, `base_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_total` decimal(12,4) DEFAULT '0.0000', `base_sub_total` decimal(12,4) DEFAULT '0.0000', `grand_total` decimal(12,4) DEFAULT '0.0000', `base_grand_total` decimal(12,4) DEFAULT '0.0000', `shipping_amount` decimal(12,4) DEFAULT '0.0000', `base_shipping_amount` decimal(12,4) DEFAULT '0.0000', `tax_amount` decimal(12,4) DEFAULT '0.0000', `base_tax_amount` decimal(12,4) DEFAULT '0.0000', `discount_amount` decimal(12,4) DEFAULT '0.0000', `base_discount_amount` decimal(12,4) DEFAULT '0.0000', `order_id` int unsigned DEFAULT NULL, `order_address_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `transaction_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reminders` int NOT NULL DEFAULT '0', `next_reminder_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `invoices_order_id_foreign` (`order_id`), KEY `invoices_order_address_id_foreign` (`order_address_id`), CONSTRAINT `invoices_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `jobs`; CREATE TABLE `jobs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `queue` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint unsigned NOT NULL, `reserved_at` int unsigned DEFAULT NULL, `available_at` int unsigned NOT NULL, `created_at` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `jobs_queue_index` (`queue`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `locales`; CREATE TABLE `locales` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `direction` enum('ltr','rtl') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'ltr', `locale_image` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), UNIQUE KEY `locales_code_unique` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketing_campaigns`; CREATE TABLE `marketing_campaigns` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `subject` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `mail_to` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `spooling` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_id` int unsigned DEFAULT NULL, `customer_group_id` int unsigned DEFAULT NULL, `marketing_template_id` int unsigned DEFAULT NULL, `marketing_event_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `marketing_campaigns_channel_id_foreign` (`channel_id`), KEY `marketing_campaigns_customer_group_id_foreign` (`customer_group_id`), KEY `marketing_campaigns_marketing_template_id_foreign` (`marketing_template_id`), KEY `marketing_campaigns_marketing_event_id_foreign` (`marketing_event_id`), CONSTRAINT `marketing_campaigns_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE SET NULL, CONSTRAINT `marketing_campaigns_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE SET NULL, CONSTRAINT `marketing_campaigns_marketing_event_id_foreign` FOREIGN KEY (`marketing_event_id`) REFERENCES `marketing_events` (`id`) ON DELETE SET NULL, CONSTRAINT `marketing_campaigns_marketing_template_id_foreign` FOREIGN KEY (`marketing_template_id`) REFERENCES `marketing_templates` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketing_events`; CREATE TABLE `marketing_events` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `date` date DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketing_templates`; CREATE TABLE `marketing_templates` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_invoice_items`; CREATE TABLE `marketplace_invoice_items` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `marketplace_invoice_id` int unsigned NOT NULL, `invoice_item_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `marketplace_invoice_items_marketplace_invoice_id_foreign` (`marketplace_invoice_id`), KEY `marketplace_invoice_items_invoice_item_id_foreign` (`invoice_item_id`), CONSTRAINT `marketplace_invoice_items_invoice_item_id_foreign` FOREIGN KEY (`invoice_item_id`) REFERENCES `invoice_items` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_invoice_items_marketplace_invoice_id_foreign` FOREIGN KEY (`marketplace_invoice_id`) REFERENCES `marketplace_invoices` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_invoices`; CREATE TABLE `marketplace_invoices` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `state` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_sent` tinyint(1) NOT NULL DEFAULT '0', `total_qty` int DEFAULT NULL, `sub_total` decimal(12,4) DEFAULT '0.0000', `base_sub_total` decimal(12,4) DEFAULT '0.0000', `grand_total` decimal(12,4) DEFAULT '0.0000', `base_grand_total` decimal(12,4) DEFAULT '0.0000', `shipping_amount` decimal(12,4) DEFAULT '0.0000', `base_shipping_amount` decimal(12,4) DEFAULT '0.0000', `tax_amount` decimal(12,4) DEFAULT '0.0000', `base_tax_amount` decimal(12,4) DEFAULT '0.0000', `discount_amount` decimal(12,4) DEFAULT '0.0000', `base_discount_amount` decimal(12,4) DEFAULT '0.0000', `invoice_id` int unsigned NOT NULL, `marketplace_order_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `marketplace_invoices_invoice_id_foreign` (`invoice_id`), KEY `marketplace_invoices_marketplace_order_id_foreign` (`marketplace_order_id`), CONSTRAINT `marketplace_invoices_invoice_id_foreign` FOREIGN KEY (`invoice_id`) REFERENCES `invoices` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_invoices_marketplace_order_id_foreign` FOREIGN KEY (`marketplace_order_id`) REFERENCES `marketplace_orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_order_items`; CREATE TABLE `marketplace_order_items` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `commission` decimal(12,4) DEFAULT '0.0000', `base_commission` decimal(12,4) DEFAULT '0.0000', `commission_invoiced` decimal(12,4) DEFAULT '0.0000', `base_commission_invoiced` decimal(12,4) DEFAULT '0.0000', `seller_total` decimal(12,4) DEFAULT '0.0000', `base_seller_total` decimal(12,4) DEFAULT '0.0000', `seller_total_invoiced` decimal(12,4) DEFAULT '0.0000', `base_seller_total_invoiced` decimal(12,4) DEFAULT '0.0000', `order_item_id` int unsigned NOT NULL, `marketplace_product_id` int unsigned DEFAULT NULL, `marketplace_order_id` int unsigned NOT NULL, `parent_id` int unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `marketplace_order_items_order_item_id_foreign` (`order_item_id`), KEY `marketplace_order_items_marketplace_product_id_foreign` (`marketplace_product_id`), KEY `marketplace_order_items_marketplace_order_id_foreign` (`marketplace_order_id`), KEY `marketplace_order_items_parent_id_foreign` (`parent_id`), CONSTRAINT `marketplace_order_items_marketplace_order_id_foreign` FOREIGN KEY (`marketplace_order_id`) REFERENCES `marketplace_orders` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_order_items_marketplace_product_id_foreign` FOREIGN KEY (`marketplace_product_id`) REFERENCES `marketplace_products` (`id`) ON DELETE SET NULL, CONSTRAINT `marketplace_order_items_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_order_items_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `marketplace_order_items` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_orders`; CREATE TABLE `marketplace_orders` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_withdrawal_requested` tinyint(1) NOT NULL DEFAULT '0', `seller_payout_status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `commission_percentage` decimal(12,4) DEFAULT '0.0000', `commission` decimal(12,4) DEFAULT '0.0000', `base_commission` decimal(12,4) DEFAULT '0.0000', `commission_invoiced` decimal(12,4) DEFAULT '0.0000', `base_commission_invoiced` decimal(12,4) DEFAULT '0.0000', `seller_total` decimal(12,4) DEFAULT '0.0000', `base_seller_total` decimal(12,4) DEFAULT '0.0000', `seller_total_invoiced` decimal(12,4) DEFAULT '0.0000', `base_seller_total_invoiced` decimal(12,4) DEFAULT '0.0000', `total_item_count` int DEFAULT NULL, `total_qty_ordered` int DEFAULT NULL, `grand_total` decimal(12,4) DEFAULT '0.0000', `base_grand_total` decimal(12,4) DEFAULT '0.0000', `grand_total_invoiced` decimal(12,4) DEFAULT '0.0000', `base_grand_total_invoiced` decimal(12,4) DEFAULT '0.0000', `grand_total_refunded` decimal(12,4) DEFAULT '0.0000', `base_grand_total_refunded` decimal(12,4) DEFAULT '0.0000', `sub_total` decimal(12,4) DEFAULT '0.0000', `base_sub_total` decimal(12,4) DEFAULT '0.0000', `sub_total_invoiced` decimal(12,4) DEFAULT '0.0000', `base_sub_total_invoiced` decimal(12,4) DEFAULT '0.0000', `sub_total_refunded` decimal(12,4) DEFAULT '0.0000', `base_sub_total_refunded` decimal(12,4) DEFAULT '0.0000', `discount_percent` decimal(12,4) DEFAULT '0.0000', `discount_amount` decimal(12,4) DEFAULT '0.0000', `base_discount_amount` decimal(12,4) DEFAULT '0.0000', `discount_amount_invoiced` decimal(12,4) DEFAULT '0.0000', `base_discount_amount_invoiced` decimal(12,4) DEFAULT '0.0000', `discount_refunded` decimal(12,4) DEFAULT '0.0000', `base_discount_refunded` decimal(12,4) DEFAULT '0.0000', `tax_amount` decimal(12,4) DEFAULT '0.0000', `base_tax_amount` decimal(12,4) DEFAULT '0.0000', `tax_amount_invoiced` decimal(12,4) DEFAULT '0.0000', `base_tax_amount_invoiced` decimal(12,4) DEFAULT '0.0000', `tax_amount_refunded` decimal(12,4) DEFAULT '0.0000', `base_tax_amount_refunded` decimal(12,4) DEFAULT '0.0000', `shipping_amount` decimal(12,4) DEFAULT '0.0000', `base_shipping_amount` decimal(12,4) DEFAULT '0.0000', `shipping_invoiced` decimal(12,4) DEFAULT '0.0000', `base_shipping_invoiced` decimal(12,4) DEFAULT '0.0000', `shipping_refunded` decimal(12,4) DEFAULT '0.0000', `base_shipping_refunded` decimal(12,4) DEFAULT '0.0000', `marketplace_seller_id` int unsigned NOT NULL, `order_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `marketplace_orders_marketplace_seller_id_order_id_unique` (`marketplace_seller_id`,`order_id`), KEY `marketplace_orders_order_id_foreign` (`order_id`), CONSTRAINT `marketplace_orders_marketplace_seller_id_foreign` FOREIGN KEY (`marketplace_seller_id`) REFERENCES `marketplace_sellers` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_orders_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_product_flag_reasons`; CREATE TABLE `marketplace_product_flag_reasons` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `reason` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_product_flags`; CREATE TABLE `marketplace_product_flags` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `marketplace_product_flags_product_id_foreign` (`product_id`), CONSTRAINT `marketplace_product_flags_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_product_images`; CREATE TABLE `marketplace_product_images` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `marketplace_product_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `marketplace_product_images_marketplace_product_id_foreign` (`marketplace_product_id`), CONSTRAINT `marketplace_product_images_marketplace_product_id_foreign` FOREIGN KEY (`marketplace_product_id`) REFERENCES `marketplace_products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_product_videos`; CREATE TABLE `marketplace_product_videos` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `marketplace_product_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `mp_products_video_foreign` (`marketplace_product_id`), CONSTRAINT `mp_products_video_foreign` FOREIGN KEY (`marketplace_product_id`) REFERENCES `marketplace_products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_products`; CREATE TABLE `marketplace_products` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `condition` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` double NOT NULL DEFAULT '0', `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `is_approved` tinyint(1) DEFAULT NULL, `is_owner` tinyint(1) NOT NULL DEFAULT '0', `parent_id` int unsigned DEFAULT NULL, `product_id` int unsigned NOT NULL, `marketplace_seller_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `marketplace_products_marketplace_seller_id_product_id_unique` (`marketplace_seller_id`,`product_id`), KEY `marketplace_products_product_id_foreign` (`product_id`), KEY `marketplace_products_parent_id_foreign` (`parent_id`), CONSTRAINT `marketplace_products_marketplace_seller_id_foreign` FOREIGN KEY (`marketplace_seller_id`) REFERENCES `marketplace_sellers` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_products_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `marketplace_products` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_products_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_refund_items`; CREATE TABLE `marketplace_refund_items` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `marketplace_refund_id` int unsigned NOT NULL, `refund_item_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `marketplace_refund_items_marketplace_refund_id_foreign` (`marketplace_refund_id`), KEY `marketplace_refund_items_refund_item_id_foreign` (`refund_item_id`), CONSTRAINT `marketplace_refund_items_marketplace_refund_id_foreign` FOREIGN KEY (`marketplace_refund_id`) REFERENCES `marketplace_refunds` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_refund_items_refund_item_id_foreign` FOREIGN KEY (`refund_item_id`) REFERENCES `refund_items` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_refunds`; CREATE TABLE `marketplace_refunds` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `increment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_sent` tinyint(1) NOT NULL DEFAULT '0', `total_qty` int DEFAULT NULL, `adjustment_refund` decimal(12,4) DEFAULT '0.0000', `base_adjustment_refund` decimal(12,4) DEFAULT '0.0000', `adjustment_fee` decimal(12,4) DEFAULT '0.0000', `base_adjustment_fee` decimal(12,4) DEFAULT '0.0000', `sub_total` decimal(12,4) DEFAULT '0.0000', `base_sub_total` decimal(12,4) DEFAULT '0.0000', `grand_total` decimal(12,4) DEFAULT '0.0000', `base_grand_total` decimal(12,4) DEFAULT '0.0000', `shipping_amount` decimal(12,4) DEFAULT '0.0000', `base_shipping_amount` decimal(12,4) DEFAULT '0.0000', `tax_amount` decimal(12,4) DEFAULT '0.0000', `base_tax_amount` decimal(12,4) DEFAULT '0.0000', `discount_percent` decimal(12,4) DEFAULT '0.0000', `discount_amount` decimal(12,4) DEFAULT '0.0000', `base_discount_amount` decimal(12,4) DEFAULT '0.0000', `refund_id` int unsigned DEFAULT NULL, `marketplace_order_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `marketplace_refunds_refund_id_foreign` (`refund_id`), KEY `marketplace_refunds_marketplace_order_id_foreign` (`marketplace_order_id`), CONSTRAINT `marketplace_refunds_marketplace_order_id_foreign` FOREIGN KEY (`marketplace_order_id`) REFERENCES `marketplace_orders` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_refunds_refund_id_foreign` FOREIGN KEY (`refund_id`) REFERENCES `refunds` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_seller_flag_reasons`; CREATE TABLE `marketplace_seller_flag_reasons` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `reason` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_seller_flags`; CREATE TABLE `marketplace_seller_flags` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `reason` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `seller_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `marketplace_seller_flags_seller_id_foreign` (`seller_id`), CONSTRAINT `marketplace_seller_flags_seller_id_foreign` FOREIGN KEY (`seller_id`) REFERENCES `marketplace_sellers` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_seller_reviews`; CREATE TABLE `marketplace_seller_reviews` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `rating` int NOT NULL, `comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `marketplace_seller_id` int unsigned NOT NULL, `customer_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `marketplace_seller_reviews_marketplace_seller_id_foreign` (`marketplace_seller_id`), KEY `marketplace_seller_reviews_customer_id_foreign` (`customer_id`), CONSTRAINT `marketplace_seller_reviews_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_seller_reviews_marketplace_seller_id_foreign` FOREIGN KEY (`marketplace_seller_id`) REFERENCES `marketplace_sellers` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_sellers`; CREATE TABLE `marketplace_sellers` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `is_approved` tinyint(1) NOT NULL DEFAULT '0', `shop_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `banner` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tax_vat` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `meta_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `meta_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `meta_keywords` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `address1` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address2` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `postcode` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `return_policy` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `shipping_policy` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `privacy_policy` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `twitter` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `facebook` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `youtube` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `instagram` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `skype` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `linked_in` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pinterest` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `commission_enable` tinyint(1) NOT NULL DEFAULT '0', `commission_percentage` decimal(12,4) DEFAULT '0.0000', `min_order_amount` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `google_analytics_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `profile_background` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_attribute_id` int unsigned DEFAULT NULL, `weight_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00', PRIMARY KEY (`id`), UNIQUE KEY `marketplace_sellers_url_unique` (`url`), UNIQUE KEY `marketplace_sellers_customer_id_unique` (`customer_id`), CONSTRAINT `marketplace_sellers_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_shipment_items`; CREATE TABLE `marketplace_shipment_items` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `marketplace_shipment_id` int unsigned NOT NULL, `shipment_item_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `marketplace_shipment_items_marketplace_shipment_id_foreign` (`marketplace_shipment_id`), KEY `marketplace_shipment_items_shipment_item_id_foreign` (`shipment_item_id`), CONSTRAINT `marketplace_shipment_items_marketplace_shipment_id_foreign` FOREIGN KEY (`marketplace_shipment_id`) REFERENCES `marketplace_shipments` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_shipment_items_shipment_item_id_foreign` FOREIGN KEY (`shipment_item_id`) REFERENCES `shipment_items` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_shipments`; CREATE TABLE `marketplace_shipments` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `total_qty` int DEFAULT NULL, `shipment_id` int unsigned NOT NULL, `marketplace_order_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `marketplace_shipments_shipment_id_foreign` (`shipment_id`), KEY `marketplace_shipments_marketplace_order_id_foreign` (`marketplace_order_id`), CONSTRAINT `marketplace_shipments_marketplace_order_id_foreign` FOREIGN KEY (`marketplace_order_id`) REFERENCES `marketplace_orders` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_shipments_shipment_id_foreign` FOREIGN KEY (`shipment_id`) REFERENCES `shipments` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `marketplace_transactions`; CREATE TABLE `marketplace_transactions` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `transaction_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `base_total` decimal(12,4) DEFAULT '0.0000', `marketplace_seller_id` int unsigned NOT NULL, `marketplace_order_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `marketplace_transactions_transaction_id_unique` (`transaction_id`), KEY `marketplace_transactions_marketplace_seller_id_foreign` (`marketplace_seller_id`), KEY `marketplace_transactions_marketplace_order_id_foreign` (`marketplace_order_id`), CONSTRAINT `marketplace_transactions_marketplace_order_id_foreign` FOREIGN KEY (`marketplace_order_id`) REFERENCES `marketplace_orders` (`id`) ON DELETE CASCADE, CONSTRAINT `marketplace_transactions_marketplace_seller_id_foreign` FOREIGN KEY (`marketplace_seller_id`) REFERENCES `marketplace_sellers` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `migrations`; CREATE TABLE `migrations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=251 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `mp_product_downloadable_link_translations`; CREATE TABLE `mp_product_downloadable_link_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `mp_product_downloadable_link_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `mp_link_translations_link_id_foreign` (`mp_product_downloadable_link_id`), CONSTRAINT `mp_link_translations_link_id_foreign` FOREIGN KEY (`mp_product_downloadable_link_id`) REFERENCES `mp_product_downloadable_links` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `mp_product_downloadable_links`; CREATE TABLE `mp_product_downloadable_links` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `price` decimal(12,4) NOT NULL DEFAULT '0.0000', `sample_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sample_file` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sample_file_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sample_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `downloads` int NOT NULL DEFAULT '0', `sort_order` int DEFAULT NULL, `product_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `mp_product_downloadable_links_product_id_foreign` (`product_id`), CONSTRAINT `mp_product_downloadable_links_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `marketplace_products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `mp_product_downloadable_sample_translations`; CREATE TABLE `mp_product_downloadable_sample_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `mp_product_downloadable_sample_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `mp_sample_translations_sample_id_foreign` (`mp_product_downloadable_sample_id`), CONSTRAINT `mp_sample_translations_sample_id_foreign` FOREIGN KEY (`mp_product_downloadable_sample_id`) REFERENCES `mp_product_downloadable_samples` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `mp_product_downloadable_samples`; CREATE TABLE `mp_product_downloadable_samples` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `sort_order` int DEFAULT NULL, `product_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `mp_product_downloadable_samples_product_id_foreign` (`product_id`), CONSTRAINT `mp_product_downloadable_samples_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `marketplace_products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `notifications`; CREATE TABLE `notifications` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `read` tinyint(1) NOT NULL DEFAULT '0', `order_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `notifications_order_id_foreign` (`order_id`), CONSTRAINT `notifications_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `order_brands`; CREATE TABLE `order_brands` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `order_id` int unsigned DEFAULT NULL, `order_item_id` int unsigned DEFAULT NULL, `product_id` int unsigned DEFAULT NULL, `brand` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `order_brands_order_id_foreign` (`order_id`), KEY `order_brands_order_item_id_foreign` (`order_item_id`), KEY `order_brands_product_id_foreign` (`product_id`), KEY `order_brands_brand_foreign` (`brand`), CONSTRAINT `order_brands_brand_foreign` FOREIGN KEY (`brand`) REFERENCES `attribute_options` (`id`) ON DELETE CASCADE, CONSTRAINT `order_brands_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE, CONSTRAINT `order_brands_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE, CONSTRAINT `order_brands_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `order_comments`; CREATE TABLE `order_comments` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `customer_notified` tinyint(1) NOT NULL DEFAULT '0', `order_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `order_comments_order_id_foreign` (`order_id`), CONSTRAINT `order_comments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `order_items`; CREATE TABLE `order_items` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `sku` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `weight` decimal(12,4) DEFAULT '0.0000', `total_weight` decimal(12,4) DEFAULT '0.0000', `qty_ordered` int DEFAULT '0', `qty_shipped` int DEFAULT '0', `qty_invoiced` int DEFAULT '0', `qty_canceled` int DEFAULT '0', `qty_refunded` int DEFAULT '0', `price` decimal(12,4) NOT NULL DEFAULT '0.0000', `base_price` decimal(12,4) NOT NULL DEFAULT '0.0000', `total` decimal(12,4) NOT NULL DEFAULT '0.0000', `base_total` decimal(12,4) NOT NULL DEFAULT '0.0000', `total_invoiced` decimal(12,4) NOT NULL DEFAULT '0.0000', `base_total_invoiced` decimal(12,4) NOT NULL DEFAULT '0.0000', `amount_refunded` decimal(12,4) NOT NULL DEFAULT '0.0000', `base_amount_refunded` decimal(12,4) NOT NULL DEFAULT '0.0000', `discount_percent` decimal(12,4) DEFAULT '0.0000', `discount_amount` decimal(12,4) DEFAULT '0.0000', `base_discount_amount` decimal(12,4) DEFAULT '0.0000', `discount_invoiced` decimal(12,4) DEFAULT '0.0000', `base_discount_invoiced` decimal(12,4) DEFAULT '0.0000', `discount_refunded` decimal(12,4) DEFAULT '0.0000', `base_discount_refunded` decimal(12,4) DEFAULT '0.0000', `tax_percent` decimal(12,4) DEFAULT '0.0000', `tax_amount` decimal(12,4) DEFAULT '0.0000', `base_tax_amount` decimal(12,4) DEFAULT '0.0000', `tax_amount_invoiced` decimal(12,4) DEFAULT '0.0000', `base_tax_amount_invoiced` decimal(12,4) DEFAULT '0.0000', `tax_amount_refunded` decimal(12,4) DEFAULT '0.0000', `base_tax_amount_refunded` decimal(12,4) DEFAULT '0.0000', `product_id` int unsigned DEFAULT NULL, `product_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` int unsigned DEFAULT NULL, `parent_id` int unsigned DEFAULT NULL, `additional` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `order_items_order_id_foreign` (`order_id`), KEY `order_items_parent_id_foreign` (`parent_id`), CONSTRAINT `order_items_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE, CONSTRAINT `order_items_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `order_payment`; CREATE TABLE `order_payment` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `method_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` int unsigned DEFAULT NULL, `additional` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `order_payment_order_id_foreign` (`order_id`), CONSTRAINT `order_payment_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `order_transactions`; CREATE TABLE `order_transactions` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `transaction_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `data` json DEFAULT NULL, `invoice_id` int unsigned NOT NULL, `order_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `amount` decimal(12,4) DEFAULT '0.0000', PRIMARY KEY (`id`), KEY `order_transactions_order_id_foreign` (`order_id`), CONSTRAINT `order_transactions_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `orders`; CREATE TABLE `orders` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `increment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_guest` tinyint(1) DEFAULT NULL, `customer_email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_first_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_last_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_company_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_vat_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `coupon_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_gift` tinyint(1) NOT NULL DEFAULT '0', `total_item_count` int DEFAULT NULL, `total_qty_ordered` int DEFAULT NULL, `base_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `grand_total` decimal(12,4) DEFAULT '0.0000', `base_grand_total` decimal(12,4) DEFAULT '0.0000', `grand_total_invoiced` decimal(12,4) DEFAULT '0.0000', `base_grand_total_invoiced` decimal(12,4) DEFAULT '0.0000', `grand_total_refunded` decimal(12,4) DEFAULT '0.0000', `base_grand_total_refunded` decimal(12,4) DEFAULT '0.0000', `sub_total` decimal(12,4) DEFAULT '0.0000', `base_sub_total` decimal(12,4) DEFAULT '0.0000', `sub_total_invoiced` decimal(12,4) DEFAULT '0.0000', `base_sub_total_invoiced` decimal(12,4) DEFAULT '0.0000', `sub_total_refunded` decimal(12,4) DEFAULT '0.0000', `base_sub_total_refunded` decimal(12,4) DEFAULT '0.0000', `discount_percent` decimal(12,4) DEFAULT '0.0000', `discount_amount` decimal(12,4) DEFAULT '0.0000', `base_discount_amount` decimal(12,4) DEFAULT '0.0000', `discount_invoiced` decimal(12,4) DEFAULT '0.0000', `base_discount_invoiced` decimal(12,4) DEFAULT '0.0000', `discount_refunded` decimal(12,4) DEFAULT '0.0000', `base_discount_refunded` decimal(12,4) DEFAULT '0.0000', `tax_amount` decimal(12,4) DEFAULT '0.0000', `base_tax_amount` decimal(12,4) DEFAULT '0.0000', `tax_amount_invoiced` decimal(12,4) DEFAULT '0.0000', `base_tax_amount_invoiced` decimal(12,4) DEFAULT '0.0000', `tax_amount_refunded` decimal(12,4) DEFAULT '0.0000', `base_tax_amount_refunded` decimal(12,4) DEFAULT '0.0000', `shipping_amount` decimal(12,4) DEFAULT '0.0000', `base_shipping_amount` decimal(12,4) DEFAULT '0.0000', `shipping_invoiced` decimal(12,4) DEFAULT '0.0000', `base_shipping_invoiced` decimal(12,4) DEFAULT '0.0000', `shipping_refunded` decimal(12,4) DEFAULT '0.0000', `base_shipping_refunded` decimal(12,4) DEFAULT '0.0000', `customer_id` int unsigned DEFAULT NULL, `customer_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_id` int unsigned DEFAULT NULL, `channel_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `cart_id` int DEFAULT NULL, `applied_cart_rule_ids` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_discount_amount` decimal(12,4) DEFAULT '0.0000', `base_shipping_discount_amount` decimal(12,4) DEFAULT '0.0000', PRIMARY KEY (`id`), UNIQUE KEY `orders_increment_id_unique` (`increment_id`), KEY `orders_customer_id_foreign` (`customer_id`), KEY `orders_channel_id_foreign` (`channel_id`), CONSTRAINT `orders_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE SET NULL, CONSTRAINT `orders_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `password_resets`; CREATE TABLE `password_resets` ( `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, KEY `password_resets_email_index` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `payment_requests`; CREATE TABLE `payment_requests` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `payment_amount` double DEFAULT NULL, `seller_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `seller_id` int unsigned DEFAULT NULL, `order_id` json DEFAULT NULL, `status` tinyint(1) DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `personal_access_tokens`; CREATE TABLE `personal_access_tokens` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `tokenable_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint unsigned NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `personal_access_tokens_token_unique` (`token`), KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_attribute_values`; CREATE TABLE `product_attribute_values` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `text_value` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `boolean_value` tinyint(1) DEFAULT NULL, `integer_value` int DEFAULT NULL, `float_value` decimal(12,4) DEFAULT NULL, `datetime_value` datetime DEFAULT NULL, `date_value` date DEFAULT NULL, `json_value` json DEFAULT NULL, `product_id` int unsigned NOT NULL, `attribute_id` int unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `chanel_locale_attribute_value_index_unique` (`channel`,`locale`,`attribute_id`,`product_id`), KEY `product_attribute_values_product_id_foreign` (`product_id`), KEY `product_attribute_values_attribute_id_foreign` (`attribute_id`), CONSTRAINT `product_attribute_values_attribute_id_foreign` FOREIGN KEY (`attribute_id`) REFERENCES `attributes` (`id`) ON DELETE CASCADE, CONSTRAINT `product_attribute_values_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=6688 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_bundle_option_products`; CREATE TABLE `product_bundle_option_products` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `qty` int NOT NULL DEFAULT '0', `is_user_defined` tinyint(1) NOT NULL DEFAULT '1', `is_default` tinyint(1) NOT NULL DEFAULT '0', `sort_order` int NOT NULL DEFAULT '0', `product_bundle_option_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `product_bundle_option_products_product_bundle_option_id_foreign` (`product_bundle_option_id`), KEY `product_bundle_option_products_product_id_foreign` (`product_id`), CONSTRAINT `product_bundle_option_products_product_bundle_option_id_foreign` FOREIGN KEY (`product_bundle_option_id`) REFERENCES `product_bundle_options` (`id`) ON DELETE CASCADE, CONSTRAINT `product_bundle_option_products_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_bundle_option_translations`; CREATE TABLE `product_bundle_option_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `label` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `product_bundle_option_id` int unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `product_bundle_option_translations_option_id_locale_unique` (`product_bundle_option_id`,`locale`), CONSTRAINT `product_bundle_option_translations_option_id_foreign` FOREIGN KEY (`product_bundle_option_id`) REFERENCES `product_bundle_options` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_bundle_options`; CREATE TABLE `product_bundle_options` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `is_required` tinyint(1) NOT NULL DEFAULT '1', `sort_order` int NOT NULL DEFAULT '0', `product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `product_bundle_options_product_id_foreign` (`product_id`), CONSTRAINT `product_bundle_options_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_categories`; CREATE TABLE `product_categories` ( `product_id` int unsigned NOT NULL, `category_id` int unsigned NOT NULL, KEY `product_categories_product_id_foreign` (`product_id`), KEY `product_categories_category_id_foreign` (`category_id`), CONSTRAINT `product_categories_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`) ON DELETE CASCADE, CONSTRAINT `product_categories_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_cross_sells`; CREATE TABLE `product_cross_sells` ( `parent_id` int unsigned NOT NULL, `child_id` int unsigned NOT NULL, KEY `product_cross_sells_parent_id_foreign` (`parent_id`), KEY `product_cross_sells_child_id_foreign` (`child_id`), CONSTRAINT `product_cross_sells_child_id_foreign` FOREIGN KEY (`child_id`) REFERENCES `products` (`id`) ON DELETE CASCADE, CONSTRAINT `product_cross_sells_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_customer_group_prices`; CREATE TABLE `product_customer_group_prices` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `qty` int NOT NULL DEFAULT '0', `value_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `value` decimal(12,4) NOT NULL DEFAULT '0.0000', `product_id` int unsigned NOT NULL, `customer_group_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `product_customer_group_prices_product_id_foreign` (`product_id`), KEY `product_customer_group_prices_customer_group_id_foreign` (`customer_group_id`), CONSTRAINT `product_customer_group_prices_customer_group_id_foreign` FOREIGN KEY (`customer_group_id`) REFERENCES `customer_groups` (`id`) ON DELETE CASCADE, CONSTRAINT `product_customer_group_prices_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_downloadable_link_translations`; CREATE TABLE `product_downloadable_link_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `product_downloadable_link_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `link_translations_link_id_foreign` (`product_downloadable_link_id`), CONSTRAINT `link_translations_link_id_foreign` FOREIGN KEY (`product_downloadable_link_id`) REFERENCES `product_downloadable_links` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_downloadable_links`; CREATE TABLE `product_downloadable_links` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `price` decimal(12,4) NOT NULL DEFAULT '0.0000', `sample_url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sample_file` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sample_file_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sample_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `downloads` int NOT NULL DEFAULT '0', `sort_order` int DEFAULT NULL, `product_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `product_downloadable_links_product_id_foreign` (`product_id`), CONSTRAINT `product_downloadable_links_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_downloadable_sample_translations`; CREATE TABLE `product_downloadable_sample_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `product_downloadable_sample_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `sample_translations_sample_id_foreign` (`product_downloadable_sample_id`), CONSTRAINT `sample_translations_sample_id_foreign` FOREIGN KEY (`product_downloadable_sample_id`) REFERENCES `product_downloadable_samples` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_downloadable_samples`; CREATE TABLE `product_downloadable_samples` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `url` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `file_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `sort_order` int DEFAULT NULL, `product_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `product_downloadable_samples_product_id_foreign` (`product_id`), CONSTRAINT `product_downloadable_samples_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_flat`; CREATE TABLE `product_flat` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `sku` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `product_number` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `url_key` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `new` tinyint(1) DEFAULT NULL, `featured` tinyint(1) DEFAULT NULL, `status` tinyint(1) DEFAULT NULL, `thumbnail` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `price` decimal(12,4) DEFAULT NULL, `cost` decimal(12,4) DEFAULT NULL, `special_price` decimal(12,4) DEFAULT NULL, `special_price_from` date DEFAULT NULL, `special_price_to` date DEFAULT NULL, `weight` decimal(12,4) DEFAULT NULL, `color` int DEFAULT NULL, `color_label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `size` int DEFAULT NULL, `size_label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` datetime DEFAULT NULL, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` int unsigned NOT NULL, `updated_at` datetime DEFAULT NULL, `parent_id` int unsigned DEFAULT NULL, `visible_individually` tinyint(1) DEFAULT NULL, `min_price` decimal(12,4) DEFAULT NULL, `max_price` decimal(12,4) DEFAULT NULL, `short_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `meta_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `meta_keywords` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `meta_description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `width` decimal(12,4) DEFAULT NULL, `height` decimal(12,4) DEFAULT NULL, `depth` decimal(12,4) DEFAULT NULL, `TrendyolBrend` int DEFAULT NULL, `TrendyolBrend_label` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `brand_id` int unsigned DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `product_flat_unique_index` (`product_id`,`channel`,`locale`), KEY `product_flat_parent_id_foreign` (`parent_id`), KEY `product_flat_brand_id_foreign` (`brand_id`), CONSTRAINT `product_flat_brand_id_foreign` FOREIGN KEY (`brand_id`) REFERENCES `brands` (`id`) ON DELETE SET NULL, CONSTRAINT `product_flat_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `product_flat` (`id`) ON DELETE CASCADE, CONSTRAINT `product_flat_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=389 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_grouped_products`; CREATE TABLE `product_grouped_products` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `qty` int NOT NULL DEFAULT '0', `sort_order` int NOT NULL DEFAULT '0', `product_id` int unsigned NOT NULL, `associated_product_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `product_grouped_products_product_id_foreign` (`product_id`), KEY `product_grouped_products_associated_product_id_foreign` (`associated_product_id`), CONSTRAINT `product_grouped_products_associated_product_id_foreign` FOREIGN KEY (`associated_product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE, CONSTRAINT `product_grouped_products_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_images`; CREATE TABLE `product_images` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` int unsigned NOT NULL, `position` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `product_images_product_id_foreign` (`product_id`), CONSTRAINT `product_images_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=336 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_inventories`; CREATE TABLE `product_inventories` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `qty` int NOT NULL DEFAULT '0', `product_id` int unsigned NOT NULL, `inventory_source_id` int unsigned NOT NULL, `vendor_id` int NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `product_source_vendor_index_unique` (`product_id`,`inventory_source_id`,`vendor_id`), KEY `product_inventories_inventory_source_id_foreign` (`inventory_source_id`), CONSTRAINT `product_inventories_inventory_source_id_foreign` FOREIGN KEY (`inventory_source_id`) REFERENCES `inventory_sources` (`id`) ON DELETE CASCADE, CONSTRAINT `product_inventories_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=123 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_ordered_inventories`; CREATE TABLE `product_ordered_inventories` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `qty` int NOT NULL DEFAULT '0', `product_id` int unsigned NOT NULL, `channel_id` int unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `product_ordered_inventories_product_id_channel_id_unique` (`product_id`,`channel_id`), KEY `product_ordered_inventories_channel_id_foreign` (`channel_id`), CONSTRAINT `product_ordered_inventories_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, CONSTRAINT `product_ordered_inventories_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_relations`; CREATE TABLE `product_relations` ( `parent_id` int unsigned NOT NULL, `child_id` int unsigned NOT NULL, KEY `product_relations_parent_id_foreign` (`parent_id`), KEY `product_relations_child_id_foreign` (`child_id`), CONSTRAINT `product_relations_child_id_foreign` FOREIGN KEY (`child_id`) REFERENCES `products` (`id`) ON DELETE CASCADE, CONSTRAINT `product_relations_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_review_images`; CREATE TABLE `product_review_images` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `review_id` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `product_review_images_review_id_foreign` (`review_id`), CONSTRAINT `product_review_images_review_id_foreign` FOREIGN KEY (`review_id`) REFERENCES `product_reviews` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_reviews`; CREATE TABLE `product_reviews` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `rating` int NOT NULL, `comment` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_id` int unsigned NOT NULL, `customer_id` int DEFAULT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`id`), KEY `product_reviews_product_id_foreign` (`product_id`), KEY `product_reviews_customer_id_foreign` (`customer_id`), CONSTRAINT `product_reviews_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_super_attributes`; CREATE TABLE `product_super_attributes` ( `product_id` int unsigned NOT NULL, `attribute_id` int unsigned NOT NULL, KEY `product_super_attributes_product_id_foreign` (`product_id`), KEY `product_super_attributes_attribute_id_foreign` (`attribute_id`), CONSTRAINT `product_super_attributes_attribute_id_foreign` FOREIGN KEY (`attribute_id`) REFERENCES `attributes` (`id`) ON DELETE RESTRICT, CONSTRAINT `product_super_attributes_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_up_sells`; CREATE TABLE `product_up_sells` ( `parent_id` int unsigned NOT NULL, `child_id` int unsigned NOT NULL, KEY `product_up_sells_parent_id_foreign` (`parent_id`), KEY `product_up_sells_child_id_foreign` (`child_id`), CONSTRAINT `product_up_sells_child_id_foreign` FOREIGN KEY (`child_id`) REFERENCES `products` (`id`) ON DELETE CASCADE, CONSTRAINT `product_up_sells_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `product_videos`; CREATE TABLE `product_videos` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `product_id` int unsigned NOT NULL, `position` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `product_videos_product_id_foreign` (`product_id`), CONSTRAINT `product_videos_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `products`; CREATE TABLE `products` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `sku` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `parent_id` int unsigned DEFAULT NULL, `attribute_family_id` int unsigned DEFAULT NULL, `additional` json DEFAULT NULL, `brand_id` int unsigned DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `products_sku_unique` (`sku`), KEY `products_attribute_family_id_foreign` (`attribute_family_id`), KEY `products_parent_id_foreign` (`parent_id`), KEY `products_brand_id_foreign` (`brand_id`), CONSTRAINT `products_attribute_family_id_foreign` FOREIGN KEY (`attribute_family_id`) REFERENCES `attribute_families` (`id`) ON DELETE RESTRICT, CONSTRAINT `products_brand_id_foreign` FOREIGN KEY (`brand_id`) REFERENCES `brands` (`id`) ON DELETE SET NULL, CONSTRAINT `products_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=525 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `refund_items`; CREATE TABLE `refund_items` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int DEFAULT NULL, `price` decimal(12,4) NOT NULL DEFAULT '0.0000', `base_price` decimal(12,4) NOT NULL DEFAULT '0.0000', `total` decimal(12,4) NOT NULL DEFAULT '0.0000', `base_total` decimal(12,4) NOT NULL DEFAULT '0.0000', `tax_amount` decimal(12,4) DEFAULT '0.0000', `base_tax_amount` decimal(12,4) DEFAULT '0.0000', `discount_percent` decimal(12,4) DEFAULT '0.0000', `discount_amount` decimal(12,4) DEFAULT '0.0000', `base_discount_amount` decimal(12,4) DEFAULT '0.0000', `product_id` int unsigned DEFAULT NULL, `product_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_item_id` int unsigned DEFAULT NULL, `refund_id` int unsigned DEFAULT NULL, `parent_id` int unsigned DEFAULT NULL, `additional` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `refund_items_order_item_id_foreign` (`order_item_id`), KEY `refund_items_refund_id_foreign` (`refund_id`), KEY `refund_items_parent_id_foreign` (`parent_id`), CONSTRAINT `refund_items_order_item_id_foreign` FOREIGN KEY (`order_item_id`) REFERENCES `order_items` (`id`) ON DELETE CASCADE, CONSTRAINT `refund_items_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `refund_items` (`id`) ON DELETE CASCADE, CONSTRAINT `refund_items_refund_id_foreign` FOREIGN KEY (`refund_id`) REFERENCES `refunds` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `refunds`; CREATE TABLE `refunds` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `increment_id` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email_sent` tinyint(1) NOT NULL DEFAULT '0', `total_qty` int DEFAULT NULL, `base_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_currency_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `adjustment_refund` decimal(12,4) DEFAULT '0.0000', `base_adjustment_refund` decimal(12,4) DEFAULT '0.0000', `adjustment_fee` decimal(12,4) DEFAULT '0.0000', `base_adjustment_fee` decimal(12,4) DEFAULT '0.0000', `sub_total` decimal(12,4) DEFAULT '0.0000', `base_sub_total` decimal(12,4) DEFAULT '0.0000', `grand_total` decimal(12,4) DEFAULT '0.0000', `base_grand_total` decimal(12,4) DEFAULT '0.0000', `shipping_amount` decimal(12,4) DEFAULT '0.0000', `base_shipping_amount` decimal(12,4) DEFAULT '0.0000', `tax_amount` decimal(12,4) DEFAULT '0.0000', `base_tax_amount` decimal(12,4) DEFAULT '0.0000', `discount_percent` decimal(12,4) DEFAULT '0.0000', `discount_amount` decimal(12,4) DEFAULT '0.0000', `base_discount_amount` decimal(12,4) DEFAULT '0.0000', `order_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `refunds_order_id_foreign` (`order_id`), CONSTRAINT `refunds_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `roles`; CREATE TABLE `roles` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `permission_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `permissions` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `seller_brands`; CREATE TABLE `seller_brands` ( `seller_id` int unsigned NOT NULL, `brand_id` int unsigned NOT NULL, KEY `seller_brands_seller_id_foreign` (`seller_id`), KEY `seller_brands_brand_id_foreign` (`brand_id`), CONSTRAINT `seller_brands_brand_id_foreign` FOREIGN KEY (`brand_id`) REFERENCES `brands` (`id`) ON DELETE CASCADE, CONSTRAINT `seller_brands_seller_id_foreign` FOREIGN KEY (`seller_id`) REFERENCES `marketplace_sellers` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `seller_categories`; CREATE TABLE `seller_categories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `seller_id` int unsigned NOT NULL, `categories` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `shipment_items`; CREATE TABLE `shipment_items` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sku` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int DEFAULT NULL, `weight` int DEFAULT NULL, `price` decimal(12,4) DEFAULT '0.0000', `base_price` decimal(12,4) DEFAULT '0.0000', `total` decimal(12,4) DEFAULT '0.0000', `base_total` decimal(12,4) DEFAULT '0.0000', `product_id` int unsigned DEFAULT NULL, `product_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_item_id` int unsigned DEFAULT NULL, `shipment_id` int unsigned NOT NULL, `additional` json DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `shipment_items_shipment_id_foreign` (`shipment_id`), CONSTRAINT `shipment_items_shipment_id_foreign` FOREIGN KEY (`shipment_id`) REFERENCES `shipments` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `shipments`; CREATE TABLE `shipments` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `status` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `total_qty` int DEFAULT NULL, `total_weight` int DEFAULT NULL, `carrier_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `carrier_title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `track_number` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `email_sent` tinyint(1) NOT NULL DEFAULT '0', `customer_id` int unsigned DEFAULT NULL, `customer_type` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` int unsigned NOT NULL, `order_address_id` int unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `inventory_source_id` int unsigned DEFAULT NULL, `inventory_source_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `shipments_order_id_foreign` (`order_id`), KEY `shipments_inventory_source_id_foreign` (`inventory_source_id`), KEY `shipments_order_address_id_foreign` (`order_address_id`), CONSTRAINT `shipments_inventory_source_id_foreign` FOREIGN KEY (`inventory_source_id`) REFERENCES `inventory_sources` (`id`) ON DELETE SET NULL, CONSTRAINT `shipments_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `sliders`; CREATE TABLE `sliders` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `path` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `channel_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `slider_path` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `expired_at` date DEFAULT NULL, `sort_order` int unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `sliders_channel_id_foreign` (`channel_id`), CONSTRAINT `sliders_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `subscribers_list`; CREATE TABLE `subscribers_list` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `is_subscribed` tinyint(1) NOT NULL DEFAULT '0', `token` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `channel_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_id` int unsigned DEFAULT NULL, PRIMARY KEY (`id`), KEY `subscribers_list_channel_id_foreign` (`channel_id`), KEY `subscribers_list_customer_id_foreign` (`customer_id`), CONSTRAINT `subscribers_list_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, CONSTRAINT `subscribers_list_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE SET NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `tax_categories`; CREATE TABLE `tax_categories` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `tax_categories_code_unique` (`code`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `tax_categories_tax_rates`; CREATE TABLE `tax_categories_tax_rates` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `tax_category_id` int unsigned NOT NULL, `tax_rate_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `tax_map_index_unique` (`tax_category_id`,`tax_rate_id`), KEY `tax_categories_tax_rates_tax_rate_id_foreign` (`tax_rate_id`), CONSTRAINT `tax_categories_tax_rates_tax_category_id_foreign` FOREIGN KEY (`tax_category_id`) REFERENCES `tax_categories` (`id`) ON DELETE CASCADE, CONSTRAINT `tax_categories_tax_rates_tax_rate_id_foreign` FOREIGN KEY (`tax_rate_id`) REFERENCES `tax_rates` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `tax_rates`; CREATE TABLE `tax_rates` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `identifier` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `is_zip` tinyint(1) NOT NULL DEFAULT '0', `zip_code` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_from` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_to` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `country` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `tax_rate` decimal(12,4) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `tax_rates_identifier_unique` (`identifier`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `velocity_contents`; CREATE TABLE `velocity_contents` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `content_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` int unsigned DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `velocity_contents_translations`; CREATE TABLE `velocity_contents_translations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `content_id` int unsigned DEFAULT NULL, `title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `custom_title` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `custom_heading` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `page_link` varchar(500) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `link_target` tinyint(1) NOT NULL DEFAULT '0', `catalog_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `products` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `locale` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `velocity_contents_translations_content_id_foreign` (`content_id`), CONSTRAINT `velocity_contents_translations_content_id_foreign` FOREIGN KEY (`content_id`) REFERENCES `velocity_contents` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `velocity_customer_compare_products`; CREATE TABLE `velocity_customer_compare_products` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `product_flat_id` int unsigned NOT NULL, `customer_id` int unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `velocity_customer_compare_products_product_flat_id_foreign` (`product_flat_id`), KEY `velocity_customer_compare_products_customer_id_foreign` (`customer_id`), CONSTRAINT `velocity_customer_compare_products_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT `velocity_customer_compare_products_product_flat_id_foreign` FOREIGN KEY (`product_flat_id`) REFERENCES `product_flat` (`id`) ON DELETE CASCADE ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `velocity_meta_data`; CREATE TABLE `velocity_meta_data` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `home_page_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `footer_left_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `footer_middle_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `slider` tinyint(1) NOT NULL DEFAULT '0', `advertisement` json DEFAULT NULL, `sidebar_category_count` int NOT NULL DEFAULT '9', `featured_product_count` int NOT NULL DEFAULT '10', `new_products_count` int NOT NULL DEFAULT '10', `subscription_bar_content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_view_images` json DEFAULT NULL, `product_policy` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, `locale` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `channel` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, `header_content_count` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; DROP TABLE IF EXISTS `wishlist`; CREATE TABLE `wishlist` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `channel_id` int unsigned NOT NULL, `product_id` int unsigned NOT NULL, `customer_id` int unsigned NOT NULL, `item_options` json DEFAULT NULL, `moved_to_cart` date DEFAULT NULL, `shared` tinyint(1) DEFAULT NULL, `time_of_moving` date DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `additional` json DEFAULT NULL, PRIMARY KEY (`id`), KEY `wishlist_channel_id_foreign` (`channel_id`), KEY `wishlist_product_id_foreign` (`product_id`), KEY `wishlist_customer_id_foreign` (`customer_id`), CONSTRAINT `wishlist_channel_id_foreign` FOREIGN KEY (`channel_id`) REFERENCES `channels` (`id`) ON DELETE CASCADE, CONSTRAINT `wishlist_customer_id_foreign` FOREIGN KEY (`customer_id`) REFERENCES `customers` (`id`) ON DELETE CASCADE, CONSTRAINT `wishlist_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=DYNAMIC; INSERT INTO `addresses` (`id`, `address_type`, `customer_id`, `cart_id`, `order_id`, `first_name`, `last_name`, `gender`, `company_name`, `address1`, `address2`, `postcode`, `city`, `state`, `country`, `email`, `phone`, `vat_id`, `default_address`, `additional`, `created_at`, `updated_at`) VALUES (31, 'customer', 31, NULL, NULL, '', '', NULL, NULL, '7622 Witting Mountains\nSouth Ahmedstad, IN 80722', NULL, '06662-9379', 'Lake Lauryn', 'Minnesota', 'GD', NULL, '743-426-4502', NULL, 1, NULL, '2021-10-25 21:47:18', '2021-10-25 21:47:18'), (32, 'customer', 32, NULL, NULL, '', '', NULL, NULL, '74804 Christina Expressway Apt. 702\nNew Lucindachester, VT 69008-1221', NULL, '51040-3302', 'Port Rashadhaven', 'Hawaii', 'LK', NULL, '+1-972-673-0857', NULL, 0, NULL, '2021-10-25 21:47:18', '2021-10-25 21:47:18'), (33, 'customer', 33, NULL, NULL, '', '', NULL, NULL, '96294 Keith Haven Suite 988\nSchillermouth, NM 67963-3113', NULL, '30189-8628', 'Kovacektown', 'Utah', 'TT', NULL, '(816) 564-7928', NULL, 0, NULL, '2021-10-25 21:47:18', '2021-10-25 21:47:18'), (34, 'customer', 34, NULL, NULL, '', '', NULL, NULL, '850 Murray Neck\nEast Nonafurt, IL 01913-7129', NULL, '39334-0005', 'Goyetteville', 'Virginia', 'KW', NULL, '941-294-6764', NULL, 1, NULL, '2021-10-25 21:47:18', '2021-10-25 21:47:18'), (35, 'customer', 35, NULL, NULL, '', '', NULL, NULL, '446 Hilma Park Suite 206\nO\'Connerborough, UT 63497-8854', NULL, '76344', 'Lake Parker', 'Wyoming', 'RW', NULL, '458.492.9111', NULL, 0, NULL, '2021-10-25 21:47:18', '2021-10-25 21:47:18'), (36, 'customer', 36, NULL, NULL, '', '', NULL, NULL, '212 Morar Fork\nLake Wilmer, TX 18528-4446', NULL, '84680-7699', 'West Reilly', 'Idaho', 'YT', NULL, '+1-360-851-5481', NULL, 0, NULL, '2021-10-25 21:47:18', '2021-10-25 21:47:18'), (37, 'customer', 37, NULL, NULL, '', '', NULL, NULL, '608 Breitenberg Unions\nWest Bellehaven, PA 60656', NULL, '58633', 'Melynatown', 'Washington', 'EG', NULL, '+1.940.646.8730', NULL, 1, NULL, '2021-10-25 21:47:18', '2021-10-25 21:47:18'), (38, 'customer', 38, NULL, NULL, '', '', NULL, NULL, '9752 Annalise Hills Suite 257\nJordaneshire, WA 75828-5602', NULL, '72650-4989', 'West Leone', 'Arkansas', 'SZ', NULL, '(928) 342-8526', NULL, 1, NULL, '2021-10-25 21:47:18', '2021-10-25 21:47:18'), (39, 'customer', 39, NULL, NULL, '', '', NULL, NULL, '352 Durgan Cape\nJeffereymouth, ME 30311-9427', NULL, '40564-2187', 'Nataliachester', 'Alaska', 'HR', NULL, '(904) 501-8422', NULL, 1, NULL, '2021-10-25 21:47:18', '2021-10-25 21:47:18'), (40, 'customer', 40, NULL, NULL, '', '', NULL, NULL, '5554 Marvin Ways Suite 772\nSkilesfurt, OK 32010-8152', NULL, '18844', 'Devontehaven', 'West Virginia', 'FK', NULL, '1-937-421-6041', NULL, 0, NULL, '2021-10-25 21:47:18', '2021-10-25 21:47:18'), (42, 'customer', 44, NULL, NULL, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', NULL, '99363432211', '', 1, NULL, '2022-02-07 19:46:18', '2022-02-22 19:28:16'), (43, 'recipient', 44, NULL, NULL, 'serdar', 'serdar', NULL, NULL, 'recipient', NULL, NULL, 'recipient', NULL, NULL, NULL, '123123', NULL, 0, NULL, '2022-02-07 19:47:49', '2022-02-07 19:47:49'), (44, 'cart_billing', 44, 3, NULL, 'john', 'doe', NULL, NULL, 'H 23', NULL, '110092', 'noida', 'DL', 'Turkmenistan', 'john@webkul.com', '8802097347', NULL, 0, NULL, '2022-03-02 16:54:17', '2022-03-02 17:51:38'), (45, 'cart_shipping', 44, 3, NULL, 'john', 'doe', NULL, NULL, 'H 23', NULL, '110092', 'noida', 'DL', 'Turkmenistan', 'john@webkul.com', '8802097347', NULL, 0, NULL, '2022-03-02 16:54:17', '2022-03-02 17:51:38'), (46, 'order_shipping', 44, NULL, 1, 'john', 'doe', NULL, NULL, 'H 23', NULL, '110092', 'noida', 'DL', 'Turkmenistan', 'john@webkul.com', '8802097347', NULL, 0, NULL, '2022-03-03 11:48:22', '2022-03-03 11:48:22'), (47, 'order_billing', 44, NULL, 1, 'john', 'doe', NULL, NULL, 'H 23', NULL, '110092', 'noida', 'DL', 'Turkmenistan', 'john@webkul.com', '8802097347', NULL, 0, NULL, '2022-03-03 11:48:22', '2022-03-03 11:48:22'), (48, 'recipient', 47, NULL, NULL, 'Serdar', 'Dowran', NULL, NULL, 'recipient', NULL, NULL, 'recipient', NULL, NULL, NULL, '93432211', NULL, 0, NULL, '2022-03-04 14:55:33', '2022-03-04 14:55:33'), (49, 'cart_billing', 44, 5, NULL, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-09 13:13:28', '2022-03-18 15:29:01'), (50, 'cart_shipping', 44, 5, NULL, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-09 13:13:28', '2022-03-18 15:29:01'), (51, 'order_shipping', 44, NULL, 2, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 15:34:27', '2022-03-18 15:34:27'), (52, 'order_billing', 44, NULL, 2, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 15:34:27', '2022-03-18 15:34:27'), (53, 'cart_billing', 44, 7, NULL, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 16:12:52', '2022-03-18 16:12:52'), (54, 'cart_shipping', 44, 7, NULL, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 16:12:52', '2022-03-18 16:12:52'), (55, 'order_shipping', 44, NULL, 3, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 16:15:37', '2022-03-18 16:15:37'), (56, 'order_billing', 44, NULL, 3, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 16:15:37', '2022-03-18 16:15:37'), (57, 'cart_billing', 44, 9, NULL, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 16:49:28', '2022-03-18 16:49:28'), (58, 'cart_shipping', 44, 9, NULL, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 16:49:28', '2022-03-18 16:49:28'), (59, 'order_shipping', 44, NULL, 4, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 18:18:40', '2022-03-18 18:18:40'), (60, 'order_billing', 44, NULL, 4, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 18:18:40', '2022-03-18 18:18:40'), (61, 'cart_billing', 44, 12, NULL, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 18:26:29', '2022-03-18 18:26:29'), (62, 'cart_shipping', 44, 12, NULL, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 18:26:29', '2022-03-18 18:26:29'), (63, 'order_shipping', 44, NULL, 5, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 18:27:53', '2022-03-18 18:27:53'), (64, 'order_billing', 44, NULL, 5, 'Merdan', 'Muhammedow', NULL, 'TPS', 'Yubileyniy', NULL, '744400', 'Ashgabat', 'ASH', 'TM', 'digital.tps2018@gmail.com', '99363432211', '', 1, NULL, '2022-03-18 18:27:53', '2022-03-18 18:27:53'), (65, 'recipient', 48, NULL, NULL, 'Shohrat', 'Annamyradow', NULL, NULL, 'recipient', NULL, NULL, 'recipient', NULL, NULL, NULL, '65809755', NULL, 0, NULL, '2022-09-13 22:19:27', '2022-09-13 22:19:27'); INSERT INTO `admins` (`id`, `name`, `email`, `password`, `api_token`, `status`, `role_id`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'Example', 'admin@example.com', '$2y$10$SvfSIv835BDqaKL4lGsiUO9ZjvFa8f0ba87MRZkAJRPLiUikQsebG', 'Ao2JofV2uYggZJHYJhCXpGnKx9eYFqpVMrTbJOSFeNmI2YRmEfS4cT1Z1WSug5CVB4OkZBsIZKyjjkBp', 1, 1, NULL, '2021-11-10 19:52:23', '2021-11-10 19:52:23'); INSERT INTO `attribute_families` (`id`, `code`, `name`, `status`, `is_user_defined`) VALUES (1, 'default', 'Default Simple Product', 0, 1), (2, 'default_configurable', 'Default Configurable Product', 0, 1), (3, 'ayakgap', 'Ayakgap', 0, 1); INSERT INTO `attribute_group_mappings` (`attribute_id`, `attribute_group_id`, `position`) VALUES (1, 1, 1), (1, 6, 1), (1, 11, 1), (2, 1, 3), (2, 6, 3), (2, 11, 3), (3, 1, 4), (3, 6, 4), (3, 11, 4), (4, 1, 5), (4, 6, 5), (4, 11, 5), (5, 1, 6), (5, 6, 6), (5, 11, 6), (6, 1, 7), (6, 6, 7), (6, 11, 7), (7, 1, 8), (7, 6, 8), (7, 11, 8), (8, 1, 10), (8, 6, 10), (8, 11, 10), (9, 2, 1), (9, 7, 1), (9, 12, 1), (10, 2, 2), (10, 7, 2), (10, 12, 2), (11, 4, 1), (11, 9, 1), (11, 14, 1), (13, 4, 3), (13, 9, 2), (13, 14, 2), (14, 4, 4), (14, 9, 3), (14, 14, 3), (15, 4, 5), (15, 9, 4), (15, 14, 4), (16, 3, 1), (16, 8, 1), (16, 13, 1), (17, 3, 2), (17, 8, 2), (17, 13, 2), (22, 5, 4), (22, 10, 2), (22, 15, 1), (23, 7, 4), (23, 12, 3), (24, 7, 5), (24, 12, 4), (25, 7, 6), (25, 12, 5), (26, 1, 9), (26, 6, 9), (26, 11, 9), (27, 1, 2), (27, 6, 2), (27, 11, 2), (30, 7, 7), (30, 12, 6), (31, 12, 7); INSERT INTO `attribute_groups` (`id`, `name`, `position`, `is_user_defined`, `attribute_family_id`) VALUES (1, 'General', 1, 0, 1), (2, 'Description', 2, 0, 1), (3, 'Meta Description', 3, 0, 1), (4, 'Price', 4, 0, 1), (5, 'Shipping', 5, 0, 1), (6, 'General', 1, 0, 2), (7, 'Description', 2, 0, 2), (8, 'Meta Description', 3, 0, 2), (9, 'Price', 4, 0, 2), (10, 'Shipping', 5, 0, 2), (11, 'General', 1, 0, 3), (12, 'Description', 2, 0, 3), (13, 'Meta Description', 3, 0, 3), (14, 'Price', 4, 0, 3), (15, 'Shipping', 5, 0, 3); INSERT INTO `attribute_option_translations` (`id`, `locale`, `label`, `attribute_option_id`) VALUES (1, 'en', 'Red', 1), (2, 'en', 'Green', 2), (3, 'en', 'Yellow', 3), (4, 'en', 'Black', 4), (5, 'en', 'White', 5), (6, 'en', 'S', 6), (7, 'en', 'M', 7), (8, 'en', 'L', 8), (9, 'en', 'XL', 9), (38, 'tr', 'Select cinsiyet', 14), (39, 'tm', 'Select cinsiyet', 14), (40, 'ru', 'Select cinsiyet', 14), (41, 'tr', 'Erkek', 15), (42, 'tm', 'Erkek', 15), (43, 'ru', 'Erkek', 15), (44, 'tr', 'Kadin', 16), (45, 'tm', 'Kadin', 16), (46, 'ru', 'Kadin', 16), (47, 'tr', 'Cocuk', 17), (48, 'tm', 'Cocuk', 17), (49, 'ru', 'Cocuk', 17), (50, 'tr', 'Materya sec', 18), (51, 'tm', 'Materya sec', 18), (52, 'ru', 'Materya sec', 18), (53, 'tr', 'Sintetik', 19), (54, 'tm', 'Sintetik', 19), (55, 'ru', 'Sintetik', 19), (56, 'tr', 'Pagta', 20), (57, 'tm', 'Pagta', 20), (58, 'ru', 'Pagta', 20), (59, 'tr', 'frst', 21), (60, 'tm', 'frst', 21), (61, 'ru', 'frst', 21), (62, 'tr', 'iki', 22), (63, 'tm', 'iki', 22), (64, 'ru', 'iki', 22), (65, 'tr', 'S', 6), (66, 'tm', 'S', 6), (67, 'ru', 'S', 6), (68, 'tr', 'M', 7), (69, 'tm', 'M', 7), (70, 'ru', 'M', 7), (71, 'tr', 'L', 8), (72, 'tm', 'L', 8), (73, 'ru', 'L', 8), (74, 'tr', 'XL', 9), (75, 'tm', 'XL', 9), (76, 'ru', 'XL', 9), (77, 'tr', 'XS', 23), (78, 'tm', 'XS', 23), (79, 'ru', 'XS', 23), (80, 'tr', 'XXL', 24), (81, 'tm', 'XXL', 24), (82, 'ru', 'XXL', 24), (83, 'tr', 'Red', 1), (84, 'tm', 'Red', 1), (85, 'ru', 'Red', 1), (86, 'tr', 'Red', 2), (87, 'tm', 'Red', 2), (88, 'ru', 'Red', 2), (89, 'tr', 'Red', 3), (90, 'tm', 'Red', 3), (91, 'ru', 'Red', 3), (92, 'tr', 'Red', 4), (93, 'tm', 'Red', 4), (94, 'ru', 'Red', 4), (95, 'tr', 'Red', 5), (96, 'tm', 'Red', 5), (97, 'ru', 'Red', 5), (98, 'tr', 'Mor', 25), (99, 'tm', 'RedMor', 25), (100, 'ru', 'MorRed', 25), (101, 'tr', 'Red', 26), (102, 'tm', 'Red', 26), (103, 'ru', 'Red', 26), (104, 'tr', 'Red', 27), (105, 'tm', 'Red', 27), (106, 'ru', 'Red', 27); INSERT INTO `attribute_options` (`id`, `admin_name`, `sort_order`, `attribute_id`, `swatch_value`) VALUES (1, 'Red', 1, 23, NULL), (2, 'Green', 2, 23, NULL), (3, 'Yellow', 3, 23, NULL), (4, 'Black', 4, 23, NULL), (5, 'White', 5, 23, NULL), (6, 'S', 1, 24, NULL), (7, 'M', 2, 24, NULL), (8, 'L', 3, 24, NULL), (9, 'XL', 4, 24, NULL), (14, 'Select cinsiyet', 0, 30, NULL), (15, 'Erkek', 1, 30, NULL), (16, 'Kadin', 2, 30, NULL), (17, 'Cocuk', 3, 30, NULL), (18, 'Materya sec', 0, 31, NULL), (19, 'Sintetik', 1, 31, NULL), (20, 'Pagta', 2, 31, NULL), (21, 'frst', 1, 25, NULL), (22, 'iki', 2, 25, 'attribute_option/CgmRq93yvfUW0jO2WNm24dyDKMY8s4zNPr3AtmzV.png'), (23, 'XS', 5, 24, NULL), (24, 'XXL', 6, 24, NULL), (25, 'Mor', 6, 23, NULL), (26, 'Gri', 7, 23, NULL), (27, 'Siyah', 8, 23, NULL), (30, '126014587XXL', NULL, 1, NULL), (31, '24', NULL, 24, NULL), (32, 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, 2, NULL), (33, '89.99', NULL, 11, NULL), (34, '0', NULL, 22, NULL), (35, '1', NULL, 8, NULL), (36, '126014587XXL', NULL, 3, NULL), (37, '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, 9, NULL), (38, '
Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir bede', NULL, 10, NULL), (39, '
Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir bede', NULL, 10, NULL), (40, '
Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir bede', NULL, 10, NULL); INSERT INTO `attribute_translations` (`id`, `locale`, `name`, `attribute_id`) VALUES (1, 'en', 'SKU', 1), (2, 'en', 'Name', 2), (3, 'en', 'URL Key', 3), (4, 'en', 'Tax Category', 4), (5, 'en', 'New', 5), (6, 'en', 'Featured', 6), (7, 'en', 'Visible Individually', 7), (8, 'en', 'Status', 8), (9, 'en', 'Short Description', 9), (10, 'en', 'Description', 10), (11, 'en', 'Price', 11), (12, 'en', 'Cost', 12), (13, 'en', 'Special Price', 13), (14, 'en', 'Special Price From', 14), (15, 'en', 'Special Price To', 15), (16, 'en', 'Meta Description', 16), (17, 'en', 'Meta Keywords', 17), (18, 'en', 'Meta Description', 18), (19, 'en', 'Width', 19), (20, 'en', 'Height', 20), (21, 'en', 'Depth', 21), (22, 'en', 'Weight', 22), (23, 'en', 'Color', 23), (24, 'en', 'Size', 24), (25, 'en', 'Brand', 25), (26, 'en', 'Allow Guest Checkout', 26), (27, 'en', 'Product Number', 27), (48, 'tr', 'Cinsiyet', 30), (49, 'tm', 'Jynsy', 30), (50, 'ru', 'Cinsiyet', 30), (51, 'tr', 'Materya', 31), (52, 'tm', 'Materya', 31), (53, 'ru', 'Materya', 31), (54, 'tr', '', 25), (55, 'tm', '', 25), (56, 'ru', '', 25), (57, 'tr', '', 22), (58, 'tm', '', 22), (59, 'ru', '', 22), (60, 'tr', 'Beden', 24), (61, 'tm', 'Razmer', 24), (62, 'ru', 'Razmerka', 24), (63, 'tr', 'Renk', 23), (64, 'tm', 'Renki', 23), (65, 'ru', 'Svet', 23); INSERT INTO `attributes` (`id`, `code`, `admin_name`, `type`, `validation`, `position`, `is_required`, `is_unique`, `value_per_locale`, `value_per_channel`, `is_filterable`, `is_configurable`, `is_user_defined`, `is_visible_on_front`, `created_at`, `updated_at`, `swatch_type`, `use_in_flat`, `is_comparable`) VALUES (1, 'sku', 'SKU', 'text', NULL, 1, 1, 1, 0, 0, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (2, 'name', 'Name', 'text', NULL, 3, 1, 0, 1, 1, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 1), (3, 'url_key', 'URL Key', 'text', NULL, 4, 1, 1, 0, 0, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (4, 'tax_category_id', 'Tax Category', 'select', NULL, 5, 0, 0, 0, 1, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (5, 'new', 'New', 'boolean', NULL, 6, 0, 0, 0, 0, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (6, 'featured', 'Featured', 'boolean', NULL, 7, 0, 0, 0, 0, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (7, 'visible_individually', 'Visible Individually', 'boolean', NULL, 9, 1, 0, 0, 0, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (8, 'status', 'Status', 'boolean', NULL, 10, 1, 0, 0, 0, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (9, 'short_description', 'Short Description', 'textarea', NULL, 11, 1, 0, 1, 1, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (10, 'description', 'Description', 'textarea', NULL, 12, 1, 0, 1, 1, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 1), (11, 'price', 'Price', 'price', 'decimal', 13, 1, 0, 0, 0, 1, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 1), (12, 'cost', 'Cost', 'price', 'decimal', 14, 0, 0, 0, 1, 0, 0, 1, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (13, 'special_price', 'Special Price', 'price', 'decimal', 15, 0, 0, 0, 0, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (14, 'special_price_from', 'Special Price From', 'date', NULL, 16, 0, 0, 0, 1, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (15, 'special_price_to', 'Special Price To', 'date', NULL, 17, 0, 0, 0, 1, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (16, 'meta_title', 'Meta Title', 'textarea', NULL, 18, 0, 0, 1, 1, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (17, 'meta_keywords', 'Meta Keywords', 'textarea', NULL, 20, 0, 0, 1, 1, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (18, 'meta_description', 'Meta Description', 'textarea', NULL, 21, 0, 0, 1, 1, 0, 0, 1, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (19, 'length', 'Length', 'text', 'decimal', 22, 0, 0, 0, 0, 0, 0, 1, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (20, 'width', 'Width', 'text', 'decimal', 23, 0, 0, 0, 0, 0, 0, 1, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (21, 'height', 'Height', 'text', 'decimal', 24, 0, 0, 0, 0, 0, 0, 1, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (22, 'weight', 'Weight', 'text', 'decimal', 25, 0, 0, 0, 0, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-12-06 15:52:30', NULL, 0, 0), (23, 'color', 'Color', 'select', '', 26, 0, 0, 0, 0, 1, 1, 1, 0, '2021-11-10 19:52:22', '2022-01-22 15:19:54', 'dropdown', 1, 0), (24, 'size', 'Size', 'select', '', 27, 0, 0, 0, 0, 1, 1, 1, 0, '2021-11-10 19:52:22', '2022-01-08 11:46:11', 'dropdown', 1, 0), (25, 'brand', 'Brand', 'select', '', 28, 0, 0, 0, 0, 1, 0, 1, 1, '2021-11-10 19:52:22', '2021-11-15 18:17:31', 'image', 1, 0), (26, 'guest_checkout', 'Guest Checkout', 'boolean', NULL, 8, 1, 0, 0, 0, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (27, 'product_number', 'Product Number', 'text', NULL, 2, 0, 1, 0, 0, 0, 0, 0, 0, '2021-11-10 19:52:22', '2021-11-10 19:52:22', NULL, 1, 0), (30, 'cinsiyet', 'Cinsiyet', 'select', '', NULL, 0, 0, 0, 0, 0, 0, 1, 0, '2021-11-13 20:53:30', '2021-11-13 20:53:30', 'dropdown', 0, 0), (31, 'Materyal', 'Materya', 'select', '', NULL, 0, 0, 0, 0, 1, 0, 1, 1, '2021-11-13 20:55:32', '2021-11-13 20:55:32', 'dropdown', 0, 0); INSERT INTO `brands` (`id`, `code`, `name`, `position`, `image`, `status`, `created_at`, `updated_at`) VALUES (1, 'mavi', 'Mavi', 1, 'brand/1/nyzERxcdwzwoGqWiaEcKG3hYeNRIcuiCVrKotF8E.png', 1, '2022-01-27 19:06:48', '2022-01-27 19:06:48'), (2, 'lcw', 'LCW', 2, 'brand/2/ZIPY3Uyt4aMFzDxWgczy7IiWDyid2Faav9FMMqIF.png', 1, '2022-01-28 14:03:30', '2022-01-28 14:03:30'); INSERT INTO `cart` (`id`, `customer_email`, `customer_first_name`, `customer_last_name`, `shipping_method`, `coupon_code`, `is_gift`, `items_count`, `items_qty`, `exchange_rate`, `global_currency_code`, `base_currency_code`, `channel_currency_code`, `cart_currency_code`, `grand_total`, `base_grand_total`, `sub_total`, `base_sub_total`, `tax_total`, `base_tax_total`, `discount_amount`, `base_discount_amount`, `checkout_method`, `is_guest`, `is_active`, `conversion_time`, `customer_id`, `channel_id`, `created_at`, `updated_at`, `applied_cart_rule_ids`) VALUES (3, 'digital.tps2018@gmail.com', 'Merdan', 'Muhammedow', 'pickup_pickup', 'OFIS', 0, 1, 1.0000, NULL, 'TL', 'TL', 'TL', 'TMT', 185.3800, 102.9900, 161.9800, 89.9900, 0.0000, 0.0000, 48.6000, 27.0000, NULL, 0, 0, NULL, 44, 1, '2022-02-25 15:03:23', '2022-03-03 11:48:39', '1,3'), (5, 'digital.tps2018@gmail.com', 'Merdan', 'Muhammedow', 'pickup_pickup', 'OFIS', 0, 1, 3.0000, NULL, 'TL', 'TL', 'TL', 'TL', 389.9700, 389.9700, 269.9700, 269.9700, 27.0000, 27.0000, 27.0000, 27.0000, NULL, 0, 0, NULL, 44, 1, '2022-03-09 13:10:53', '2022-03-18 15:34:45', '1,3'), (7, 'digital.tps2018@gmail.com', 'Merdan', 'Muhammedow', 'pickup_pickup', NULL, 0, 1, 4.0000, NULL, 'TL', 'TL', 'TL', 'TL', 576.8600, 576.8600, 359.9600, 359.9600, 36.0000, 36.0000, -20.9000, -20.9000, NULL, 0, 0, NULL, 44, 1, '2022-03-18 16:10:54', '2022-03-18 16:15:54', '1,2'), (9, 'digital.tps2018@gmail.com', 'Merdan', 'Muhammedow', 'pickup_pickup', 'GIDIP', 0, 1, 3.0000, NULL, 'TL', 'TL', 'TL', 'TL', 356.9700, 356.9700, 269.9700, 269.9700, 27.0000, 27.0000, 60.0000, 60.0000, NULL, 0, 0, NULL, 44, 1, '2022-03-18 16:48:57', '2022-03-18 18:18:57', '4'), (12, 'digital.tps2018@gmail.com', 'Merdan', 'Muhammedow', 'pickup_pickup', 'GIDIP', 0, 1, 3.0000, NULL, 'TL', 'TL', 'TL', 'TL', 321.0000, 321.0000, 210.0000, 210.0000, 21.0000, 21.0000, 30.0000, 30.0000, NULL, 0, 0, NULL, 44, 1, '2022-03-18 18:25:45', '2022-03-18 18:28:10', '4'); INSERT INTO `cart_items` (`id`, `quantity`, `sku`, `type`, `name`, `coupon_code`, `weight`, `total_weight`, `base_total_weight`, `price`, `base_price`, `total`, `base_total`, `tax_percent`, `tax_amount`, `base_tax_amount`, `discount_percent`, `discount_amount`, `base_discount_amount`, `additional`, `parent_id`, `product_id`, `cart_id`, `tax_category_id`, `created_at`, `updated_at`, `custom_price`, `applied_cart_rule_ids`) VALUES (3, 1, '126014587XXLL', 'simple', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', 'OFIS', 1.0000, 1.0000, 1.0000, 161.9820, 89.9900, 161.9820, 89.9900, 0.0000, 0.0000, 0.0000, 0.0000, 48.6000, 27.0000, '{\"_token\": \"GxTnPUafDHQp8BIuOAbdD4I1FzFhW6Beaayq011X\", \"quantity\": 1, \"product_id\": \"519\"}', NULL, 519, 3, NULL, '2022-02-25 15:03:24', '2022-03-03 11:48:22', NULL, '1,3'), (4, 3, '126014587XXLL', 'simple', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', 'OFIS', 1.0000, 3.0000, 3.0000, 89.9900, 89.9900, 269.9700, 269.9700, 10.0000, 26.9970, 26.9970, 0.0000, 27.0000, 27.0000, '{\"_token\": \"mqlWax6vs5UTAr68Lq4WTATrNZbMDMg3cQmkCbvu\", \"quantity\": 3, \"product_id\": \"519\"}', NULL, 519, 5, NULL, '2022-03-09 13:11:09', '2022-03-18 15:34:27', NULL, '1,3'), (5, 4, '126014587XXLL', 'simple', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, 1.0000, 4.0000, 4.0000, 89.9900, 89.9900, 359.9600, 359.9600, 10.0000, 35.9960, 35.9960, -10.0000, -20.8956, -20.8956, '{\"_token\": \"mqlWax6vs5UTAr68Lq4WTATrNZbMDMg3cQmkCbvu\", \"quantity\": 4, \"product_id\": \"519\"}', NULL, 519, 7, NULL, '2022-03-18 16:10:54', '2022-03-18 16:15:37', NULL, '1,2'), (6, 3, '126014587XXLL', 'simple', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', 'GIDIP', 1.0000, 3.0000, 3.0000, 89.9900, 89.9900, 269.9700, 269.9700, 10.0000, 26.9970, 26.9970, 0.0000, 45.0000, 45.0000, '{\"_token\": \"mqlWax6vs5UTAr68Lq4WTATrNZbMDMg3cQmkCbvu\", \"quantity\": 1, \"product_id\": \"519\"}', NULL, 519, 9, NULL, '2022-03-18 16:48:57', '2022-03-18 18:18:40', NULL, '4'), (7, 3, '126014587XXLL', 'simple', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', 'GIDIP', 1.0000, 3.0000, 3.0000, 70.0000, 70.0000, 210.0000, 210.0000, 10.0000, 21.0000, 21.0000, 0.0000, 15.0000, 15.0000, '{\"_token\": \"mqlWax6vs5UTAr68Lq4WTATrNZbMDMg3cQmkCbvu\", \"quantity\": 1, \"product_id\": \"519\"}', NULL, 519, 12, NULL, '2022-03-18 18:25:45', '2022-03-18 18:27:53', NULL, '4'); INSERT INTO `cart_payment` (`id`, `method`, `method_title`, `cart_id`, `created_at`, `updated_at`) VALUES (3, 'cash100', NULL, 3, '2022-03-03 11:26:39', '2022-03-03 11:26:39'), (4, 'cash100', NULL, 5, '2022-03-18 15:33:13', '2022-03-18 15:33:13'), (5, 'terminal50', NULL, 7, '2022-03-18 16:15:32', '2022-03-18 16:15:32'), (6, 'cash100', NULL, 9, '2022-03-18 18:18:08', '2022-03-18 18:18:08'), (8, 'cash100', NULL, 12, '2022-03-18 18:27:49', '2022-03-18 18:27:49'); INSERT INTO `cart_rule_channels` (`cart_rule_id`, `channel_id`) VALUES (1, 1), (2, 1), (3, 1), (4, 1); INSERT INTO `cart_rule_coupon_usage` (`id`, `times_used`, `cart_rule_coupon_id`, `customer_id`) VALUES (1, 2, 1, 44), (2, 2, 2, 44); INSERT INTO `cart_rule_coupons` (`id`, `code`, `usage_limit`, `usage_per_customer`, `times_used`, `type`, `is_primary`, `expired_at`, `cart_rule_id`, `created_at`, `updated_at`) VALUES (1, 'OFIS', 0, 0, 2, 0, 1, NULL, 3, '2022-03-03 11:32:04', '2022-03-18 15:34:45'), (2, 'GIDIP', 0, 0, 2, 0, 1, NULL, 4, '2022-03-18 18:16:42', '2022-03-18 18:28:10'); INSERT INTO `cart_rule_customer_groups` (`cart_rule_id`, `customer_group_id`) VALUES (1, 1), (1, 2), (1, 3), (2, 1), (2, 2), (2, 3), (3, 1), (3, 2), (3, 3), (4, 1), (4, 2), (4, 3); INSERT INTO `cart_rule_customers` (`id`, `times_used`, `cart_rule_id`, `customer_id`) VALUES (1, 3, 1, 44), (2, 2, 3, 44), (3, 1, 2, 44), (4, 2, 4, 44); INSERT INTO `cart_rules` (`id`, `name`, `description`, `starts_from`, `ends_till`, `status`, `coupon_type`, `use_auto_generation`, `usage_per_customer`, `uses_per_coupon`, `times_used`, `condition_type`, `conditions`, `end_other_rules`, `uses_attribute_conditions`, `action_type`, `discount_amount`, `discount_quantity`, `discount_step`, `apply_to_shipping`, `free_shipping`, `sort_order`, `created_at`, `updated_at`) VALUES (1, 'pickup shipping 30 manat (17lira) skidka', '', NULL, NULL, 0, 0, 0, 0, 0, 3, 1, '[{\"value\": \"pickup\", \"operator\": \"==\", \"attribute\": \"cart|shipping_method\", \"attribute_type\": \"select\"}]', 0, 0, 'cart_fixed', 17.0000, 0, '0', 0, 0, 0, '2022-03-02 17:49:04', '2022-03-18 18:17:28'), (2, 'Odeme shekli 10% bindirim', 'odeme shekli cash 100% olmayanlara 10% bindirim yap', NULL, NULL, 0, 0, 0, 0, 0, 1, 1, '[{\"value\": \"cash100\", \"operator\": \"!=\", \"attribute\": \"cart|payment_method\", \"attribute_type\": \"select\"}]', 0, 0, 'by_percent', -10.0000, 0, '0', 0, 0, 0, '2022-03-02 18:01:20', '2022-03-18 18:17:10'), (3, 'Ofiste odeme 15manat indirim', 'ofiste odeme yapanlara 15 manat indirim', NULL, NULL, 1, 1, 0, 0, 0, 2, 1, '[]', 0, 0, 'cart_fixed', 10.0000, 0, '0', 0, 0, 0, '2022-03-03 11:32:04', '2022-03-18 15:34:45'), (4, '15TL SHIPPING INDIRIM', '', NULL, NULL, 1, 1, 0, 0, 0, 2, 1, '[]', 0, 0, 'by_fixed', 15.0000, 1, '0', 1, 0, 0, '2022-03-18 18:16:42', '2022-03-18 18:28:10'); INSERT INTO `cart_shipping_rates` (`id`, `carrier`, `carrier_title`, `method`, `method_title`, `method_description`, `price`, `base_price`, `cart_address_id`, `created_at`, `updated_at`, `discount_amount`, `base_discount_amount`, `is_calculate_tax`) VALUES (1, 'pickup', 'Pickup', 'pickup_pickup', 'Pickup', 'Pickup from address', 72, 40, 45, '2022-03-03 11:48:03', '2022-03-03 11:48:22', 0.0000, 0.0000, 0), (2, 'courier', 'Courier', 'courier_courier', 'Courier', 'Courier Shipping', 72.9, 40.5, 45, '2022-03-03 11:48:03', '2022-03-03 11:48:03', 0.0000, 0.0000, 0), (11, 'pickup', 'Pickup', 'pickup_pickup', 'Pickup', 'Pickup from address', 120, 120, 50, '2022-03-18 15:29:02', '2022-03-18 15:34:27', 0.0000, 0.0000, 0), (12, 'courier', 'Courier', 'courier_courier', 'Courier', 'Courier Shipping', 121.5, 121.5, 50, '2022-03-18 15:29:02', '2022-03-18 15:29:02', 0.0000, 0.0000, 0), (13, 'pickup', 'Pickup', 'pickup_pickup', 'Pickup', 'Pickup from address', 160, 160, 54, '2022-03-18 16:12:52', '2022-03-18 16:15:37', 0.0000, 0.0000, 0), (14, 'courier', 'Courier', 'courier_courier', 'Courier', 'Courier Shipping', 162, 162, 54, '2022-03-18 16:12:52', '2022-03-18 16:12:52', 0.0000, 0.0000, 0), (17, 'pickup', 'Pickup', 'pickup_pickup', 'Pickup', 'Pickup from address', 120, 120, 58, '2022-03-18 18:18:01', '2022-03-18 18:18:40', 15.0000, 15.0000, 0), (18, 'courier', 'Courier', 'courier_courier', 'Courier', 'Courier Shipping', 121.5, 121.5, 58, '2022-03-18 18:18:01', '2022-03-18 18:18:01', 0.0000, 0.0000, 0), (21, 'pickup', 'Pickup', 'pickup_pickup', 'Pickup', 'Pickup from address', 120, 120, 62, '2022-03-18 18:27:43', '2022-03-18 18:27:53', 15.0000, 15.0000, 0), (22, 'courier', 'Courier', 'courier_courier', 'Courier', 'Courier Shipping', 121.5, 121.5, 62, '2022-03-18 18:27:43', '2022-03-18 18:27:43', 0.0000, 0.0000, 0); INSERT INTO `categories` (`id`, `position`, `image`, `status`, `_lft`, `_rgt`, `parent_id`, `created_at`, `updated_at`, `display_mode`, `category_icon_path`, `additional`, `trendyol_url`, `lcw_url`, `default_weight`) VALUES (1, 1, NULL, 1, 1, 26, NULL, '2021-11-10 19:52:20', '2021-11-10 19:52:20', 'products_and_description', NULL, NULL, NULL, NULL, 0.50), (1184, 4, NULL, 1, 22, 23, 1, '2021-12-02 19:48:37', '2021-12-02 21:41:14', 'products_only', NULL, NULL, NULL, NULL, 0.50), (1185, 3, NULL, 1, 20, 21, 1, '2021-12-02 19:49:14', '2021-12-02 21:40:25', 'products_only', NULL, NULL, NULL, NULL, 0.50), (1186, 2, NULL, 1, 18, 19, 1, '2021-12-02 19:50:03', '2021-12-02 21:39:42', 'products_only', NULL, NULL, NULL, NULL, 0.50), (1187, 1, NULL, 1, 14, 17, 1, '2021-12-02 19:50:44', '2021-12-04 22:15:47', 'products_only', NULL, NULL, 'trend', 'lcw', 0.50), (1188, 2, NULL, 1, 15, 16, 1187, '2021-12-04 22:18:06', '2022-02-22 11:50:03', 'products_and_description', NULL, NULL, 'elbiseee', 'elbise', 0.50), (1189, 1, NULL, 1, 24, 25, 1, '2022-02-22 12:03:56', '2022-02-22 12:17:42', 'products_only', NULL, NULL, 'teastere', 'aaaaa', 1.50); INSERT INTO `category_brands` (`category_id`, `brand_id`) VALUES (1187, 1), (1186, 1), (1185, 1), (1184, 1), (1187, 2), (1188, 2), (1186, 2), (1185, 2), (1184, 2); INSERT INTO `category_filterable_attributes` (`category_id`, `attribute_id`) VALUES (1184, 11), (1185, 11), (1186, 11), (1187, 11), (1188, 11), (1189, 11); INSERT INTO `category_translations` (`id`, `name`, `slug`, `description`, `meta_title`, `meta_description`, `meta_keywords`, `category_id`, `locale`, `locale_id`, `url_path`) VALUES (1457, 'Root', 'root', 'Root', '', '', '', 1, 'en', NULL, ''), (1458, 'Raíz', 'root', 'Raíz', '', '', '', 1, 'es', NULL, ''), (1459, 'Racine', 'root', 'Racine', '', '', '', 1, 'fr', NULL, ''), (1460, 'Hoofdcategorie', 'root', 'Hoofdcategorie', '', '', '', 1, 'nl', NULL, ''), (1461, 'Kök', 'root', 'Kök', '', '', '', 1, 'tr', NULL, ''), (1462, 'Ev', 'ev', '
Trendyol
', '', '', '', 1184, 'tr', 1, 'ev'), (1463, 'Trendyol', 'ev', 'Trendyol
', '', '', '', 1184, 'tm', 2, 'ev'), (1464, 'Trendyol', 'ev', 'Trendyol
', '', '', '', 1184, 'ru', 3, 'ev'), (1465, 'Cocuk', 'cocuk', 'LCW Cocuk
', '', '', '', 1185, 'tr', 1, 'cocuk'), (1466, 'LCW', 'cocuk', 'LCW
', '', '', '', 1185, 'tm', 2, 'cocuk'), (1467, 'LCW', 'cocuk', 'LCW
', '', '', '', 1185, 'ru', 3, 'cocuk'), (1468, 'Erkek', 'erkek', 'Erkej
', '', '', '', 1186, 'tr', 1, 'erkek'), (1469, 'Erkek', 'erkek', 'Erkej
', '', '', '', 1186, 'tm', 2, 'erkek'), (1470, 'Erkek', 'erkek', 'Erkej
', '', '', '', 1186, 'ru', 3, 'erkek'), (1471, 'Kadin', 'kadin', 'Kadin
', '', '', '', 1187, 'tr', 1, 'kadin'), (1472, 'KAdin', 'kadin', 'Kadin
', '', '', '', 1187, 'tm', 2, 'kadin'), (1473, 'KAdin', 'kadin', 'Kadin
', '', '', '', 1187, 'ru', 3, 'kadin'), (1474, 'elbise', 'elbise', 'elbise
', '', '', '', 1188, 'tr', 1, 'kadin/elbise'), (1475, 'elbise', 'elbise', 'elbise
', NULL, NULL, NULL, 1188, 'tm', 2, 'kadin/elbise'), (1476, 'elbise', 'elbise', 'elbise
', NULL, NULL, NULL, 1188, 'ru', 3, 'kadin/elbise'), (1477, 'Test', 'test', '', '', '', '', 1189, 'tr', 1, 'test'), (1478, 'Test', 'test', '', '', '', '', 1189, 'tm', 2, 'test'), (1479, 'Test', 'test', '', '', '', '', 1189, 'ru', 3, 'test'); INSERT INTO `channel_currencies` (`channel_id`, `currency_id`) VALUES (1, 1), (1, 2); INSERT INTO `channel_inventory_sources` (`channel_id`, `inventory_source_id`) VALUES (1, 1); INSERT INTO `channel_locales` (`channel_id`, `locale_id`) VALUES (1, 1), (1, 2), (1, 3); INSERT INTO `channel_translations` (`id`, `channel_id`, `locale`, `name`, `description`, `home_page_content`, `footer_content`, `maintenance_mode_text`, `home_seo`, `created_at`, `updated_at`) VALUES (1, 1, 'tr', 'Trendyol', NULL, '\n@include(\"shop::home.slider\") @include(\"shop::home.featured-products\") @include(\"shop::home.new-products\")
\n \n ', '\n@include(\"shop::home.slider\") @include(\"shop::home.featured-products\") @include(\"shop::home.new-products\")
\n \n ', '\n@include(\"shop::home.slider\") @include(\"shop::home.featured-products\") @include(\"shop::home.new-products\")
\r\n', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587
', NULL, NULL, NULL, NULL, NULL, NULL, 504, 9), (6327, 'tm', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 504, 9), (6328, 'ru', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 504, 9), (6329, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
\r\nMankenin üzerindeki ürün S/36 bedendir.
\r\n%88 Pamuk %12 Polyester, Örme Kumaş
\r\nBoyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
\r\nÜrünlerimiz TRENDYOL etiketi ile gönderilecektir.
\r\nStüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
\r\nBu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
\r\nKampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
\r\nListelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
\r\nBu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 504, 10), (6330, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 504, 10), (6331, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 504, 10), (6332, NULL, NULL, '164075677XS', NULL, NULL, NULL, NULL, NULL, NULL, 505, 1), (6333, NULL, NULL, NULL, NULL, 25, NULL, NULL, NULL, NULL, 505, 23), (6334, 'tr', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 505, 2), (6335, 'tm', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 505, 2), (6336, 'ru', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 505, 2), (6337, NULL, NULL, NULL, NULL, 23, NULL, NULL, NULL, NULL, 505, 24), (6338, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 505, 11), (6339, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 505, 22), (6340, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 505, 8), (6341, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 505, 7), (6342, NULL, NULL, '164075677XS', NULL, NULL, NULL, NULL, NULL, NULL, 505, 3), (6343, 'tr', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 505, 9), (6344, 'tm', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 505, 9), (6345, 'ru', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 505, 9), (6346, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 505, 10), (6347, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 505, 10), (6348, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 505, 10), (6349, NULL, NULL, '164075677S', NULL, NULL, NULL, NULL, NULL, NULL, 506, 1), (6350, NULL, NULL, NULL, NULL, 25, NULL, NULL, NULL, NULL, 506, 23), (6351, 'tr', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 506, 2), (6352, 'tm', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 506, 2), (6353, 'ru', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 506, 2), (6354, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, 506, 24), (6355, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 506, 11), (6356, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 506, 22), (6357, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 506, 8), (6358, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 506, 7), (6359, NULL, NULL, '164075677S', NULL, NULL, NULL, NULL, NULL, NULL, 506, 3), (6360, 'tr', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 506, 9), (6361, 'tm', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 506, 9), (6362, 'ru', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 506, 9), (6363, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 506, 10), (6364, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 506, 10), (6365, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 506, 10), (6366, NULL, NULL, '164075677M', NULL, NULL, NULL, NULL, NULL, NULL, 507, 1), (6367, NULL, NULL, NULL, NULL, 25, NULL, NULL, NULL, NULL, 507, 23), (6368, 'tr', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 507, 2), (6369, 'tm', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 507, 2), (6370, 'ru', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 507, 2), (6371, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, 507, 24), (6372, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 507, 11), (6373, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 507, 22), (6374, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 507, 8), (6375, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 507, 7), (6376, NULL, NULL, '164075677M', NULL, NULL, NULL, NULL, NULL, NULL, 507, 3), (6377, 'tr', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 507, 9), (6378, 'tm', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 507, 9), (6379, 'ru', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 507, 9), (6380, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 507, 10), (6381, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 507, 10), (6382, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 507, 10), (6383, NULL, NULL, '164075677L', NULL, NULL, NULL, NULL, NULL, NULL, 508, 1), (6384, NULL, NULL, NULL, NULL, 25, NULL, NULL, NULL, NULL, 508, 23), (6385, 'tr', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 508, 2), (6386, 'tm', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 508, 2), (6387, 'ru', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 508, 2), (6388, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, 508, 24), (6389, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 508, 11), (6390, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 508, 22), (6391, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 508, 8), (6392, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 508, 7), (6393, NULL, NULL, '164075677L', NULL, NULL, NULL, NULL, NULL, NULL, 508, 3), (6394, 'tr', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 508, 9), (6395, 'tm', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 508, 9), (6396, 'ru', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 508, 9), (6397, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 508, 10), (6398, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 508, 10), (6399, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 508, 10), (6400, NULL, NULL, '164075677XL', NULL, NULL, NULL, NULL, NULL, NULL, 509, 1), (6401, NULL, NULL, NULL, NULL, 25, NULL, NULL, NULL, NULL, 509, 23), (6402, 'tr', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 509, 2), (6403, 'tm', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 509, 2), (6404, 'ru', 'Trendyol', 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 509, 2), (6405, NULL, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, 509, 24), (6406, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 509, 11), (6407, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 509, 22), (6408, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 509, 8), (6409, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 509, 7), (6410, NULL, NULL, '164075677XL', NULL, NULL, NULL, NULL, NULL, NULL, 509, 3), (6411, 'tr', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 509, 9), (6412, 'tm', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 509, 9), (6413, 'ru', 'Trendyol', '/trendyolmilla/mor-baskili-oversize-orme-sweatshirt-twoaw22sw0180-p-164075677', NULL, NULL, NULL, NULL, NULL, NULL, 509, 9), (6414, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 509, 10), (6415, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 509, 10), (6416, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 509, 10), (6417, NULL, NULL, '153503000XS', NULL, NULL, NULL, NULL, NULL, NULL, 510, 1), (6418, NULL, NULL, NULL, NULL, 26, NULL, NULL, NULL, NULL, 510, 23), (6419, 'tr', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 510, 2), (6420, 'tm', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 510, 2), (6421, 'ru', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 510, 2), (6422, NULL, NULL, NULL, NULL, 23, NULL, NULL, NULL, NULL, 510, 24), (6423, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 510, 11), (6424, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 510, 22), (6425, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 510, 8), (6426, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 510, 7), (6427, NULL, NULL, '153503000XS', NULL, NULL, NULL, NULL, NULL, NULL, 510, 3), (6428, 'tr', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 510, 9), (6429, 'tm', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 510, 9), (6430, 'ru', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 510, 9), (6431, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 510, 10), (6432, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 510, 10), (6433, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 510, 10), (6434, NULL, NULL, '153503000S', NULL, NULL, NULL, NULL, NULL, NULL, 511, 1), (6435, NULL, NULL, NULL, NULL, 26, NULL, NULL, NULL, NULL, 511, 23), (6436, 'tr', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 511, 2), (6437, 'tm', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 511, 2), (6438, 'ru', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 511, 2), (6439, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, 511, 24), (6440, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 511, 11), (6441, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 511, 22), (6442, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 511, 8), (6443, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 511, 7), (6444, NULL, NULL, '153503000S', NULL, NULL, NULL, NULL, NULL, NULL, 511, 3), (6445, 'tr', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 511, 9), (6446, 'tm', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 511, 9), (6447, 'ru', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 511, 9), (6448, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 511, 10), (6449, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 511, 10), (6450, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 511, 10), (6451, NULL, NULL, '153503000M', NULL, NULL, NULL, NULL, NULL, NULL, 512, 1), (6452, NULL, NULL, NULL, NULL, 26, NULL, NULL, NULL, NULL, 512, 23), (6453, 'tr', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 512, 2), (6454, 'tm', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 512, 2), (6455, 'ru', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 512, 2), (6456, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, 512, 24), (6457, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 512, 11), (6458, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 512, 22), (6459, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 512, 8), (6460, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 512, 7), (6461, NULL, NULL, '153503000M', NULL, NULL, NULL, NULL, NULL, NULL, 512, 3), (6462, 'tr', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 512, 9), (6463, 'tm', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 512, 9), (6464, 'ru', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 512, 9), (6465, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 512, 10), (6466, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 512, 10), (6467, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 512, 10), (6468, NULL, NULL, '153503000L', NULL, NULL, NULL, NULL, NULL, NULL, 513, 1), (6469, NULL, NULL, NULL, NULL, 26, NULL, NULL, NULL, NULL, 513, 23), (6470, 'tr', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 513, 2), (6471, 'tm', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 513, 2), (6472, 'ru', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 513, 2), (6473, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, 513, 24), (6474, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 513, 11), (6475, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 513, 22), (6476, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 513, 8), (6477, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 513, 7), (6478, NULL, NULL, '153503000L', NULL, NULL, NULL, NULL, NULL, NULL, 513, 3), (6479, 'tr', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 513, 9), (6480, 'tm', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 513, 9), (6481, 'ru', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 513, 9), (6482, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 513, 10), (6483, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 513, 10), (6484, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 513, 10), (6485, NULL, NULL, '153503000XL', NULL, NULL, NULL, NULL, NULL, NULL, 514, 1), (6486, NULL, NULL, NULL, NULL, 26, NULL, NULL, NULL, NULL, 514, 23), (6487, 'tr', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 514, 2), (6488, 'tm', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 514, 2), (6489, 'ru', 'Trendyol', 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 514, 2), (6490, NULL, NULL, NULL, NULL, 9, NULL, NULL, NULL, NULL, 514, 24), (6491, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 514, 11), (6492, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 514, 22), (6493, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 514, 8), (6494, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 514, 7), (6495, NULL, NULL, '153503000XL', NULL, NULL, NULL, NULL, NULL, NULL, 514, 3), (6496, 'tr', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 514, 9), (6497, 'tm', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 514, 9), (6498, 'ru', 'Trendyol', '/trendyolmilla/gri-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-153503000', NULL, NULL, NULL, NULL, NULL, NULL, 514, 9), (6499, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 514, 10), (6500, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 514, 10), (6501, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.75, Göğüs:79, Bel: 60, Kalça: 88
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Uzun Oversize Kalıp: Rahatlığın ve konforun ön plana olduğu oversize kalıbımızın uzun hali genç müşterilerin vazgeçilmezi!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 10 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 514, 10), (6502, NULL, NULL, '126014587XS', NULL, NULL, NULL, NULL, NULL, NULL, 515, 1), (6503, NULL, NULL, NULL, NULL, 23, NULL, NULL, NULL, NULL, 515, 24), (6504, 'tr', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 515, 2), (6505, 'tm', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 515, 2), (6506, 'ru', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 515, 2), (6507, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 515, 11), (6508, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 515, 22), (6509, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 515, 8), (6510, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 515, 7), (6511, NULL, NULL, '126014587XS', NULL, NULL, NULL, NULL, NULL, NULL, 515, 3), (6512, 'tr', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 515, 9), (6513, 'tm', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 515, 9), (6514, 'ru', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 515, 9), (6515, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 515, 10), (6516, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 515, 10), (6517, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 515, 10), (6518, NULL, NULL, NULL, NULL, 27, NULL, NULL, NULL, NULL, 515, 23), (6519, NULL, NULL, '126014587S', NULL, NULL, NULL, NULL, NULL, NULL, 516, 1), (6520, NULL, NULL, NULL, NULL, 6, NULL, NULL, NULL, NULL, 516, 24), (6521, 'tr', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 516, 2), (6522, 'tm', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 516, 2), (6523, 'ru', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 516, 2), (6524, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 516, 11), (6525, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 516, 22), (6526, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 516, 8), (6527, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 516, 7), (6528, NULL, NULL, '126014587S', NULL, NULL, NULL, NULL, NULL, NULL, 516, 3), (6529, 'tr', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 516, 9), (6530, 'tm', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 516, 9), (6531, 'ru', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 516, 9), (6532, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 516, 10), (6533, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 516, 10), (6534, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 516, 10), (6535, NULL, NULL, NULL, NULL, 27, NULL, NULL, NULL, NULL, 516, 23), (6536, NULL, NULL, '126014587M', NULL, NULL, NULL, NULL, NULL, NULL, 517, 1), (6537, NULL, NULL, NULL, NULL, 7, NULL, NULL, NULL, NULL, 517, 24), (6538, 'tr', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 517, 2), (6539, 'tm', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 517, 2), (6540, 'ru', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 517, 2), (6541, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 517, 11), (6542, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 517, 22), (6543, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 517, 8), (6544, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 517, 7), (6545, NULL, NULL, '126014587M', NULL, NULL, NULL, NULL, NULL, NULL, 517, 3), (6546, 'tr', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 517, 9), (6547, 'tm', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 517, 9), (6548, 'ru', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 517, 9), (6549, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 517, 10), (6550, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 517, 10), (6551, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 517, 10), (6552, NULL, NULL, NULL, NULL, 27, NULL, NULL, NULL, NULL, 517, 23), (6553, NULL, NULL, '126014587L', NULL, NULL, NULL, NULL, NULL, NULL, 518, 1), (6554, NULL, NULL, NULL, NULL, 8, NULL, NULL, NULL, NULL, 518, 24), (6555, 'tr', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 518, 2), (6556, 'tm', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 518, 2), (6557, 'ru', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 518, 2), (6558, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 518, 11), (6559, NULL, NULL, '0', NULL, NULL, NULL, NULL, NULL, NULL, 518, 22), (6560, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 518, 8), (6561, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 518, 7), (6562, NULL, NULL, '126014587L', NULL, NULL, NULL, NULL, NULL, NULL, 518, 3), (6563, 'tr', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 518, 9), (6564, 'tm', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 518, 9), (6565, 'ru', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 518, 9), (6566, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 518, 10), (6567, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 518, 10), (6568, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 518, 10), (6569, NULL, NULL, NULL, NULL, 27, NULL, NULL, NULL, NULL, 518, 23), (6570, NULL, NULL, '126014587XXLL', NULL, NULL, NULL, NULL, NULL, NULL, 519, 1), (6571, NULL, NULL, NULL, NULL, 24, NULL, NULL, NULL, NULL, 519, 24), (6572, 'tr', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 519, 2), (6573, 'tm', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 519, 2), (6574, 'ru', 'Trendyol', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, NULL, NULL, 519, 2), (6575, NULL, NULL, NULL, NULL, NULL, 89.9900, NULL, NULL, NULL, 519, 11), (6576, NULL, NULL, '1', NULL, NULL, NULL, NULL, NULL, NULL, 519, 22), (6577, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 519, 8), (6578, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 519, 7), (6579, NULL, NULL, '126014587XXL', NULL, NULL, NULL, NULL, NULL, NULL, 519, 3), (6580, 'tr', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587
', NULL, NULL, NULL, NULL, NULL, NULL, 519, 9), (6581, 'tm', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 519, 9), (6582, 'ru', 'Trendyol', '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, 519, 9), (6583, 'tr', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
\r\nMankenin üzerindeki ürün S/36 bedendir.
\r\n%88 Pamuk %12 Polyester, Örme Kumaş
\r\nBoyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
\r\nÜrünlerimiz TRENDYOL etiketi ile gönderilecektir.
\r\nStüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
\r\nBu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
\r\nKampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
\r\nListelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
\r\nBu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 519, 10), (6584, 'tm', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 519, 10), (6585, 'ru', 'Trendyol', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', NULL, NULL, NULL, NULL, NULL, NULL, 519, 10), (6586, NULL, NULL, NULL, NULL, 27, NULL, NULL, NULL, NULL, 519, 23), (6629, NULL, NULL, NULL, NULL, 21, NULL, NULL, NULL, NULL, 519, 25), (6630, NULL, NULL, NULL, NULL, 14, NULL, NULL, NULL, NULL, 519, 30), (6631, NULL, 'Trendyol', NULL, NULL, 1, NULL, NULL, NULL, NULL, 519, 4), (6632, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 519, 5), (6633, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 519, 6), (6634, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, 519, 26), (6635, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, 519, 27), (6636, 'tr', 'Trendyol', '', NULL, NULL, NULL, NULL, NULL, NULL, 519, 16), (6637, 'tr', 'Trendyol', '', NULL, NULL, NULL, NULL, NULL, NULL, 519, 17), (6638, NULL, NULL, NULL, NULL, NULL, 70.0000, NULL, NULL, NULL, 519, 13), (6639, NULL, 'Trendyol', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 519, 14), (6640, NULL, 'Trendyol', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 519, 15), (6641, NULL, NULL, NULL, NULL, 21, NULL, NULL, NULL, NULL, 504, 25), (6642, NULL, NULL, NULL, NULL, 14, NULL, NULL, NULL, NULL, 504, 30), (6643, NULL, 'Trendyol', NULL, NULL, 1, NULL, NULL, NULL, NULL, 504, 4), (6644, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 504, 5), (6645, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 504, 6), (6646, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, 504, 26), (6647, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, 504, 27), (6648, 'tr', 'Trendyol', '', NULL, NULL, NULL, NULL, NULL, NULL, 504, 16), (6649, 'tr', 'Trendyol', '', NULL, NULL, NULL, NULL, NULL, NULL, 504, 17), (6650, 'tm', 'Trendyol', 'fbetb', NULL, NULL, NULL, NULL, NULL, NULL, 523, 9), (6651, 'tm', 'Trendyol', 'ergerg', NULL, NULL, NULL, NULL, NULL, NULL, 523, 10), (6652, NULL, NULL, 'upload', NULL, NULL, NULL, NULL, NULL, NULL, 523, 1), (6653, 'tm', 'Trendyol', 'asdasd asdasd', NULL, NULL, NULL, NULL, NULL, NULL, 523, 2), (6654, NULL, NULL, 'asdasd-asdasd', NULL, NULL, NULL, NULL, NULL, NULL, 523, 3), (6655, NULL, 'Trendyol', NULL, NULL, 1, NULL, NULL, NULL, NULL, 523, 4), (6656, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 523, 5), (6657, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, 523, 6), (6658, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, 523, 7), (6659, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 523, 8), (6660, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, 523, 26), (6661, NULL, NULL, '23', NULL, NULL, NULL, NULL, NULL, NULL, 523, 27), (6662, 'tm', 'Trendyol', '', NULL, NULL, NULL, NULL, NULL, NULL, 523, 16), (6663, 'tm', 'Trendyol', '', NULL, NULL, NULL, NULL, NULL, NULL, 523, 17), (6664, NULL, NULL, NULL, NULL, NULL, 123.0000, NULL, NULL, NULL, 523, 11), (6665, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 523, 13), (6666, NULL, 'Trendyol', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 523, 14), (6667, NULL, 'Trendyol', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 523, 15), (6668, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, 523, 22), (6669, 'tm', 'Trendyol', 'wrw4t', NULL, NULL, NULL, NULL, NULL, NULL, 524, 9), (6670, 'tm', 'Trendyol', '34t34t34t', NULL, NULL, NULL, NULL, NULL, NULL, 524, 10), (6671, NULL, NULL, 'product1', NULL, NULL, NULL, NULL, NULL, NULL, 524, 1), (6672, 'tm', 'Trendyol', 'prod1', NULL, NULL, NULL, NULL, NULL, NULL, 524, 2), (6673, NULL, NULL, 'prod1', NULL, NULL, NULL, NULL, NULL, NULL, 524, 3), (6674, NULL, 'Trendyol', NULL, NULL, 1, NULL, NULL, NULL, NULL, 524, 4), (6675, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, 524, 5), (6676, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, 524, 6), (6677, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 524, 7), (6678, NULL, NULL, NULL, 1, NULL, NULL, NULL, NULL, NULL, 524, 8), (6679, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, 524, 26), (6680, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, 524, 27), (6681, 'tm', 'Trendyol', '', NULL, NULL, NULL, NULL, NULL, NULL, 524, 16), (6682, 'tm', 'Trendyol', '', NULL, NULL, NULL, NULL, NULL, NULL, 524, 17), (6683, NULL, NULL, NULL, NULL, NULL, 345.0000, NULL, NULL, NULL, 524, 11), (6684, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 524, 13), (6685, NULL, 'Trendyol', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 524, 14), (6686, NULL, 'Trendyol', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 524, 15), (6687, NULL, NULL, '', NULL, NULL, NULL, NULL, NULL, NULL, 524, 22); INSERT INTO `product_categories` (`product_id`, `category_id`) VALUES (523, 1187), (524, 1186); INSERT INTO `product_flat` (`id`, `sku`, `product_number`, `name`, `description`, `url_key`, `new`, `featured`, `status`, `thumbnail`, `price`, `cost`, `special_price`, `special_price_from`, `special_price_to`, `weight`, `color`, `color_label`, `size`, `size_label`, `created_at`, `locale`, `channel`, `product_id`, `updated_at`, `parent_id`, `visible_individually`, `min_price`, `max_price`, `short_description`, `meta_title`, `meta_keywords`, `meta_description`, `width`, `height`, `depth`, `TrendyolBrend`, `TrendyolBrend_label`, `brand_id`) VALUES (365, 'p-226014587', '', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
\r\nMankenin üzerindeki ürün S/36 bedendir.
\r\n%88 Pamuk %12 Polyester, Örme Kumaş
\r\nBoyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
\r\nÜrünlerimiz TRENDYOL etiketi ile gönderilecektir.
\r\nStüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
\r\nBu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
\r\nKampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
\r\nListelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
\r\nBu ürün indirim kampanyasına dahil değildir.
', 'p-226014587', 1, 1, 1, NULL, NULL, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, NULL, NULL, '2022-01-12 13:03:31', 'tr', 'Trendyol', 504, '2022-02-01 12:28:55', NULL, 1, 89.9900, 89.9900, '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587
', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 2), (366, '164075677XS', NULL, 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 25, 'Mor', 23, 'XS', '2022-01-12 13:03:31', 'tr', 'Trendyol', 505, '2022-01-12 13:03:31', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (367, '164075677S', NULL, 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 25, 'Mor', 6, 'S', '2022-01-12 13:03:31', 'tr', 'Trendyol', 506, '2022-01-12 13:03:31', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (368, '164075677M', NULL, 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 25, 'Mor', 7, 'M', '2022-01-12 13:03:31', 'tr', 'Trendyol', 507, '2022-01-12 13:03:31', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (369, '164075677L', NULL, 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 25, 'Mor', 8, 'L', '2022-01-12 13:03:31', 'tr', 'Trendyol', 508, '2022-01-12 13:03:31', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (370, '164075677XL', NULL, 'Mor Baskılı Oversize Örme Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 25, 'Mor', 9, 'XL', '2022-01-12 13:03:31', 'tr', 'Trendyol', 509, '2022-01-12 13:03:31', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (371, '153503000XS', NULL, 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 26, 'Red', 23, 'XS', '2022-01-12 13:03:32', 'tr', 'Trendyol', 510, '2022-01-12 13:03:32', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (372, '153503000S', NULL, 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 26, 'Red', 6, 'S', '2022-01-12 13:03:32', 'tr', 'Trendyol', 511, '2022-01-12 13:03:32', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (373, '153503000M', NULL, 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 26, 'Red', 7, 'M', '2022-01-12 13:03:32', 'tr', 'Trendyol', 512, '2022-01-12 13:03:32', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (374, '153503000L', NULL, 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 26, 'Red', 8, 'L', '2022-01-12 13:03:32', 'tr', 'Trendyol', 513, '2022-01-12 13:03:32', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (375, '153503000XL', NULL, 'Gri Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 26, 'Red', 9, 'XL', '2022-01-12 13:03:32', 'tr', 'Trendyol', 514, '2022-01-12 13:03:32', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (376, '126014587XS', NULL, 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 27, 'Red', 23, 'XS', '2022-01-12 13:03:32', 'tr', 'Trendyol', 515, '2022-01-12 13:03:32', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (377, '126014587S', NULL, 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 27, 'Red', 6, 'S', '2022-01-12 13:03:32', 'tr', 'Trendyol', 516, '2022-01-12 13:03:32', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (378, '126014587M', NULL, 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 27, 'Red', 7, 'M', '2022-01-12 13:03:33', 'tr', 'Trendyol', 517, '2022-01-12 13:03:33', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (379, '126014587L', NULL, 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, NULL, NULL, NULL, 1, NULL, 89.9900, NULL, NULL, NULL, NULL, 0.0000, 27, 'Red', 8, 'L', '2022-01-12 13:03:33', 'tr', 'Trendyol', 518, '2022-01-12 13:03:33', 365, NULL, 89.9900, 89.9900, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL), (380, '126014587XXLL', '', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
\r\nMankenin üzerindeki ürün S/36 bedendir.
\r\n%88 Pamuk %12 Polyester, Örme Kumaş
\r\nBoyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
\r\nÜrünlerimiz TRENDYOL etiketi ile gönderilecektir.
\r\nStüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
\r\nBu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
\r\nKampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
\r\nListelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
\r\nBu ürün indirim kampanyasına dahil değildir.
', '126014587XXL', 1, 1, 1, NULL, 89.9900, NULL, 70.0000, NULL, NULL, 1.0000, 27, 'Red', 24, 'XXL', '2022-01-12 13:03:33', 'tr', 'Trendyol', 519, '2022-01-27 19:38:32', 365, 1, 70.0000, 89.9900, '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587
', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 1), (381, '126014587XXLL', '', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', '126014587XXL', 1, 1, 1, NULL, 89.9900, NULL, 70.0000, NULL, NULL, 1.0000, 27, 'Red', 24, 'XXL', '2022-01-12 13:03:33', 'tm', 'Trendyol', 519, '2022-01-27 19:38:32', NULL, 1, 70.0000, 89.9900, '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1), (382, '126014587XXLL', '', 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', 'Modelin Ölçüleri: Boy: 1.76, Göğüs: 84 Bel: 60, Kalça: 89
Mankenin üzerindeki ürün S/36 bedendir.
%88 Pamuk %12 Polyester, Örme Kumaş
Boyfriend Kalıp: Üzerinizde bir beden büyük geliyormuş gibi duran oversize kalıptır. Pantolon, tayt ve şortlar ile rahatça kombinlenebilecek bu kalıp size çok çeşitli stil alternatifleri sunacak!
Ürünlerimiz TRENDYOL etiketi ile gönderilecektir.
Stüdyo çekimlerinde renkler ışık farklılığından dolayı değişiklik gösterebilir.
Bu üründen en fazla 10 adet sipariş verilebilir. 10 adetin üzerindeki siparişleri Trendyol iptal etme hakkını saklı tutar.
Kampanya fiyatından satılmak üzere 100 adetten fazla stok sunulmuştur.
Listelenen fiyat 20 Aralık 2021 tarihine kadar geçerlidir.
Bu ürün indirim kampanyasına dahil değildir.
', '126014587XXL', 1, 1, 1, NULL, 89.9900, NULL, 70.0000, NULL, NULL, 1.0000, 27, 'Red', 24, 'XXL', '2022-01-12 13:03:33', 'ru', 'Trendyol', 519, '2022-01-27 19:38:32', NULL, 1, 70.0000, 89.9900, '/trendyolmilla/siyah-baskili-oversize-orme-ince-sweatshirt-twoaw22sw0180-p-126014587', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1), (383, 'upload', '23', NULL, NULL, 'asdasd-asdasd', 1, 0, 1, NULL, 123.0000, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, NULL, NULL, '2022-09-22 16:55:12', 'tr', 'Trendyol', 523, '2022-09-22 16:56:06', NULL, 0, 123.0000, 123.0000, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1), (384, 'upload', '23', 'asdasd asdasd', 'ergerg', 'asdasd-asdasd', 1, 0, 1, NULL, 123.0000, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, NULL, NULL, '2022-09-22 16:55:12', 'tm', 'Trendyol', 523, '2022-09-22 16:56:06', NULL, 0, 123.0000, 123.0000, 'fbetb', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 1), (385, 'upload', '23', NULL, NULL, 'asdasd-asdasd', 1, 0, 1, NULL, 123.0000, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, NULL, NULL, '2022-09-22 16:55:12', 'ru', 'Trendyol', 523, '2022-09-22 16:56:06', NULL, 0, 123.0000, 123.0000, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1), (386, 'product1', '', NULL, NULL, 'prod1', 0, 0, 1, NULL, 345.0000, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, NULL, NULL, '2022-09-22 16:59:34', 'tr', 'Trendyol', 524, '2022-09-22 17:00:30', NULL, 1, 345.0000, 345.0000, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1), (387, 'product1', '', 'prod1', '34t34t34t', 'prod1', 0, 0, 1, NULL, 345.0000, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, NULL, NULL, '2022-09-22 16:59:34', 'tm', 'Trendyol', 524, '2022-09-22 17:00:30', NULL, 1, 345.0000, 345.0000, 'wrw4t', '', '', NULL, NULL, NULL, NULL, NULL, NULL, 1), (388, 'product1', '', NULL, NULL, 'prod1', 0, 0, 1, NULL, 345.0000, NULL, NULL, NULL, NULL, 0.0000, NULL, NULL, NULL, NULL, '2022-09-22 16:59:34', 'ru', 'Trendyol', 524, '2022-09-22 17:00:30', NULL, 1, 345.0000, 345.0000, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 1); INSERT INTO `product_images` (`id`, `type`, `path`, `product_id`, `position`) VALUES (242, 'cdn', '/ty158/product/media/images/20210810/14/117324481/205878298/1/1_org_zoom.jpg', 504, 0), (243, 'cdn', '/ty157/product/media/images/20210810/14/117324481/205878298/2/2_org_zoom.jpg', 504, 1), (244, 'cdn', '/ty158/product/media/images/20210810/14/117324481/205878298/4/4_org_zoom.jpg', 504, 2), (245, 'cdn', '/ty156/product/media/images/20210810/14/117324481/205878298/5/5_org_zoom.jpg', 504, 3), (246, 'cdn', '/ty157/product/media/images/20210810/14/117324481/205878298/6/6_org_zoom.jpg', 504, 4), (247, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/2/2_org_zoom.jpg', 505, 0), (248, 'cdn', '/ty272/product/media/images/20211216/17/12276436/267845632/3/3_org_zoom.jpg', 505, 0), (249, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/4/4_org_zoom.jpg', 505, 0), (250, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/6/6_org_zoom.jpg', 505, 0), (251, 'cdn', '/ty272/product/media/images/20211216/17/12276436/267845632/7/7_org_zoom.jpg', 505, 0), (252, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/2/2_org_zoom.jpg', 506, 0), (253, 'cdn', '/ty272/product/media/images/20211216/17/12276436/267845632/3/3_org_zoom.jpg', 506, 0), (254, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/4/4_org_zoom.jpg', 506, 0), (255, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/6/6_org_zoom.jpg', 506, 0), (256, 'cdn', '/ty272/product/media/images/20211216/17/12276436/267845632/7/7_org_zoom.jpg', 506, 0), (257, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/2/2_org_zoom.jpg', 507, 0), (258, 'cdn', '/ty272/product/media/images/20211216/17/12276436/267845632/3/3_org_zoom.jpg', 507, 0), (259, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/4/4_org_zoom.jpg', 507, 0), (260, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/6/6_org_zoom.jpg', 507, 0), (261, 'cdn', '/ty272/product/media/images/20211216/17/12276436/267845632/7/7_org_zoom.jpg', 507, 0), (262, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/2/2_org_zoom.jpg', 508, 0), (263, 'cdn', '/ty272/product/media/images/20211216/17/12276436/267845632/3/3_org_zoom.jpg', 508, 0), (264, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/4/4_org_zoom.jpg', 508, 0), (265, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/6/6_org_zoom.jpg', 508, 0), (266, 'cdn', '/ty272/product/media/images/20211216/17/12276436/267845632/7/7_org_zoom.jpg', 508, 0), (267, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/2/2_org_zoom.jpg', 509, 0), (268, 'cdn', '/ty272/product/media/images/20211216/17/12276436/267845632/3/3_org_zoom.jpg', 509, 0), (269, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/4/4_org_zoom.jpg', 509, 0), (270, 'cdn', '/ty271/product/media/images/20211216/17/12276436/267845632/6/6_org_zoom.jpg', 509, 0), (271, 'cdn', '/ty272/product/media/images/20211216/17/12276436/267845632/7/7_org_zoom.jpg', 509, 0), (272, 'cdn', '/ty253/product/media/images/20211123/16/1034375/254826478/2/2_org_zoom.jpg', 510, 0), (273, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/3/3_org_zoom.jpg', 510, 0), (274, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/4/4_org_zoom.jpg', 510, 0), (275, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/5/5_org_zoom.jpg', 510, 0), (276, 'cdn', '/ty254/product/media/images/20211123/16/1034375/254826478/6/6_org_zoom.jpg', 510, 0), (277, 'cdn', '/ty253/product/media/images/20211123/16/1034375/254826478/2/2_org_zoom.jpg', 511, 0), (278, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/3/3_org_zoom.jpg', 511, 0), (279, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/4/4_org_zoom.jpg', 511, 0), (280, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/5/5_org_zoom.jpg', 511, 0), (281, 'cdn', '/ty254/product/media/images/20211123/16/1034375/254826478/6/6_org_zoom.jpg', 511, 0), (282, 'cdn', '/ty253/product/media/images/20211123/16/1034375/254826478/2/2_org_zoom.jpg', 512, 0), (283, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/3/3_org_zoom.jpg', 512, 0), (284, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/4/4_org_zoom.jpg', 512, 0), (285, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/5/5_org_zoom.jpg', 512, 0), (286, 'cdn', '/ty254/product/media/images/20211123/16/1034375/254826478/6/6_org_zoom.jpg', 512, 0), (287, 'cdn', '/ty253/product/media/images/20211123/16/1034375/254826478/2/2_org_zoom.jpg', 513, 0), (288, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/3/3_org_zoom.jpg', 513, 0), (289, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/4/4_org_zoom.jpg', 513, 0), (290, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/5/5_org_zoom.jpg', 513, 0), (291, 'cdn', '/ty254/product/media/images/20211123/16/1034375/254826478/6/6_org_zoom.jpg', 513, 0), (292, 'cdn', '/ty253/product/media/images/20211123/16/1034375/254826478/2/2_org_zoom.jpg', 514, 0), (293, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/3/3_org_zoom.jpg', 514, 0), (294, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/4/4_org_zoom.jpg', 514, 0), (295, 'cdn', '/ty252/product/media/images/20211123/16/1034375/254826478/5/5_org_zoom.jpg', 514, 0), (296, 'cdn', '/ty254/product/media/images/20211123/16/1034375/254826478/6/6_org_zoom.jpg', 514, 0), (297, 'cdn', '/ty158/product/media/images/20210810/14/117324481/205878298/1/1_org_zoom.jpg', 515, 0), (298, 'cdn', '/ty157/product/media/images/20210810/14/117324481/205878298/2/2_org_zoom.jpg', 515, 0), (299, 'cdn', '/ty158/product/media/images/20210810/14/117324481/205878298/4/4_org_zoom.jpg', 515, 0), (300, 'cdn', '/ty156/product/media/images/20210810/14/117324481/205878298/5/5_org_zoom.jpg', 515, 0), (301, 'cdn', '/ty157/product/media/images/20210810/14/117324481/205878298/6/6_org_zoom.jpg', 515, 0), (302, 'cdn', '/ty158/product/media/images/20210810/14/117324481/205878298/1/1_org_zoom.jpg', 516, 0), (303, 'cdn', '/ty157/product/media/images/20210810/14/117324481/205878298/2/2_org_zoom.jpg', 516, 0), (304, 'cdn', '/ty158/product/media/images/20210810/14/117324481/205878298/4/4_org_zoom.jpg', 516, 0), (305, 'cdn', '/ty156/product/media/images/20210810/14/117324481/205878298/5/5_org_zoom.jpg', 516, 0), (306, 'cdn', '/ty157/product/media/images/20210810/14/117324481/205878298/6/6_org_zoom.jpg', 516, 0), (307, 'cdn', '/ty158/product/media/images/20210810/14/117324481/205878298/1/1_org_zoom.jpg', 517, 0), (308, 'cdn', '/ty157/product/media/images/20210810/14/117324481/205878298/2/2_org_zoom.jpg', 517, 0), (309, 'cdn', '/ty158/product/media/images/20210810/14/117324481/205878298/4/4_org_zoom.jpg', 517, 0), (310, 'cdn', '/ty156/product/media/images/20210810/14/117324481/205878298/5/5_org_zoom.jpg', 517, 0), (311, 'cdn', '/ty157/product/media/images/20210810/14/117324481/205878298/6/6_org_zoom.jpg', 517, 0), (312, 'cdn', '/ty158/product/media/images/20210810/14/117324481/205878298/1/1_org_zoom.jpg', 518, 0), (313, 'cdn', '/ty157/product/media/images/20210810/14/117324481/205878298/2/2_org_zoom.jpg', 518, 0), (314, 'cdn', '/ty158/product/media/images/20210810/14/117324481/205878298/4/4_org_zoom.jpg', 518, 0), (315, 'cdn', '/ty156/product/media/images/20210810/14/117324481/205878298/5/5_org_zoom.jpg', 518, 0), (316, 'cdn', '/ty157/product/media/images/20210810/14/117324481/205878298/6/6_org_zoom.jpg', 518, 0), (317, 'cdn', '/ty158/product/media/images/20210810/14/117324481/205878298/1/1_org_zoom.jpg', 519, 0), (318, 'cdn', '/ty157/product/media/images/20210810/14/117324481/205878298/2/2_org_zoom.jpg', 519, 1), (319, 'cdn', '/ty158/product/media/images/20210810/14/117324481/205878298/4/4_org_zoom.jpg', 519, 2), (320, 'cdn', '/ty156/product/media/images/20210810/14/117324481/205878298/5/5_org_zoom.jpg', 519, 3), (321, 'cdn', '/ty157/product/media/images/20210810/14/117324481/205878298/6/6_org_zoom.jpg', 519, 4), (334, 'images', 'product/523/oQwym9uB0kzgXAridetjq1d5ZmsyjSzMj24hQf5Z.png', 523, 0), (335, 'images', 'product/524/a0NkIrmOMxq18udMhLni9tXI9nBRimstT9XqlxDd.png', 524, 0); INSERT INTO `product_inventories` (`id`, `qty`, `product_id`, `inventory_source_id`, `vendor_id`) VALUES (102, 0, 505, 1, 2), (103, 0, 506, 1, 2), (104, 0, 507, 1, 2), (105, 0, 508, 1, 2), (106, 10, 519, 1, 0), (107, 0, 505, 1, 0), (108, 0, 506, 1, 0), (109, 0, 507, 1, 0), (110, 0, 508, 1, 0), (111, 0, 509, 1, 0), (112, 0, 510, 1, 0), (113, 0, 511, 1, 0), (114, 0, 512, 1, 0), (115, 0, 513, 1, 0), (116, 12, 514, 1, 0), (117, 12, 515, 1, 0), (118, 11, 516, 1, 0), (119, 11, 517, 1, 0), (120, 11, 518, 1, 0), (121, 444, 523, 1, 0), (122, 234, 524, 1, 0); INSERT INTO `product_ordered_inventories` (`id`, `qty`, `product_id`, `channel_id`) VALUES (1, 6, 519, 1); INSERT INTO `product_reviews` (`id`, `title`, `rating`, `comment`, `status`, `created_at`, `updated_at`, `product_id`, `customer_id`, `name`) VALUES (1, 'tesas', 5, 'awadwdasdw', 'pending', '2022-02-25 15:03:17', '2022-02-25 15:03:17', 504, 44, 'Merdan Muhammedow'); INSERT INTO `product_super_attributes` (`product_id`, `attribute_id`) VALUES (504, 23), (504, 24); INSERT INTO `products` (`id`, `sku`, `type`, `created_at`, `updated_at`, `parent_id`, `attribute_family_id`, `additional`, `brand_id`) VALUES (504, 'p-226014587', 'configurable', '2022-01-12 13:03:31', '2022-02-01 12:28:55', NULL, 2, NULL, 2), (505, '164075677XS', 'simple', '2022-01-12 13:03:31', '2022-01-12 13:03:31', 504, 2, NULL, NULL), (506, '164075677S', 'simple', '2022-01-12 13:03:31', '2022-01-12 13:03:31', 504, 2, NULL, NULL), (507, '164075677M', 'simple', '2022-01-12 13:03:31', '2022-01-12 13:03:31', 504, 2, NULL, NULL), (508, '164075677L', 'simple', '2022-01-12 13:03:31', '2022-01-12 13:03:31', 504, 2, NULL, NULL), (509, '164075677XL', 'simple', '2022-01-12 13:03:31', '2022-01-12 13:03:31', 504, 2, NULL, NULL), (510, '153503000XS', 'simple', '2022-01-12 13:03:32', '2022-01-12 13:03:32', 504, 2, NULL, NULL), (511, '153503000S', 'simple', '2022-01-12 13:03:32', '2022-01-12 13:03:32', 504, 2, NULL, NULL), (512, '153503000M', 'simple', '2022-01-12 13:03:32', '2022-01-12 13:03:32', 504, 2, NULL, NULL), (513, '153503000L', 'simple', '2022-01-12 13:03:32', '2022-01-12 13:03:32', 504, 2, NULL, NULL), (514, '153503000XL', 'simple', '2022-01-12 13:03:32', '2022-01-12 13:03:32', 504, 2, NULL, NULL), (515, '126014587XS', 'simple', '2022-01-12 13:03:32', '2022-01-12 13:03:32', 504, 2, NULL, NULL), (516, '126014587S', 'simple', '2022-01-12 13:03:32', '2022-01-12 13:03:32', 504, 2, NULL, NULL), (517, '126014587M', 'simple', '2022-01-12 13:03:33', '2022-01-12 13:03:33', 504, 2, NULL, NULL), (518, '126014587L', 'simple', '2022-01-12 13:03:33', '2022-01-12 13:03:33', 504, 2, NULL, NULL), (519, '126014587XXLL', 'simple', '2022-01-12 13:03:33', '2022-01-27 19:38:32', 504, 2, NULL, 1), (523, 'upload', 'simple', '2022-09-22 16:55:12', '2022-09-22 16:56:06', NULL, 1, NULL, 1), (524, 'product1', 'simple', '2022-09-22 16:59:34', '2022-09-22 17:00:30', NULL, 1, NULL, 1); INSERT INTO `refund_items` (`id`, `name`, `description`, `sku`, `qty`, `price`, `base_price`, `total`, `base_total`, `tax_amount`, `base_tax_amount`, `discount_percent`, `discount_amount`, `base_discount_amount`, `product_id`, `product_type`, `order_item_id`, `refund_id`, `parent_id`, `additional`, `created_at`, `updated_at`) VALUES (1, 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, '126014587XXLL', 1, 89.9900, 89.9900, 89.9900, 89.9900, 8.9990, 8.9990, 0.0000, 9.0000, 9.0000, 519, 'Webkul\\Product\\Models\\Product', 2, 1, NULL, '{\"_token\": \"mqlWax6vs5UTAr68Lq4WTATrNZbMDMg3cQmkCbvu\", \"locale\": \"tr\", \"quantity\": 3, \"product_id\": \"519\"}', '2022-03-18 16:07:18', '2022-03-18 16:07:18'); INSERT INTO `refunds` (`id`, `increment_id`, `state`, `email_sent`, `total_qty`, `base_currency_code`, `channel_currency_code`, `order_currency_code`, `adjustment_refund`, `base_adjustment_refund`, `adjustment_fee`, `base_adjustment_fee`, `sub_total`, `base_sub_total`, `grand_total`, `base_grand_total`, `shipping_amount`, `base_shipping_amount`, `tax_amount`, `base_tax_amount`, `discount_percent`, `discount_amount`, `base_discount_amount`, `order_id`, `created_at`, `updated_at`) VALUES (1, NULL, 'refunded', 0, 1, 'TL', 'TL', 'TL', 10.0000, 10.0000, 10.0000, 10.0000, 89.9900, 89.9900, 209.9890, 209.9890, 120.0000, 120.0000, 8.9990, 8.9990, 0.0000, 9.0000, 9.0000, 2, '2022-03-18 16:07:18', '2022-03-18 16:07:18'); INSERT INTO `roles` (`id`, `name`, `description`, `permission_type`, `permissions`, `created_at`, `updated_at`) VALUES (1, 'Administrator', 'Administrator role', 'all', NULL, NULL, NULL); INSERT INTO `seller_brands` (`seller_id`, `brand_id`) VALUES (1, 1), (1, 2), (2, 2); INSERT INTO `seller_categories` (`id`, `seller_id`, `categories`, `created_at`, `updated_at`, `type`) VALUES (1, 1, '[\"1187\", \"1186\", \"1185\", \"1184\"]', '2021-12-02 19:51:17', '2022-01-19 15:18:57', 'main'), (2, 2, '[\"1187\", \"1186\", \"1185\", \"1184\"]', '2021-12-02 19:51:39', '2022-01-19 15:19:13', 'main'); INSERT INTO `shipment_items` (`id`, `name`, `description`, `sku`, `qty`, `weight`, `price`, `base_price`, `total`, `base_total`, `product_id`, `product_type`, `order_item_id`, `shipment_id`, `additional`, `created_at`, `updated_at`) VALUES (1, 'Siyah Baskılı Oversize Örme İnce Sweatshirt TWOAW22SW0180', NULL, '126014587XXLL', 1, 1, 161.9820, 89.9900, 161.9820, 89.9900, 519, 'Webkul\\Product\\Models\\Product', 1, 1, '{\"_token\": \"GxTnPUafDHQp8BIuOAbdD4I1FzFhW6Beaayq011X\", \"locale\": \"tr\", \"quantity\": 1, \"product_id\": \"519\"}', '2022-03-03 13:26:07', '2022-03-03 13:26:07'); INSERT INTO `shipments` (`id`, `status`, `total_qty`, `total_weight`, `carrier_code`, `carrier_title`, `track_number`, `email_sent`, `customer_id`, `customer_type`, `order_id`, `order_address_id`, `created_at`, `updated_at`, `inventory_source_id`, `inventory_source_name`) VALUES (1, NULL, 1, 1, NULL, 'mng', '12354', 0, 44, 'Webkul\\Customer\\Models\\Customer', 1, 46, '2022-03-03 13:26:07', '2022-03-03 13:26:07', 1, 'Default'); INSERT INTO `tax_categories` (`id`, `code`, `name`, `description`, `created_at`, `updated_at`) VALUES (1, 'TMTAXCAT', 'Tm tax category', 'hyzmat tutumu', '2021-10-23 20:09:05', '2021-10-23 20:09:05'); INSERT INTO `tax_categories_tax_rates` (`id`, `tax_category_id`, `tax_rate_id`, `created_at`, `updated_at`) VALUES (1, 1, 1, NULL, NULL); INSERT INTO `tax_rates` (`id`, `identifier`, `is_zip`, `zip_code`, `zip_from`, `zip_to`, `state`, `country`, `tax_rate`, `created_at`, `updated_at`) VALUES (1, 'TMTAX', 0, '', NULL, NULL, '', 'TM', 10.0000, '2021-10-23 20:08:07', '2022-03-02 16:23:07'); INSERT INTO `velocity_contents` (`id`, `content_type`, `position`, `status`, `created_at`, `updated_at`) VALUES (1, 'category', 1, 1, '2021-12-05 14:58:58', '2021-12-05 14:58:58'); INSERT INTO `velocity_contents_translations` (`id`, `content_id`, `title`, `custom_title`, `custom_heading`, `page_link`, `link_target`, `catalog_type`, `products`, `description`, `locale`, `created_at`, `updated_at`) VALUES (1, 1, 'test-menu', NULL, NULL, 'promotion', 0, NULL, NULL, NULL, 'tr', NULL, NULL), (2, 1, 'test-menu', NULL, NULL, NULL, 0, NULL, NULL, NULL, 'tm', NULL, NULL), (3, 1, 'test-menu', NULL, NULL, NULL, 0, NULL, NULL, NULL, 'ru', NULL, NULL); INSERT INTO `velocity_meta_data` (`id`, `home_page_content`, `footer_left_content`, `footer_middle_content`, `slider`, `advertisement`, `sidebar_category_count`, `featured_product_count`, `new_products_count`, `subscription_bar_content`, `created_at`, `updated_at`, `product_view_images`, `product_policy`, `locale`, `channel`, `header_content_count`) VALUES (1, '@include(\'shop::home.advertisements.advertisement-four\')@include(\'shop::home.featured-products\') @include(\'shop::home.product-policy\') @include(\'shop::home.advertisements.advertisement-three\') @include(\'shop::home.new-products\') @include(\'shop::home.advertisements.advertisement-two\')
', 'velocity::app.admin.meta-data.footer-left-raw-content', '', 1, NULL, 9, 10, 10, '', NULL, NULL, NULL, '@include(\'shop::home.advertisements.advertisement-four\')@include(\'shop::home.featured-products\') @include(\'shop::home.product-policy\') @include(\'shop::home.advertisements.advertisement-three\') @include(\'shop::home.new-products\') @include(\'shop::home.advertisements.advertisement-two\')
', 'Yazılımlar üretmeyi ve dünyada karşılaştığımız sorunları bu şekilde çözmeyi çok seviyoruz. Hedeflerimize büyük önem veriyor, en iyi olduğumuz teknoloji uzmanlığı ile kurumsal işleriniz için birin sınıf kullanıcı dostu yazılım ve uygulamalar oluşturmak için kaynaklarımıza yatırım yapıyoruz.
', '', 1, NULL, 9, 10, 10, '', '2021-12-05 14:45:46', '2021-12-05 14:45:46', NULL, '