xiatian 11 月之前
父节点
当前提交
eda2e5c700
共有 1 个文件被更改,包括 15 次插入1 次删除
  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部分
 暂无