All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.migration.oracle.V3__add_selectors.sql Maven / Gradle / Ivy

There is a newer version: 458
Show newest version
CREATE TABLE selectors (
     resource_group_id NUMBER NOT NULL,
     priority NUMBER NOT NULL,
     user_regex VARCHAR(512),
     source_regex VARCHAR(512),
     query_type VARCHAR(512),
     client_tags VARCHAR(512),
     selector_resource_estimate VARCHAR(1024),
     FOREIGN KEY (resource_group_id) REFERENCES resource_groups (resource_group_id) ON DELETE CASCADE
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy