summaryrefslogtreecommitdiffstats
path: root/bin/db_gen_schema_dump
diff options
context:
space:
mode:
Diffstat (limited to 'bin/db_gen_schema_dump')
-rwxr-xr-xbin/db_gen_schema_dump14
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/db_gen_schema_dump b/bin/db_gen_schema_dump
index 1e84dd3..b26989c 100755
--- a/bin/db_gen_schema_dump
+++ b/bin/db_gen_schema_dump
@@ -11,12 +11,12 @@ use DBIx::Class::DeploymentHandler;
my $schema = ASM::DB->clone;
-my $dh = DBIx::Class::DeploymentHandler->new({
- schema => $schema,
- schema_version => '' . $schema->schema_version,
- sql_translator_args => { add_drop_table => 0, quote_identifiers => 1 },
- databases => [],
- ignore_ddl => 1,
- });
+my $dh = DBIx::Class::DeploymentHandler->new( {
+ schema => $schema,
+ schema_version => '' . $schema->schema_version,
+ sql_translator_args => { add_drop_table => 0, quote_identifiers => 1 },
+ databases => [],
+ ignore_ddl => 1,
+} );
$dh->prepare_install;