X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=maint%2Fgen-schema.pl;h=83c8d0397d8c6c4145af0e5f2bdceff5953e1d13;hb=c8a8b777740789a9322868478cd88f33423eef5f;hp=d8d2ca18a3e4e805deb6087cd1924d68c7bbbc85;hpb=38e481637aa7e86b0257373e334457d5c23748fb;p=dbsrgits%2FDBIx-Class.git diff --git a/maint/gen-schema.pl b/maint/gen-schema.pl index d8d2ca1..83c8d03 100755 --- a/maint/gen-schema.pl +++ b/maint/gen-schema.pl @@ -4,9 +4,8 @@ use strict; use warnings; use lib qw(lib t/lib); -use DBICTest; -use DBICTest::Schema::HelperRels; +use DBICTest::Schema; +use SQL::Translator; -my $schema = DBICTest->initialise; - -print $schema->storage->deployment_statements($schema); +my $schema = DBICTest::Schema->connect; +print scalar ($schema->storage->deployment_statements($schema, 'SQLite'));