Adjust expected sql to match the new 'Track' table definition
[dbsrgits/DBIx-Class.git] / maint / gen-schema.pl
index a4e101d..83c8d03 100755 (executable)
@@ -4,8 +4,8 @@ use strict;
 use warnings;
 use lib qw(lib t/lib);
 
-use DBICTest;
+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'));