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.
9 lines
223 B
9 lines
223 B
alter table road
|
|
add del bool default false;
|
|
|
|
alter table road
|
|
add spot bool default true;
|
|
|
|
comment on column road.del is '标志道路是否被删除';
|
|
|
|
comment on column road.spot is '是否应该在抽查中被抽取';
|