@@ -732,6 +732,7 @@ CREATE TABLE IF NOT EXISTS pod_cluster (
732732 region CHAR (64 ) DEFAULT ' ' ,
733733 sub_domain CHAR (64 ) DEFAULT ' ' ,
734734 domain CHAR (64 ) DEFAULT ' ' ,
735+ uid CHAR (64 ) DEFAULT ' ' ,
735736 lcuuid CHAR (64 ) DEFAULT ' ' ,
736737 created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ,
737738 updated_at DATETIME NOT NULL ON UPDATE CURRENT_TIMESTAMP DEFAULT CURRENT_TIMESTAMP ,
@@ -863,6 +864,7 @@ CREATE TABLE IF NOT EXISTS pod_namespace (
863864 region CHAR (64 ) DEFAULT ' ' ,
864865 sub_domain CHAR (64 ) DEFAULT ' ' ,
865866 domain CHAR (64 ) DEFAULT ' ' ,
867+ uid CHAR (64 ) DEFAULT ' ' ,
866868 lcuuid CHAR (64 ) DEFAULT ' ' ,
867869 created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ,
868870 updated_at DATETIME NOT NULL ON UPDATE CURRENT_TIMESTAMP DEFAULT CURRENT_TIMESTAMP ,
@@ -2729,7 +2731,7 @@ CREATE TABLE IF NOT EXISTS custom_service (
27292731 id INTEGER NOT NULL AUTO_INCREMENT PRIMARY KEY ,
27302732 name VARCHAR (128 ) NOT NULL ,
27312733 type INTEGER DEFAULT 0 COMMENT ' 0: unknown 1: IP 2: PORT 3: chost 4: pod_service 5: pod_group' ,
2732- match_type INTEGER DEFAULT 0 COMMENT ' 0: unkonwn 1: name match 2: uid match' ,
2734+ match_type INTEGER DEFAULT 1 COMMENT ' 0: unkonwn 1: name match 2: uid match' ,
27332735 epc_id INTEGER DEFAULT 0 ,
27342736 pod_cluster_id INTEGER DEFAULT 0 ,
27352737 pod_namespace_id INTEGER DEFAULT 0 ,
0 commit comments