a:4:{s:4:"hash";s:0:"";s:5:"mtime";i:1762863063;s:6:"expire";i:9999999999;s:4:"tags";s:40:"080_DB_PDO_MYSQL_DDL,080_DB_DDL,080_MAGE";}
"CREATE TABLE `quote_item` (\n  `item_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Item ID',\n  `quote_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quote ID',\n  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',\n  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',\n  `product_id` int(10) unsigned DEFAULT NULL COMMENT 'Product ID',\n  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',\n  `parent_item_id` int(10) unsigned DEFAULT NULL COMMENT 'Parent Item ID',\n  `is_virtual` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Virtual',\n  `sku` varchar(255) DEFAULT NULL COMMENT 'Sku',\n  `name` varchar(255) DEFAULT NULL COMMENT 'Name',\n  `description` text DEFAULT NULL COMMENT 'Description',\n  `applied_rule_ids` text DEFAULT NULL COMMENT 'Applied Rule Ids',\n  `additional_data` text DEFAULT NULL COMMENT 'Additional Data',\n  `is_qty_decimal` smallint(5) unsigned DEFAULT NULL COMMENT 'Is Qty Decimal',\n  `no_discount` smallint(5) unsigned DEFAULT 0 COMMENT 'No Discount',\n  `weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Weight',\n  `qty` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Qty',\n  `price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Price',\n  `base_price` decimal(12,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Price',\n  `custom_price` decimal(12,4) DEFAULT NULL COMMENT 'Custom Price',\n  `discount_percent` decimal(12,4) DEFAULT 0.0000 COMMENT 'Discount Percent',\n  `discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Discount Amount',\n  `base_discount_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Discount Amount',\n  `tax_percent` decimal(12,4) DEFAULT 0.0000 COMMENT 'Tax Percent',\n  `tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Tax Amount',\n  `base_tax_amount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Base Tax Amount',\n  `row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Row Total',\n  `base_row_total` decimal(20,4) NOT NULL DEFAULT 0.0000 COMMENT 'Base Row Total',\n  `row_total_with_discount` decimal(20,4) DEFAULT 0.0000 COMMENT 'Row Total With Discount',\n  `row_weight` decimal(12,4) DEFAULT 0.0000 COMMENT 'Row Weight',\n  `product_type` varchar(255) DEFAULT NULL COMMENT 'Product Type',\n  `base_tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Base Tax Before Discount',\n  `tax_before_discount` decimal(20,4) DEFAULT NULL COMMENT 'Tax Before Discount',\n  `original_custom_price` decimal(12,4) DEFAULT NULL COMMENT 'Original Custom Price',\n  `redirect_url` varchar(255) DEFAULT NULL COMMENT 'Redirect Url',\n  `base_cost` decimal(12,4) DEFAULT NULL COMMENT 'Base Cost',\n  `price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Price Incl Tax',\n  `base_price_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Price Incl Tax',\n  `row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Row Total Incl Tax',\n  `base_row_total_incl_tax` decimal(20,4) DEFAULT NULL COMMENT 'Base Row Total Incl Tax',\n  `discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Discount Tax Compensation Amount',\n  `base_discount_tax_compensation_amount` decimal(20,4) DEFAULT NULL COMMENT 'Base Discount Tax Compensation Amount',\n  `event_id` int(11) DEFAULT NULL COMMENT 'Event Id',\n  `giftregistry_item_id` int(11) DEFAULT NULL COMMENT 'Giftregistry Item Id',\n  `gift_message_id` int(11) DEFAULT NULL COMMENT 'Gift Message ID',\n  `gw_id` int(11) DEFAULT NULL COMMENT 'Gw Id',\n  `gw_base_price` decimal(12,4) DEFAULT NULL COMMENT 'Gw Base Price',\n  `gw_price` decimal(12,4) DEFAULT NULL COMMENT 'Gw Price',\n  `gw_base_tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Gw Base Tax Amount',\n  `gw_tax_amount` decimal(12,4) DEFAULT NULL COMMENT 'Gw Tax Amount',\n  `free_shipping` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Free Shipping',\n  `weee_tax_applied` text DEFAULT NULL COMMENT 'Weee Tax Applied',\n  `weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Amount',\n  `weee_tax_applied_row_amount` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Applied Row Amount',\n  `weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Disposition',\n  `weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Weee Tax Row Disposition',\n  `base_weee_tax_applied_amount` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Amount',\n  `base_weee_tax_applied_row_amnt` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Applied Row Amnt',\n  `base_weee_tax_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Disposition',\n  `base_weee_tax_row_disposition` decimal(12,4) DEFAULT NULL COMMENT 'Base Weee Tax Row Disposition',\n  PRIMARY KEY (`item_id`),\n  KEY `QUOTE_ITEM_PARENT_ITEM_ID` (`parent_item_id`),\n  KEY `QUOTE_ITEM_PRODUCT_ID` (`product_id`),\n  KEY `QUOTE_ITEM_QUOTE_ID` (`quote_id`),\n  KEY `QUOTE_ITEM_STORE_ID` (`store_id`),\n  CONSTRAINT `QUOTE_ITEM_PARENT_ITEM_ID_QUOTE_ITEM_ITEM_ID` FOREIGN KEY (`parent_item_id`) REFERENCES `quote_item` (`item_id`) ON DELETE CASCADE,\n  CONSTRAINT `QUOTE_ITEM_QUOTE_ID_QUOTE_ENTITY_ID` FOREIGN KEY (`quote_id`) REFERENCES `quote` (`entity_id`) ON DELETE CASCADE,\n  CONSTRAINT `QUOTE_ITEM_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL\n) ENGINE=InnoDB AUTO_INCREMENT=2636320 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Sales Flat Quote Item'"