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.
10 lines
270 B
10 lines
270 B
2 years ago
|
create type enum_datasource_type as enum ('原数据库', '备份数据库');
|
||
|
|
||
|
alter table t_data_source
|
||
|
alter column mount_path drop not null;
|
||
|
|
||
|
alter table t_data_source
|
||
|
add type enum_datasource_type;
|
||
|
|
||
|
comment on column t_data_source.type is '数据源类型';
|