xiatian 11 months ago
parent
commit
eda2e5c700
1 changed files with 15 additions and 1 deletions
  1. 15 1
      upgrade-202405/20240528至现在-待升级内容.txt

+ 15 - 1
upgrade-202405/20240528至现在-待升级内容.txt

@@ -6,7 +6,21 @@ release_v5.0.4
 ***** ***** ***** ***** ***** ***** *****
 
 MySql部分
-暂无
+
+DROP TABLE IF EXISTS `ec_e_org_ip`;
+CREATE TABLE `ec_e_org_ip` (
+  `id` bigint(20) NOT NULL AUTO_INCREMENT,
+  `root_org_id` bigint(20) NOT NULL,
+  `org_id` bigint(20) NOT NULL,
+  `ip` varchar(255) NOT NULL,
+  `creation_by` bigint(20) NOT NULL,
+  `creation_time` datetime NOT NULL,
+  `update_by` bigint(20) NOT NULL,
+  `update_time` datetime NOT NULL,
+  `remark` varchar(100) DEFAULT NULL,
+  PRIMARY KEY (`id`),
+  UNIQUE KEY `IDX_E_ORG_IP_01` (`root_org_id`,`org_id`,`ip`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;
 
 MongoDB部分
 暂无