a:4:{s:4:"hash";s:0:"";s:5:"mtime";i:1763060676;s:6:"expire";i:9999999999;s:4:"tags";s:40:"efd_DB_PDO_MYSQL_DDL,efd_DB_DDL,efd_MAGE";}
"CREATE TABLE `integration` (\n  `integration_id` int 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 unsigned NOT NULL COMMENT 'Integration status',\n  `consumer_id` int 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 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=2 DEFAULT CHARSET=utf8mb3 COMMENT='integration'"