From c3b66fc475e72b5e4128ae35c118d337651ee863 Mon Sep 17 00:00:00 2001 From: lin <648540858@qq.com> Date: Mon, 14 Apr 2025 11:30:45 +0800 Subject: [PATCH] =?UTF-8?q?=E5=90=88=E5=B9=B6PR=E4=BF=AE=E6=94=B9=E4=B8=AD?= =?UTF-8?q?=E7=9A=84=E6=95=B0=E6=8D=AE=E5=BA=93=E8=84=9A=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 数据库/2.7.3/更新-postgresql-kingbase-2.7.1升级到2.7.3.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/数据库/2.7.3/更新-postgresql-kingbase-2.7.1升级到2.7.3.sql b/数据库/2.7.3/更新-postgresql-kingbase-2.7.1升级到2.7.3.sql index e7ca6887f..289990058 100644 --- a/数据库/2.7.3/更新-postgresql-kingbase-2.7.1升级到2.7.3.sql +++ b/数据库/2.7.3/更新-postgresql-kingbase-2.7.1升级到2.7.3.sql @@ -137,11 +137,12 @@ create table IF NOT EXISTS wvp_device_channel gps_speed double precision, gps_altitude double precision, gps_direction double precision, - index (data_type), - index (data_device_id), constraint uk_wvp_unique_channel unique (gb_device_id) ); +create index if not exists data_type on wvp_device_channel (data_type); +create index if not exists data_device_id on wvp_device_channel (data_device_id); + create table IF NOT EXISTS wvp_device_mobile_position ( id serial primary key,