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.
18 lines
342 B
18 lines
342 B
2 years ago
|
alter table project
|
||
|
add start_time timestamp with time zone;
|
||
|
|
||
|
comment on column project.start_time is '开工时间';
|
||
|
|
||
|
|
||
|
alter table project
|
||
|
add remark varchar(300);
|
||
|
|
||
|
comment on column project.remark is '备注';
|
||
|
|
||
|
alter table project
|
||
|
add qutity_unit varchar(1024);
|
||
|
|
||
|
comment on column project.qutity_unit is '质量检测单位';
|
||
|
|
||
|
|