Consolidate insert_bulk guards (and make them show up correctly in the trace)
[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
064ec2db 7use DBICTest::Schema;
ebf846e8 8use SQL::Translator;
0009fa49 9
ebf846e8 10my $schema = DBICTest::Schema->connect;
a085381e 11print scalar ($schema->storage->deployment_statements($schema, 'SQLite'));