add 新增 请假表 申请编号字段sql

This commit is contained in:
疯狂的狮子Li
2025-08-18 09:44:22 +08:00
parent f02601ab2c
commit 09a51478a5
8 changed files with 32 additions and 1 deletions

View File

@ -55,3 +55,6 @@ create table flow_instance_biz_ext (
business_id varchar(255) null comment '业务Id',
PRIMARY KEY (id)
) ENGINE = InnoDB COMMENT '流程实例业务扩展表';
ALTER TABLE `test_leave`
ADD COLUMN `apply_code` varchar(50) NULL DEFAULT NULL COMMENT '申请编号' AFTER `tenant_id`;