更新sql

This commit is contained in:
季圣华 2023-08-16 00:24:27 +08:00
parent 0f3481222b
commit 34fcdf9aea
2 changed files with 9 additions and 1 deletions

View File

@ -724,6 +724,7 @@ INSERT INTO `jsh_platform_config` VALUES ('14', 'aliOss_accessKeyId', '阿里OSS
INSERT INTO `jsh_platform_config` VALUES ('15', 'aliOss_accessKeySecret', '阿里OSS-accessKeySecret', '');
INSERT INTO `jsh_platform_config` VALUES ('16', 'aliOss_bucketName', '阿里OSS-bucketName', '');
INSERT INTO `jsh_platform_config` VALUES ('17', 'aliOss_linkUrl', '阿里OSS-linkUrl', '');
INSERT INTO `jsh_platform_config` VALUES ('18', 'bill_excel_url', '单据Excel地址', '');
-- ----------------------------
-- Table structure for jsh_role

View File

@ -1517,4 +1517,11 @@ INSERT INTO `jsh_platform_config` (`platform_key`, `platform_key_info`, `platfor
-- 给商家表增加操作员字段,并给该字段赋默认值
-- --------------------------------------------------------
alter table jsh_supplier add creator bigint(20) DEFAULT NULL COMMENT '操作员' after sort;
update jsh_supplier set creator=tenant_id;
update jsh_supplier set creator=tenant_id;
-- --------------------------------------------------------
-- 时间 2023年08月15日
-- by jishenghua
-- 给平台配置表增加单据Excel地址
-- --------------------------------------------------------
INSERT INTO `jsh_platform_config` (`platform_key`, `platform_key_info`, `platform_value`) VALUES ('bill_excel_url', '单据Excel地址', '');