给商品和财务单据的备注修改字段长度

This commit is contained in:
季圣华
2022-09-13 22:33:41 +08:00
parent c9912b398f
commit 2b3e980043
3 changed files with 11 additions and 3 deletions

View File

@@ -1399,4 +1399,12 @@ update jsh_role set enabled=1;
-- by jishenghua
-- 给产品属性表移除属性字段
-- --------------------------------------------------------
alter table jsh_material_attribute drop column attribute_field;
alter table jsh_material_attribute drop column attribute_field;
-- --------------------------------------------------------
-- 时间 2022年09月13日
-- by jishenghua
-- 给商品和财务单据的备注修改字段长度
-- --------------------------------------------------------
alter table jsh_material change remark remark varchar(500) DEFAULT NULL COMMENT '备注';
alter table jsh_account_head change remark remark varchar(1000) DEFAULT NULL COMMENT '备注';