more like TO DON'T LIST!
[dbsrgits/DBIx-Class-DeploymentHandler.git] / lib / DBIx / Class / DeploymentHandler.pm
CommitLineData
b974984a 1package DBIx::Class::DeploymentHandler;
2
3use Moose;
b974984a 4
c4f4d4a2 5extends 'DBIx::Class::DeploymentHandler::Dad';
41219a5d 6# a single with would be better, but we can't do that
7# see: http://rt.cpan.org/Public/Bug/Display.html?id=46347
973d060d 8with 'DBIx::Class::DeploymentHandler::WithSqltDeployMethod',
4a65f60b 9 'DBIx::Class::DeploymentHandler::WithMonotonicVersions',
973d060d 10 'DBIx::Class::DeploymentHandler::WithStandardVersionStorage';
41219a5d 11with 'DBIx::Class::DeploymentHandler::WithReasonableDefaults';
2e68a8e1 12
2e68a8e1 13__PACKAGE__->meta->make_immutable;
14
b974984a 151;
61847972 16
17__END__
18
2eaf903b 19vim: ts=2 sw=2 expandtab