diff options
| author | 2017-02-22 00:36:20 +0000 | |
|---|---|---|
| committer | 2017-02-22 00:36:20 +0000 | |
| commit | 3660ffad11192fdb4c23ea71f23c9d39f2a20715 (patch) | |
| tree | da376bebfbf0eb8aae955858f24a8a7d6e7632d3 /bin/db_gen_schema_dump | |
| parent | d6aa209d1920ced98f4ef074c0ee09c35d203534 (diff) | |
Misc. code cleanup
Diffstat (limited to 'bin/db_gen_schema_dump')
| -rwxr-xr-x | bin/db_gen_schema_dump | 14 |
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; |
