物管理后端
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
642 B

1 year ago
  1. ALTER TABLE sys_tenant_detail ADD COLUMN if not EXISTS title VARCHAR(255) ;
  2. COMMENT ON COLUMN "public"."sys_tenant_detail"."title" IS '企业标题';
  3. ALTER TABLE iot_thing_source ADD COLUMN if not EXISTS thing_attr_group VARCHAR(255) ;
  4. COMMENT ON COLUMN "public"."iot_thing_source"."thing_attr_group" IS '标签组';
  5. ALTER TABLE iot_thing_source ADD COLUMN if not EXISTS start_status VARCHAR(255) ;
  6. COMMENT ON COLUMN "public"."iot_thing_source"."start_status" IS '属性启用状态';
  7. ALTER TABLE iot_visual_component ADD COLUMN if not EXISTS config text;
  8. COMMENT ON COLUMN "public"."iot_visual_component"."config" IS '部件配置';