From abe041d7acab9a1dffe598e4dddf28c98934443a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?zhaobing=E2=80=99?= Date: Thu, 14 Dec 2023 14:52:22 +0800 Subject: [PATCH] =?UTF-8?q?feat:1.5=E7=89=88=E8=84=9A=E6=9C=AC=E6=8F=90?= =?UTF-8?q?=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script/1.5/schema/1.project_bind.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 script/1.5/schema/1.project_bind.sql diff --git a/script/1.5/schema/1.project_bind.sql b/script/1.5/schema/1.project_bind.sql new file mode 100644 index 0000000..d07429a --- /dev/null +++ b/script/1.5/schema/1.project_bind.sql @@ -0,0 +1,15 @@ +CREATE TABLE IF NOT EXISTS project_bind +( + id serial constraint "project_bind_pk" primary key, + axy_project_id integer, + structture_id integer +); +comment on column project_bind.axy_project_id is '安心云项目id'; + +comment on column project_bind.structture_id is '巡检的结构物id'; + +comment on column project_bind.axy_project_id is '安心云结构物'; + + +alter table project_bind + alter column axy_project_id type varchar(300) using axy_project_id::varchar(300); \ No newline at end of file