Commit | Line | Data |
---|---|---|
f54428ab | 1 | #!/usr/bin/env perl |
0009fa49 | 2 | |
3 | use strict; | |
4 | use warnings; | |
5 | use lib qw(lib t/lib); | |
6 | ||
064ec2db | 7 | use DBICTest::Schema; |
ebf846e8 | 8 | use SQL::Translator; |
0009fa49 | 9 | |
ebf846e8 | 10 | my $schema = DBICTest::Schema->connect; |
181b2261 | 11 | print scalar ($schema->storage->deployment_statements( |
12 | $schema, | |
13 | 'SQLite', | |
14 | undef, | |
15 | undef, | |
4cd3d124 | 16 | { |
17 | producer_args => { no_transaction => 1 }, | |
18 | quote_identifiers => 1, | |
19 | no_comments => 1, | |
20 | }, | |
181b2261 | 21 | )); |