Back out my bogus test from r4902 - this warning was never supposed to be here in...
[dbsrgits/DBIx-Class-Historic.git] / maint / gen-schema.pl
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5 use lib qw(lib t/lib);
6
7 use DBICTest::Schema;
8 use SQL::Translator;
9
10 my $schema = DBICTest::Schema->connect;
11 print scalar ($schema->storage->deployment_statements($schema, 'SQLite'));