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

db.migration.hsql.V1_050__CreateDeploymentTable.sql Maven / Gradle / Ivy

There is a newer version: 1.17.0
Show newest version
CREATE TABLE "deployments" (
    "id" UUID NOT NULL PRIMARY KEY,
    "scenario_id" INTEGER NOT NULL,
    "created_at" TIMESTAMP NOT NULL,
    "created_by" VARCHAR(255) NOT NULL
);

ALTER TABLE "deployments"
    ADD CONSTRAINT "deployments_scenarios_fk" FOREIGN KEY ("scenario_id") REFERENCES "processes" ("id") ON DELETE CASCADE;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy