From: Matt S Trout Date: Fri, 12 May 2006 01:04:37 +0000 (+0000) Subject: fixup to gen-schema.pl X-Git-Tag: v0.07002~100 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=064ec2dbe7002745f1b905c655d05e4de98f44d3;p=dbsrgits%2FDBIx-Class.git fixup to gen-schema.pl --- diff --git a/maint/gen-schema.pl b/maint/gen-schema.pl index 12b3aeb..ffd2df7 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::HelperRels; +use DBICTest::Schema; -my $schema = DBICTest->initialise; +my $schema = DBICTest::Schema->connect; -print $schema->storage->deployment_statements($schema); +print $schema->storage->deployment_statements($schema, 'SQLite');