File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -848,3 +848,14 @@ CREATE TABLE `cloud`.`s2s_vpn_gateway_details` (
848848 CONSTRAINT ` fk_s2s_vpn_gateway_details__s2s_vpn_gateway_id` FOREIGN KEY ` fk_s2s_vpn_gateway_details__s2s_vpn_gateway_id` (` s2s_vpn_gateway_id` ) REFERENCES ` s2s_vpn_gateway` (` id` ) ON DELETE CASCADE
849849) ENGINE= InnoDB DEFAULT CHARSET= utf8;
850850
851+
852+ CREATE TABLE `cloud `.` s2s_customer_gateway_details` (
853+ ` id` bigint unsigned NOT NULL auto_increment,
854+ ` s2s_customer_gateway_id` bigint unsigned NOT NULL COMMENT ' VPC gateway id' ,
855+ ` name` varchar (255 ) NOT NULL ,
856+ ` value` varchar (1024 ) NOT NULL ,
857+ ` display` tinyint (1 ) NOT NULL DEFAULT ' 0' COMMENT ' True if the detail can be displayed to the end user' ,
858+ PRIMARY KEY (` id` ),
859+ CONSTRAINT ` fk_s2s_customer_gateway_details__s2s_customer_gateway_id` FOREIGN KEY ` fk_s2s_customer_gateway_details__s2s_customer_gateway_id` (` s2s_customer_gateway_id` ) REFERENCES ` s2s_customer_gateway` (` id` ) ON DELETE CASCADE
860+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8;
861+
You can’t perform that action at this time.
0 commit comments