Browse Source

feat:fix bugs

dev
zhaobing’ 1 year ago
parent
commit
9e9ce4be2a
  1. 11
      script/3.4/schema/1.update_project_correlation.sql

11
script/3.4/schema/1.update_project_correlation.sql

@ -1,16 +1,11 @@
alter table project_correlation alter table project_correlation
add "maintenanceETime" timestamp with time zone; add "maintenance_end" timestamp with time zone;
comment on column project_correlation."maintenanceETime" is '维保结束时间' comment on column project_correlation."maintenanceETime" is '维保结束时间';
alter table project_correlation alter table project_correlation
add "maintenanceSTime" timestamp with time zone; add "maintenance_start" timestamp with time zone;
comment on column project_correlation."maintenanceSTime" is '维保开始时间'; comment on column project_correlation."maintenanceSTime" is '维保开始时间';
alter table project_correlation
rename column "maintenanceETime" to maintenance_end;
alter table project_correlation
rename column "maintenanceSTime" to maintenance_start;

Loading…
Cancel
Save