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

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

There is a newer version: 1.17.0
Show newest version
CREATE TABLE "processes" (
  "id"          VARCHAR(254) NOT NULL PRIMARY KEY,
  "name"        VARCHAR(254) NOT NULL,
  "description" VARCHAR(1000),
  "type"        VARCHAR(254) NOT NULL
);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy