X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=maint%2Fgen-schema.pl;h=ffd2df7995289cc4433b78cfa70af86751382d0f;hb=9809a6df7707e9d5139274e28f4bcfb93184288c;hp=a4e101dd47bc9c07eb558142abd7f320db8d3821;hpb=1c339d715e7bf746c8aec49981060f25a6649370;p=dbsrgits%2FDBIx-Class.git diff --git a/maint/gen-schema.pl b/maint/gen-schema.pl index a4e101d..ffd2df7 100755 --- a/maint/gen-schema.pl +++ b/maint/gen-schema.pl @@ -4,8 +4,8 @@ use strict; use warnings; use lib qw(lib t/lib); -use DBICTest; +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');