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

db.migration.postgres.V1_055__CreateScenarioLabels.sql Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
CREATE TABLE "scenario_labels" (
  "label"       VARCHAR(254) NOT NULL,
  "scenario_id" INTEGER NOT NULL
);

ALTER TABLE "scenario_labels" ADD CONSTRAINT "pk_scenario_label" PRIMARY KEY ("label", "scenario_id");
ALTER TABLE "scenario_labels" ADD CONSTRAINT "label_scenario_fk" FOREIGN KEY ("scenario_id") REFERENCES "processes" ("id") ON DELETE CASCADE;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy