运维服务中台
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.
 
 
 
 
 

12 lines
248 B

create table device_model
(
id serial
constraint device_model_pk
primary key,
model_name text
);
comment on table device_model is '设备类型表';
comment on column device_model.model_name is '类型名字';