a:4:{s:4:"hash";s:0:"";s:5:"mtime";i:1762863058;s:6:"expire";i:9999999999;s:4:"tags";s:40:"080_DB_PDO_MYSQL_DDL,080_DB_DDL,080_MAGE";}
"CREATE TABLE `integration` (\n  `integration_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Integration ID',\n  `name` varchar(255) NOT NULL COMMENT 'Integration name is displayed in the admin interface',\n  `email` varchar(255) NOT NULL COMMENT 'Email address of the contact person',\n  `endpoint` varchar(255) DEFAULT NULL COMMENT 'Endpoint for posting consumer credentials',\n  `status` smallint(5) unsigned NOT NULL COMMENT 'Integration status',\n  `consumer_id` int(10) unsigned DEFAULT NULL COMMENT 'Oauth consumer',\n  `created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Creation Time',\n  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Update Time',\n  `setup_type` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Integration type - manual or config file',\n  `identity_link_url` varchar(255) DEFAULT NULL COMMENT 'Identity linking Url',\n  PRIMARY KEY (`integration_id`),\n  UNIQUE KEY `INTEGRATION_NAME` (`name`),\n  UNIQUE KEY `INTEGRATION_CONSUMER_ID` (`consumer_id`),\n  CONSTRAINT `INTEGRATION_CONSUMER_ID_OAUTH_CONSUMER_ENTITY_ID` FOREIGN KEY (`consumer_id`) REFERENCES `oauth_consumer` (`entity_id`) ON DELETE CASCADE\n) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='integration'"