From fd0331c2d546422be190131fe2a678c5e180f328 Mon Sep 17 00:00:00 2001 From: xiachao Date: Thu, 12 Sep 2024 14:35:06 +0800 Subject: [PATCH] =?UTF-8?q?dml=20sql=E8=BF=AD=E4=BB=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- help/sql/dml_1.0.1.sql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 help/sql/dml_1.0.1.sql diff --git a/help/sql/dml_1.0.1.sql b/help/sql/dml_1.0.1.sql new file mode 100644 index 0000000..54f6bda --- /dev/null +++ b/help/sql/dml_1.0.1.sql @@ -0,0 +1,11 @@ +ALTER TABLE sys_tenant_detail ADD COLUMN if not EXISTS title VARCHAR(255) ; +COMMENT ON COLUMN "public"."sys_tenant_detail"."title" IS '企业标题'; + +ALTER TABLE iot_thing_source ADD COLUMN if not EXISTS thing_attr_group VARCHAR(255) ; +COMMENT ON COLUMN "public"."iot_thing_source"."thing_attr_group" IS '标签组'; + +ALTER TABLE iot_thing_source ADD COLUMN if not EXISTS start_status VARCHAR(255) ; +COMMENT ON COLUMN "public"."iot_thing_source"."start_status" IS '属性启用状态'; + +ALTER TABLE iot_visual_component ADD COLUMN if not EXISTS config text; +COMMENT ON COLUMN "public"."iot_visual_component"."config" IS '部件配置'; \ No newline at end of file