X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=sql%2FPostgreSQL%2Fdeploy%2F1%2F001-auto-__VERSION.sql;fp=sql%2FPostgreSQL%2Fdeploy%2F1%2F001-auto-__VERSION.sql;h=ba0884eb8c063f725c7059635fbb73854c235af2;hb=53c435119200ab9b1c2538a96b8374c51a078855;hp=0000000000000000000000000000000000000000;hpb=0e8f07fda6e40b5967d9c6b28b3200db22766343;p=debbugs.git diff --git a/sql/PostgreSQL/deploy/1/001-auto-__VERSION.sql b/sql/PostgreSQL/deploy/1/001-auto-__VERSION.sql new file mode 100644 index 0000000..ba0884e --- /dev/null +++ b/sql/PostgreSQL/deploy/1/001-auto-__VERSION.sql @@ -0,0 +1,18 @@ +-- +-- Created by SQL::Translator::Producer::PostgreSQL +-- Created on Wed Aug 6 14:09:26 2014 +-- +; +-- +-- Table: dbix_class_deploymenthandler_versions. +-- +CREATE TABLE "dbix_class_deploymenthandler_versions" ( + "id" serial NOT NULL, + "version" character varying(50) NOT NULL, + "ddl" text, + "upgrade_sql" text, + PRIMARY KEY ("id"), + CONSTRAINT "dbix_class_deploymenthandler_versions_version" UNIQUE ("version") +); + +;