a:4:{s:4:"hash";s:0:"";s:5:"mtime";i:1762863066;s:6:"expire";i:9999999999;s:4:"tags";s:40:"080_DB_PDO_MYSQL_DDL,080_DB_DDL,080_MAGE";}
"CREATE TABLE `sales_shipment` (\n  `entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',\n  `store_id` smallint(5) unsigned DEFAULT NULL COMMENT 'Store ID',\n  `total_weight` decimal(12,4) DEFAULT NULL COMMENT 'Total Weight',\n  `total_qty` decimal(12,4) DEFAULT NULL COMMENT 'Total Qty',\n  `email_sent` smallint(5) unsigned DEFAULT NULL COMMENT 'Email Sent',\n  `send_email` smallint(5) unsigned DEFAULT NULL COMMENT 'Send Email',\n  `order_id` int(10) unsigned NOT NULL COMMENT 'Order ID',\n  `customer_id` int(11) DEFAULT NULL COMMENT 'Customer ID',\n  `shipping_address_id` int(11) DEFAULT NULL COMMENT 'Shipping Address ID',\n  `billing_address_id` int(11) DEFAULT NULL COMMENT 'Billing Address ID',\n  `shipment_status` int(11) DEFAULT NULL COMMENT 'Shipment Status',\n  `increment_id` varchar(50) DEFAULT NULL COMMENT 'Increment 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  `packages` text DEFAULT NULL COMMENT 'Packed Products in Packages',\n  `shipping_label` mediumblob DEFAULT NULL COMMENT 'Shipping Label Content',\n  `customer_note` text DEFAULT NULL COMMENT 'Customer Note',\n  `customer_note_notify` smallint(5) unsigned DEFAULT NULL COMMENT 'Customer Note Notify',\n  PRIMARY KEY (`entity_id`),\n  UNIQUE KEY `SALES_SHIPMENT_INCREMENT_ID_STORE_ID` (`increment_id`,`store_id`),\n  KEY `SALES_SHIPMENT_STORE_ID` (`store_id`),\n  KEY `SALES_SHIPMENT_TOTAL_QTY` (`total_qty`),\n  KEY `SALES_SHIPMENT_ORDER_ID` (`order_id`),\n  KEY `SALES_SHIPMENT_CREATED_AT` (`created_at`),\n  KEY `SALES_SHIPMENT_UPDATED_AT` (`updated_at`),\n  KEY `SALES_SHIPMENT_SEND_EMAIL` (`send_email`),\n  KEY `SALES_SHIPMENT_EMAIL_SENT` (`email_sent`),\n  CONSTRAINT `SALES_SHIPMENT_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE,\n  CONSTRAINT `SALES_SHIPMENT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE SET NULL\n) ENGINE=InnoDB AUTO_INCREMENT=300756 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Sales Flat Shipment'"