about summary refs log tree commit diff
path: root/sql/PostgreSQL/deploy/4/001-auto-__VERSION.sql
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2011-02-13 17:38:02 +0100
committerfranck cuny <franck@lumberjaph.net>2011-02-13 17:38:02 +0100
commit2309ed42a44905214f96a7cbafed444fbf0f714f (patch)
tree2edef616ce274e1ff3b3dfad9554af355b8f59a9 /sql/PostgreSQL/deploy/4/001-auto-__VERSION.sql
parentdon't ignore sql files (diff)
downloadjitterbug-2309ed42a44905214f96a7cbafed444fbf0f714f.tar.gz
import schema modifications
Diffstat (limited to 'sql/PostgreSQL/deploy/4/001-auto-__VERSION.sql')
-rw-r--r--sql/PostgreSQL/deploy/4/001-auto-__VERSION.sql17
1 files changed, 17 insertions, 0 deletions
diff --git a/sql/PostgreSQL/deploy/4/001-auto-__VERSION.sql b/sql/PostgreSQL/deploy/4/001-auto-__VERSION.sql
new file mode 100644
index 0000000..1e06671
--- /dev/null
+++ b/sql/PostgreSQL/deploy/4/001-auto-__VERSION.sql
@@ -0,0 +1,17 @@
+-- 
+-- Created by SQL::Translator::Producer::PostgreSQL
+-- Created on Sun Feb 13 17:36:49 2011
+-- 
+;
+--
+-- 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")
+);
+