dashboardjavacloudcoapiotiot-analyticsiot-platformiot-solutionskafkalwm2mmicroservicesmiddlewaremqttnettyplatformsnmpthingsboardvisualizationwebsocketswidgets
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.
46 lines
1.5 KiB
46 lines
1.5 KiB
--
|
|
-- Copyright © 2016-2022 The Thingsboard Authors
|
|
--
|
|
-- Licensed under the Apache License, Version 2.0 (the "License");
|
|
-- you may not use this file except in compliance with the License.
|
|
-- You may obtain a copy of the License at
|
|
--
|
|
-- http://www.apache.org/licenses/LICENSE-2.0
|
|
--
|
|
-- Unless required by applicable law or agreed to in writing, software
|
|
-- distributed under the License is distributed on an "AS IS" BASIS,
|
|
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
-- See the License for the specific language governing permissions and
|
|
-- limitations under the License.
|
|
--
|
|
|
|
ALTER TABLE device
|
|
ADD COLUMN IF NOT EXISTS external_id UUID;
|
|
ALTER TABLE device_profile
|
|
ADD COLUMN IF NOT EXISTS external_id UUID;
|
|
ALTER TABLE asset
|
|
ADD COLUMN IF NOT EXISTS external_id UUID;
|
|
ALTER TABLE rule_chain
|
|
ADD COLUMN IF NOT EXISTS external_id UUID;
|
|
ALTER TABLE dashboard
|
|
ADD COLUMN IF NOT EXISTS external_id UUID;
|
|
ALTER TABLE customer
|
|
ADD COLUMN IF NOT EXISTS external_id UUID;
|
|
|
|
ALTER TABLE admin_settings
|
|
ADD COLUMN IF NOT EXISTS tenant_id uuid NOT NULL DEFAULT '13814000-1dd2-11b2-8080-808080808080';
|
|
|
|
CREATE TABLE IF NOT EXISTS queue (
|
|
id uuid NOT NULL CONSTRAINT queue_pkey PRIMARY KEY,
|
|
created_time bigint NOT NULL,
|
|
tenant_id uuid,
|
|
name varchar(255),
|
|
topic varchar(255),
|
|
poll_interval int,
|
|
partitions int,
|
|
consumer_per_partition boolean,
|
|
pack_processing_timeout bigint,
|
|
submit_strategy varchar(255),
|
|
processing_strategy varchar(255),
|
|
additional_info varchar
|
|
);
|
|
|