a:4:{s:4:"hash";s:0:"";s:5:"mtime";i:1762863067;s:6:"expire";i:9999999999;s:4:"tags";s:40:"080_DB_PDO_MYSQL_DDL,080_DB_DDL,080_MAGE";}
"CREATE TABLE `stripe_webhook_events` (\n  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',\n  `event_id` varchar(255) NOT NULL COMMENT 'Event ID',\n  `event_type` varchar(255) NOT NULL COMMENT 'Event Type',\n  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created at date',\n  `order_increment_id` varchar(255) DEFAULT NULL COMMENT 'Order Increment ID',\n  `is_processed` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Whether we have processed the event',\n  `processed_at` timestamp NULL DEFAULT NULL COMMENT 'Processed at date',\n  `retries` int(11) NOT NULL DEFAULT 0 COMMENT 'Amount of times we tried to process the event',\n  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated at date',\n  `last_error` text DEFAULT NULL COMMENT 'Last processing error',\n  `last_error_status_code` int(10) unsigned DEFAULT NULL COMMENT 'Last http response status code',\n  `last_error_at` timestamp NULL DEFAULT NULL COMMENT 'Time of the last error',\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `STRIPE_WEBHOOK_EVENTS_EVENT_ID` (`event_id`),\n  KEY `STRIPE_WEBHOOK_EVENTS_CREATED_AT` (`created_at`),\n  KEY `STRIPE_WEBHOOK_EVENTS_ORDER_INCREMENT_ID` (`order_increment_id`),\n  KEY `STRIPE_WEBHOOK_EVENTS_IS_PROCESSED` (`is_processed`),\n  KEY `STRIPE_WEBHOOK_EVENTS_RETRIES` (`retries`)\n) ENGINE=InnoDB AUTO_INCREMENT=726 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Processed webhook events'"