-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1670 from coolo/drop_job_module_needles_table
Drop job module needles table
- Loading branch information
Showing
17 changed files
with
4,763 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
-- | ||
-- Created by SQL::Translator::Producer::PostgreSQL | ||
-- Created on Tue May 29 19:00:46 2018 | ||
-- | ||
; | ||
-- | ||
-- 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) | ||
); | ||
|
||
; |
Oops, something went wrong.