Skip to content

Commit

Permalink
Add SQL files for database migration
Browse files Browse the repository at this point in the history
  • Loading branch information
asdil12 committed Apr 7, 2017
1 parent 3bbba62 commit 69936a2
Show file tree
Hide file tree
Showing 8 changed files with 5,176 additions and 0 deletions.
18 changes: 18 additions & 0 deletions dbicdh/PostgreSQL/deploy/54/001-auto-__VERSION.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
--
-- Created by SQL::Translator::Producer::PostgreSQL
-- Created on Fri Mar 24 16:38:16 2017
--
;
--
-- 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)
);

;
Loading

0 comments on commit 69936a2

Please sign in to comment.