db-update.20011-from-2.1.1-to-2.2.0.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Contains domain model for the orchestrator. This is just model classes + serialization helpers, and would also be suitable for writing a java client api to support integration.
--
-- JBoss, Home of Professional Open Source.
-- Copyright 2014-2022 Red Hat, Inc., and individual contributors
-- as indicated by the @author tags.
--
-- 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.
--
-- NCL-6695: Add Operation table
BEGIN;
CREATE TABLE operation (
id bigint NOT NULL,
submittime timestamptz NOT NULL,
starttime timestamptz,
endtime timestamptz,
user_id integer NOT NULL,
status varchar(50) NOT NULL,
productmilestone_id integer,
operation_type varchar(50),
primary key (id)
);
CREATE INDEX idx_operation_user ON operation (user_id);
ALTER TABLE operation ADD CONSTRAINT fk_operation_user
FOREIGN KEY (user_id) REFERENCES usertable(id);
CREATE INDEX idx_operation_milestone ON operation (productmilestone_id);
ALTER TABLE operation ADD CONSTRAINT fk_operation_productmilestone
FOREIGN KEY (productmilestone_id) REFERENCES productmilestone(id);
CREATE TABLE operation_parameters (
operation_id integer NOT NULL,
value varchar(8192) NOT NULL,
key varchar(50) NOT NULL,
primary key (operation_id, key)
);
ALTER TABLE operation_parameters ADD CONSTRAINT fk_operation_parameters_operation
FOREIGN KEY (operation_id) REFERENCES operation(id);
COMMIT;