Skip to content

Commit

Permalink
Regenerate DDLs
Browse files Browse the repository at this point in the history
  • Loading branch information
melmothx committed Jan 30, 2024
1 parent 6799cbe commit 3cfee53
Show file tree
Hide file tree
Showing 11 changed files with 11,006 additions and 0 deletions.
18 changes: 18 additions & 0 deletions dbicdh/MySQL/deploy/84/001-auto-__VERSION.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
--
-- Created by SQL::Translator::Producer::MySQL
-- Created on Tue Jan 30 14:45:32 2024
--
;
SET foreign_key_checks=0;
--
-- Table: `dbix_class_deploymenthandler_versions`
--
CREATE TABLE `dbix_class_deploymenthandler_versions` (
`id` integer NOT NULL auto_increment,
`version` varchar(50) NOT NULL,
`ddl` text NULL,
`upgrade_sql` text NULL,
PRIMARY KEY (`id`),
UNIQUE `dbix_class_deploymenthandler_versions_version` (`version`)
);
SET foreign_key_checks=1;
Loading

0 comments on commit 3cfee53

Please sign in to comment.