You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
234 B
15 lines
234 B
1 year ago
|
alter table maintenance_plan
|
||
|
add record_id integer[];
|
||
|
|
||
|
comment on column maintenance_plan.record_id is '响应记录id';
|
||
|
|
||
|
|
||
|
|
||
|
alter table maintenance_record
|
||
|
add files jsonb;
|
||
|
|
||
|
comment on column maintenance_record.files is '文件';
|
||
|
|
||
|
|
||
|
|