优化 project_process DDL SQL

master
Harry Yang 2022-12-27 15:20:04 +08:00
parent cdfd58d7bc
commit c4f863a5bc
1 changed files with 4 additions and 2 deletions

View File

@ -5,7 +5,9 @@ create table project_process
(
id int auto_increment primary key comment 'ID',
apply_date date null comment '申请时间',
apply_dept varchar(255) null comment '申请部门',
apply_dept varchar(255) null comment '申请部门(逗号分割)',
apply_dept_id varchar(255) null comment '申请部门ID(逗号分割)',
apply_dept_leader_id int null comment '申请部门领导ID',
apply_dept_leader_name varchar(255) null comment '申请人领导',
apply_person_name varchar(255) null comment '申请人姓名',
apply_person_id int null comment '申请人ID',
@ -30,7 +32,7 @@ create table project_process
);
alter table project_process
modify current_audit_id varchar(255) null comment '当前审核人ID逗号分割';
add apply_dept_leader_id int null comment '申请部门领导ID';
# 采购合同
create table procurement_contract