Fixed case where no uuid module found so that it dies with error, not with method...
[dbsrgits/DBIx-Class-UUIDColumns.git] / t / lib / UUIDTest / Setup.pm
CommitLineData
773544fd 1use strict;
2use warnings;
3use UUIDTest;
4
5my $schema = UUIDTest->initialise;
6
7$schema->storage->on_connect_do([ "PRAGMA synchronous = OFF" ]);
8
9my $dbh = $schema->storage->dbh;
10
11$schema->deploy;
12
13$schema->storage->dbh->do("PRAGMA synchronous = OFF");
14
151;