123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677 |
- /*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You 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.
- */
- -- uc_dolphin_T_t_ds_user_A_state
- delimiter ;
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_user_A_state();
- delimiter d//
- CREATE FUNCTION uc_dolphin_T_t_ds_user_A_state() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_CATALOG=current_database()
- AND TABLE_SCHEMA=current_schema()
- AND TABLE_NAME='t_ds_user'
- AND COLUMN_NAME ='state')
- THEN
- ALTER TABLE t_ds_user ADD COLUMN state int DEFAULT 1;
- comment on column t_ds_user.state is 'state 0:disable 1:enable';
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- select uc_dolphin_T_t_ds_user_A_state();
- DROP FUNCTION uc_dolphin_T_t_ds_user_A_state();
- -- uc_dolphin_T_t_ds_tenant_A_tenant_name
- delimiter ;
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_tenant_A_tenant_name();
- delimiter d//
- CREATE FUNCTION uc_dolphin_T_t_ds_tenant_A_tenant_name() RETURNS void AS $$
- BEGIN
- IF EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_CATALOG=current_database()
- AND TABLE_SCHEMA=current_schema()
- AND TABLE_NAME='t_ds_tenant'
- AND COLUMN_NAME ='tenant_name')
- THEN
- ALTER TABLE t_ds_tenant DROP COLUMN "tenant_name";
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- select uc_dolphin_T_t_ds_tenant_A_tenant_name();
- DROP FUNCTION uc_dolphin_T_t_ds_tenant_A_tenant_name();
- -- uc_dolphin_T_t_ds_task_instance_A_first_submit_time
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_task_instance_A_first_submit_time() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_task_instance'
- AND COLUMN_NAME ='first_submit_time')
- THEN
- ALTER TABLE t_ds_task_instance ADD COLUMN first_submit_time timestamp DEFAULT NULL;
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_task_instance_A_first_submit_time();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_task_instance_A_first_submit_time();
- -- uc_dolphin_T_t_ds_task_instance_A_delay_time
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_task_instance_A_delay_time() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_task_instance'
- AND COLUMN_NAME ='delay_time')
- THEN
- ALTER TABLE t_ds_task_instance ADD COLUMN delay_time int DEFAULT '0';
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_task_instance_A_delay_time();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_task_instance_A_delay_time();
- -- uc_dolphin_T_t_ds_task_instance_A_var_pool
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_task_instance_A_var_pool() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_task_instance'
- AND COLUMN_NAME ='var_pool')
- THEN
- ALTER TABLE t_ds_task_instance ADD COLUMN var_pool text;
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_task_instance_A_var_pool();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_task_instance_A_var_pool();
- -- uc_dolphin_T_t_ds_task_instance_A_task_code
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_task_instance_A_task_code() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_task_instance'
- AND COLUMN_NAME ='task_code')
- THEN
- ALTER TABLE t_ds_task_instance ADD COLUMN task_code bigint NOT NULL;
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_task_instance_A_task_code();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_task_instance_A_task_code();
- -- uc_dolphin_T_t_ds_task_instance_A_task_definition_version
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_task_instance_A_task_definition_version() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_task_instance'
- AND COLUMN_NAME ='task_definition_version')
- THEN
- ALTER TABLE t_ds_task_instance ADD COLUMN task_definition_version int DEFAULT NULL;
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_task_instance_A_task_definition_version();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_task_instance_A_task_definition_version();
- -- uc_dolphin_T_t_ds_task_instance_A_task_params
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_task_instance_A_task_params() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_task_instance'
- AND COLUMN_NAME ='task_params')
- THEN
- ALTER TABLE t_ds_task_instance ADD COLUMN task_params text;
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_task_instance_A_task_params();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_task_instance_A_task_params();
- -- uc_dolphin_T_t_ds_process_instance_A_process_definition_code
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_process_instance_A_process_definition_code() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_process_instance'
- AND COLUMN_NAME ='process_definition_code')
- THEN
- ALTER TABLE t_ds_process_instance ADD COLUMN process_definition_code bigint DEFAULT NULL;
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_process_instance_A_process_definition_code();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_process_instance_A_process_definition_code();
- -- uc_dolphin_T_t_ds_process_instance_A_process_definition_version
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_process_instance_A_process_definition_version() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_process_instance'
- AND COLUMN_NAME ='process_definition_version')
- THEN
- ALTER TABLE t_ds_process_instance ADD COLUMN process_definition_version int DEFAULT NULL;
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_process_instance_A_process_definition_version();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_process_instance_A_process_definition_version();
- -- uc_dolphin_T_t_ds_process_instance_A_var_pool
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_process_instance_A_var_pool() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_process_instance'
- AND COLUMN_NAME ='var_pool')
- THEN
- ALTER TABLE t_ds_process_instance ADD COLUMN var_pool text;
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_process_instance_A_var_pool();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_process_instance_A_var_pool();
- -- uc_dolphin_T_t_ds_project_A_code
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_project_A_code() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_project'
- AND COLUMN_NAME ='code')
- THEN
- ALTER TABLE t_ds_project ADD COLUMN code bigint NOT NULL;
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_project_A_code();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_project_A_code();
- -- uc_dolphin_T_t_ds_process_definition_A_code
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_process_definition_A_code() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_process_definition'
- AND COLUMN_NAME ='code')
- THEN
- ALTER TABLE t_ds_process_definition ADD COLUMN code bigint NOT NULL;
- ALTER TABLE t_ds_process_definition ADD CONSTRAINT code_unique UNIQUE (code);
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_process_definition_A_code();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_process_definition_A_code();
- -- uc_dolphin_T_t_ds_process_definition_A_project_code
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_process_definition_A_project_code() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_process_definition'
- AND COLUMN_NAME ='project_code')
- THEN
- ALTER TABLE t_ds_process_definition ADD COLUMN project_code bigint NOT NULL;
- ALTER TABLE t_ds_process_definition DROP CONSTRAINT process_definition_unique, ADD CONSTRAINT process_definition_unique UNIQUE (name, project_code);
- ALTER TABLE t_ds_process_definition DROP project_id, DROP process_definition_json, DROP receivers, DROP receivers_cc, DROP modify_by, DROP resource_ids;
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_process_definition_A_project_code();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_process_definition_A_project_code();
- -- uc_dolphin_T_t_ds_process_definition_A_modify_by
- delimiter d//
- CREATE OR REPLACE FUNCTION ct_dolphin_T_t_ds_process_definition_version() RETURNS void AS $$
- BEGIN
- CREATE TABLE IF NOT EXISTS t_ds_process_definition_version (
- id int NOT NULL ,
- process_definition_id int NOT NULL ,
- version int DEFAULT NULL ,
- process_definition_json text ,
- description text ,
- global_params text ,
- locations text ,
- connects text ,
- receivers text ,
- receivers_cc text ,
- create_time timestamp DEFAULT NULL ,
- timeout int DEFAULT '0' ,
- resource_ids varchar(64),
- PRIMARY KEY (id)
- ) ;
- create index process_definition_id_and_version on t_ds_process_definition_version (process_definition_id,version);
- DROP SEQUENCE IF EXISTS t_ds_process_definition_version_id_sequence;
- CREATE SEQUENCE t_ds_process_definition_version_id_sequence;
- ALTER TABLE t_ds_process_definition_version ALTER COLUMN id SET DEFAULT NEXTVAL('t_ds_process_definition_version_id_sequence');
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT ct_dolphin_T_t_ds_process_definition_version();
- DROP FUNCTION IF EXISTS ct_dolphin_T_t_ds_process_definition_version();
- -- ct_dolphin_T_t_ds_task_definition
- delimiter d//
- CREATE OR REPLACE FUNCTION ct_dolphin_T_t_ds_task_definition() RETURNS void AS $$
- BEGIN
- CREATE TABLE IF NOT EXISTS t_ds_task_definition (
- id int NOT NULL ,
- code bigint NOT NULL,
- name varchar(255) DEFAULT NULL ,
- version int DEFAULT NULL ,
- description text ,
- project_code bigint DEFAULT NULL ,
- user_id int DEFAULT NULL ,
- task_type varchar(50) DEFAULT NULL ,
- task_params text ,
- flag int DEFAULT NULL ,
- task_priority int DEFAULT NULL ,
- worker_group varchar(255) DEFAULT NULL ,
- fail_retry_times int DEFAULT NULL ,
- fail_retry_interval int DEFAULT NULL ,
- timeout_flag int DEFAULT NULL ,
- timeout_notify_strategy int DEFAULT NULL ,
- timeout int DEFAULT '0' ,
- delay_time int DEFAULT '0' ,
- resource_ids varchar(255) DEFAULT NULL ,
- create_time timestamp DEFAULT NULL ,
- update_time timestamp DEFAULT NULL ,
- PRIMARY KEY (id) ,
- CONSTRAINT task_definition_unique UNIQUE (name, project_code)
- ) ;
- create index task_definition_index on t_ds_task_definition (project_code,id);
- DROP SEQUENCE IF EXISTS t_ds_task_definition_id_sequence;
- CREATE SEQUENCE t_ds_task_definition_id_sequence;
- ALTER TABLE t_ds_task_definition ALTER COLUMN id SET DEFAULT NEXTVAL('t_ds_task_definition_id_sequence');
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT ct_dolphin_T_t_ds_task_definition();
- DROP FUNCTION IF EXISTS ct_dolphin_T_t_ds_task_definition();
- -- ct_dolphin_T_t_ds_task_definition_log
- delimiter d//
- CREATE OR REPLACE FUNCTION ct_dolphin_T_t_ds_task_definition_log() RETURNS void AS $$
- BEGIN
- CREATE TABLE IF NOT EXISTS t_ds_task_definition_log (
- id int NOT NULL ,
- code bigint NOT NULL,
- name varchar(255) DEFAULT NULL ,
- version int DEFAULT NULL ,
- description text ,
- project_code bigint DEFAULT NULL ,
- user_id int DEFAULT NULL ,
- task_type varchar(50) DEFAULT NULL ,
- task_params text ,
- flag int DEFAULT NULL ,
- task_priority int DEFAULT NULL ,
- worker_group varchar(255) DEFAULT NULL ,
- fail_retry_times int DEFAULT NULL ,
- fail_retry_interval int DEFAULT NULL ,
- timeout_flag int DEFAULT NULL ,
- timeout_notify_strategy int DEFAULT NULL ,
- timeout int DEFAULT '0' ,
- delay_time int DEFAULT '0' ,
- resource_ids varchar(255) DEFAULT NULL ,
- operator int DEFAULT NULL ,
- operate_time timestamp DEFAULT NULL ,
- create_time timestamp DEFAULT NULL ,
- update_time timestamp DEFAULT NULL ,
- PRIMARY KEY (id)
- ) ;
- DROP SEQUENCE IF EXISTS t_ds_task_definition_log_id_sequence;
- CREATE SEQUENCE t_ds_task_definition_log_id_sequence;
- ALTER TABLE t_ds_task_definition_log ALTER COLUMN id SET DEFAULT NEXTVAL('t_ds_task_definition_log_id_sequence');
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT ct_dolphin_T_t_ds_task_definition_log();
- DROP FUNCTION IF EXISTS ct_dolphin_T_t_ds_task_definition_log();
- -- ct_dolphin_T_t_ds_process_task_relation
- delimiter d//
- CREATE OR REPLACE FUNCTION ct_dolphin_T_t_ds_process_task_relation() RETURNS void AS $$
- BEGIN
- CREATE TABLE IF NOT EXISTS t_ds_process_task_relation (
- id int NOT NULL ,
- name varchar(255) DEFAULT NULL ,
- process_definition_version int DEFAULT NULL ,
- project_code bigint DEFAULT NULL ,
- process_definition_code bigint DEFAULT NULL ,
- pre_task_code bigint DEFAULT NULL ,
- pre_task_version int DEFAULT '0' ,
- post_task_code bigint DEFAULT NULL ,
- post_task_version int DEFAULT '0' ,
- condition_type int DEFAULT NULL ,
- condition_params text ,
- create_time timestamp DEFAULT NULL ,
- update_time timestamp DEFAULT NULL ,
- PRIMARY KEY (id)
- ) ;
- DROP SEQUENCE IF EXISTS t_ds_process_task_relation_id_sequence;
- CREATE SEQUENCE t_ds_process_task_relation_id_sequence;
- ALTER TABLE t_ds_process_task_relation ALTER COLUMN id SET DEFAULT NEXTVAL('t_ds_process_task_relation_id_sequence');
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT ct_dolphin_T_t_ds_process_task_relation();
- DROP FUNCTION IF EXISTS ct_dolphin_T_t_ds_process_task_relation();
- -- ct_dolphin_T_t_ds_process_definition_log
- delimiter d//
- CREATE OR REPLACE FUNCTION ct_dolphin_T_t_ds_process_definition_log() RETURNS void AS $$
- BEGIN
- CREATE TABLE IF NOT EXISTS t_ds_process_definition_log (
- id int NOT NULL ,
- code bigint NOT NULL,
- name varchar(255) DEFAULT NULL ,
- version int DEFAULT NULL ,
- description text ,
- project_code bigint DEFAULT NULL ,
- release_state int DEFAULT NULL ,
- user_id int DEFAULT NULL ,
- global_params text ,
- locations text ,
- connects text ,
- warning_group_id int DEFAULT NULL ,
- flag int DEFAULT NULL ,
- timeout int DEFAULT '0' ,
- tenant_id int DEFAULT '-1' ,
- operator int DEFAULT NULL ,
- operate_time timestamp DEFAULT NULL ,
- create_time timestamp DEFAULT NULL ,
- update_time timestamp DEFAULT NULL ,
- PRIMARY KEY (id)
- ) ;
- DROP SEQUENCE IF EXISTS t_ds_process_definition_log_id_sequence;
- CREATE SEQUENCE t_ds_process_definition_log_id_sequence;
- ALTER TABLE t_ds_process_definition_log ALTER COLUMN id SET DEFAULT NEXTVAL('t_ds_process_definition_log_id_sequence');
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT ct_dolphin_T_t_ds_process_definition_log();
- DROP FUNCTION IF EXISTS ct_dolphin_T_t_ds_process_definition_log();
- -- ct_dolphin_T_t_ds_process_task_relation_log
- delimiter d//
- CREATE OR REPLACE FUNCTION ct_dolphin_T_t_ds_process_task_relation_log() RETURNS void AS $$
- BEGIN
- CREATE TABLE IF NOT EXISTS t_ds_process_task_relation_log (
- id int NOT NULL ,
- name varchar(255) DEFAULT NULL ,
- process_definition_version int DEFAULT NULL ,
- project_code bigint DEFAULT NULL ,
- process_definition_code bigint DEFAULT NULL ,
- pre_task_code bigint DEFAULT NULL ,
- pre_task_version int DEFAULT '0' ,
- post_task_code bigint DEFAULT NULL ,
- post_task_version int DEFAULT '0' ,
- condition_type int DEFAULT NULL ,
- condition_params text ,
- operator int DEFAULT NULL ,
- operate_time timestamp DEFAULT NULL ,
- create_time timestamp DEFAULT NULL ,
- update_time timestamp DEFAULT NULL ,
- PRIMARY KEY (id)
- ) ;
- DROP SEQUENCE IF EXISTS t_ds_process_task_relation_log_id_sequence;
- CREATE SEQUENCE t_ds_process_task_relation_log_id_sequence;
- ALTER TABLE t_ds_process_task_relation_log ALTER COLUMN id SET DEFAULT NEXTVAL('t_ds_process_task_relation_log_id_sequence');
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT ct_dolphin_T_t_ds_process_task_relation_log();
- DROP FUNCTION IF EXISTS ct_dolphin_T_t_ds_process_task_relation_log();
- -- ----------------------------
- -- Table structure for t_ds_plugin_define
- -- ----------------------------
- DROP TABLE IF EXISTS t_ds_plugin_define;
- CREATE TABLE t_ds_plugin_define (
- id serial NOT NULL,
- plugin_name varchar(100) NOT NULL,
- plugin_type varchar(100) NOT NULL,
- plugin_params text NULL,
- create_time timestamp NULL,
- update_time timestamp NULL,
- CONSTRAINT t_ds_plugin_define_pk PRIMARY KEY (id),
- CONSTRAINT t_ds_plugin_define_un UNIQUE (plugin_name, plugin_type)
- );
- -- ----------------------------
- -- Table structure for t_ds_alert_plugin_instance
- -- ----------------------------
- DROP TABLE IF EXISTS t_ds_alert_plugin_instance;
- CREATE TABLE t_ds_alert_plugin_instance (
- id serial NOT NULL,
- plugin_define_id int4 NOT NULL,
- plugin_instance_params text NULL,
- create_time timestamp NULL,
- update_time timestamp NULL,
- instance_name varchar(200) NULL,
- CONSTRAINT t_ds_alert_plugin_instance_pk PRIMARY KEY (id)
- );
- -- uc_dolphin_T_t_ds_process_definition_A_warning_group_id
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_process_definition_A_warning_group_id() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_process_definition'
- AND COLUMN_NAME ='warning_group_id')
- THEN
- ALTER TABLE t_ds_process_definition ADD COLUMN warning_group_id int4 DEFAULT NULL;
- COMMENT ON COLUMN t_ds_process_definition.warning_group_id IS 'alert group id';
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_process_definition_A_warning_group_id();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_process_definition_A_warning_group_id();
- -- uc_dolphin_T_t_ds_process_definition_version_A_warning_group_id
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_process_definition_version_A_warning_group_id() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_process_definition_version'
- AND COLUMN_NAME ='warning_group_id')
- THEN
- ALTER TABLE t_ds_process_definition_version ADD COLUMN warning_group_id int4 DEFAULT NULL;
- COMMENT ON COLUMN t_ds_process_definition_version.warning_group_id IS 'alert group id';
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_process_definition_version_A_warning_group_id();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_process_definition_version_A_warning_group_id();
- -- uc_dolphin_T_t_ds_alertgroup_A_alert_instance_ids
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_alertgroup_A_alert_instance_ids() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_alertgroup'
- AND COLUMN_NAME ='alert_instance_ids')
- THEN
- ALTER TABLE t_ds_alertgroup ADD COLUMN alert_instance_ids varchar (255) DEFAULT NULL;
- COMMENT ON COLUMN t_ds_alertgroup.alert_instance_ids IS 'alert instance ids';
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_alertgroup_A_alert_instance_ids();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_alertgroup_A_alert_instance_ids();
- -- uc_dolphin_T_t_ds_alertgroup_A_create_user_id
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_alertgroup_A_create_user_id() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_alertgroup'
- AND COLUMN_NAME ='create_user_id')
- THEN
- ALTER TABLE t_ds_alertgroup ADD COLUMN create_user_id int4 DEFAULT NULL;
- COMMENT ON COLUMN t_ds_alertgroup.create_user_id IS 'create user id';
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_alertgroup_A_create_user_id();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_alertgroup_A_create_user_id();
- -- uc_dolphin_T_t_ds_alertgroup_A_add_UN_groupName
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_alertgroup_A_add_UN_groupName() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM pg_stat_all_indexes
- WHERE relname='t_ds_alertgroup'
- AND indexrelname ='t_ds_alertgroup_name_un')
- THEN
- ALTER TABLE t_ds_alertgroup ADD CONSTRAINT t_ds_alertgroup_name_un UNIQUE (group_name);
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_alertgroup_A_add_UN_groupName();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_alertgroup_A_add_UN_groupName();
- -- uc_dolphin_T_t_ds_datasource_A_add_UN_datasourceName
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_datasource_A_add_UN_datasourceName() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM pg_stat_all_indexes
- WHERE relname='t_ds_datasource'
- AND indexrelname ='t_ds_datasource_name_un')
- THEN
- ALTER TABLE t_ds_datasource ADD CONSTRAINT t_ds_datasource_name_un UNIQUE (name, type);
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_datasource_A_add_UN_datasourceName();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_datasource_A_add_UN_datasourceName();
- -- uc_dolphin_T_t_ds_schedules_A_add_timezone
- delimiter d//
- CREATE OR REPLACE FUNCTION uc_dolphin_T_t_ds_schedules_A_add_timezone() RETURNS void AS $$
- BEGIN
- IF NOT EXISTS (SELECT 1 FROM information_schema.COLUMNS
- WHERE TABLE_NAME='t_ds_schedules'
- AND COLUMN_NAME ='timezone_id')
- THEN
- ALTER TABLE t_ds_schedules ADD COLUMN timezone_id varchar(40) DEFAULT NULL;
- END IF;
- END;
- $$ LANGUAGE plpgsql;
- d//
- delimiter ;
- SELECT uc_dolphin_T_t_ds_schedules_A_add_timezone();
- DROP FUNCTION IF EXISTS uc_dolphin_T_t_ds_schedules_A_add_timezone();
- -- ----------------------------
- -- These columns will not be used in the new version,if you determine that the historical data is useless, you can delete it using the sql below
- -- ----------------------------
- -- ALTER TABLE t_ds_alert DROP COLUMN "show_type", DROP COLUMN "alert_type", DROP COLUMN "receivers", DROP COLUMN "receivers_cc";
- -- ALTER TABLE t_ds_alertgroup DROP COLUMN "group_type";
- -- ALTER TABLE t_ds_process_definition DROP COLUMN "receivers", DROP COLUMN "receivers_cc";
- -- ALTER TABLE t_ds_process_definition_version DROP COLUMN "receivers", DROP COLUMN "receivers_cc";
- -- DROP TABLE IF EXISTS t_ds_relation_user_alertgroup;
- -- ALTER TABLE t_ds_command DROP COLUMN "dependence";
- -- ALTER TABLE t_ds_error_command DROP COLUMN "dependence";
|