Merge 'trunk' into 'storage-interbase'
[dbsrgits/DBIx-Class.git] / maint / gen-schema.pl
CommitLineData
0009fa49 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5use lib qw(lib t/lib);
6
ba19fccc 7use DBICTest;
064ec2db 8use DBICTest::Schema;
ebf846e8 9use SQL::Translator;
0009fa49 10
ba19fccc 11my $schema = DBICTest::Schema->connect(DBICTest->_database);
181b2261 12print scalar ($schema->storage->deployment_statements(
13 $schema,
14 'SQLite',
15 undef,
16 undef,
17 { producer_args => { no_transaction => 1 } }
18));