把商品扩展字段表改为带租户id的模式

This commit is contained in:
jishenghua
2025-03-25 23:37:31 +08:00
parent ef587ae8f9
commit a9edd44f6c
10 changed files with 190 additions and 37 deletions

View File

@@ -1635,4 +1635,12 @@ update jsh_function set name='多单位' where number='010103';
-- by jishenghua
-- 给地址字段调整长度
-- --------------------------------------------------------
alter table jsh_supplier change address address varchar(100) DEFAULT NULL COMMENT '地址';
alter table jsh_supplier change address address varchar(100) DEFAULT NULL COMMENT '地址';
-- --------------------------------------------------------
-- 时间 2025年3月25日
-- by jishenghua
-- 给产品扩展字段表增加租户id字段
-- 另外注意:需要手动把商品属性菜单分配给租户角色
-- --------------------------------------------------------
alter table jsh_material_property add tenant_id bigint(20) DEFAULT NULL COMMENT '租户id' after another_name;