Skip to content

Commit

Permalink
Merge pull request #4715 from Martchus/bigint-2-worker
Browse files Browse the repository at this point in the history
Avoid running out of database IDs - worker tables
  • Loading branch information
mergify[bot] committed Jun 22, 2022
2 parents a819175 + 92454fd commit 1fa5605
Show file tree
Hide file tree
Showing 9 changed files with 5,472 additions and 4 deletions.
18 changes: 18 additions & 0 deletions dbicdh/PostgreSQL/deploy/96/001-auto-__VERSION.sql
@@ -0,0 +1,18 @@
--
-- Created by SQL::Translator::Producer::PostgreSQL
-- Created on Wed Jun 22 11:42:47 2022
--
;
--
-- 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)
);

;

0 comments on commit 1fa5605

Please sign in to comment.