default

Romber

Database tables

romber_network.application_environments

Purpose

This table provides a list of valid application environments.

An application environment is a resource set and is associated with an application variant or application version.

Definition

Source romber_application_environments_tbl.sql

create table romber_network.application_environments (
  application_environment_id    romber_network.application_environment_id       not null,
  application_id                romber_network.application_id                   not null,
  environment_id                romber_network.environment_id                   not null );

Constraints

Source romber_application_environments_pk.sql

alter table romber_network.application_environments
  add constraint romber_application_environments_pk
    primary key ( application_environment_id );

Source romber_application_environments_uk1.sql

alter table romber_network.application_environments
  add constraint romber_application_environments_uk1
    unique (
      application_id,
      environment_id );

Source romber_application_environments_fk1.sql

alter table romber_network.application_environments
  add constraint romber_application_environments_fk1
    foreign key ( application_environment_id )
    references romber_meta.objects ( meta_object_id );

Source romber_application_environments_fk2.sql

alter table romber_network.application_environments
  add constraint romber_application_environments_fk2
    foreign key ( application_id )
    references romber_network.applications ( application_id );

Source romber_application_environments_fk3.sql

alter table romber_network.application_environments
  add constraint romber_application_environments_fk3
    foreign key ( environment_id )
    references romber_network.environments ( environment_id );

Load

Source romber_application_environments_load.sql




    

 

Copyright © Corpita Pty Ltd 1987 - 2024

Developed by romber.net
Page modified on 28-Apr-2023