test cases for recent changes and test DBs other than mysql
[dbsrgits/DBIx-Class-DeploymentHandler.git] / lib / DBIx / Class / DeploymentHandler / HandlesMigrationSchema.pm
CommitLineData
41a539b4 1package DBIx::Class::DeploymentHandler::HandlesMigrationSchema;
7d876442 2use Moose::Role;
3
4# ABSTRACT: Interface for providing a $schema to the deployment scripts
5
6requires 'migration_schema';
7
81;
9
10# vim: ts=2 sw=2 expandtab
11
12__END__
13
41a539b4 14=method migration_schema
7d876442 15
41a539b4 16 my $schema = $dh->migration_schema;
7d876442 17
18Provides a L<DBIx::Class::Schema> object that we can pass to the Perl deploy
19scripts.
20
21=head1 KNOWN IMPLEMENTATIONS
22
23=over
24
25=item *
26
41a539b4 27L<DBIx::Class::DeploymentHandler::MigrationSchema::FromCurrent>
7d876442 28
29=item *
30
41a539b4 31L<DBIx::Class::DeploymentHandler::MigrationSchema::SQL::SchemaLoader>
7d876442 32
33=back
34