rename sqltargs to sql_translator_args
[dbsrgits/DBIx-Class-DeploymentHandler.git] / lib / DBIx / Class / DeploymentHandler / Deprecated / WithDeprecatedSqltDeployMethod.pm
CommitLineData
01342998 1package DBIx::Class::DeploymentHandler::Deprecated::WithDeprecatedSqltDeployMethod;
2use Moose::Role;
3
9deabd1f 4# ABSTRACT: (DEPRECATED) Use this if you are stuck in the past
5
01342998 6use DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator::Deprecated;
7
8has deploy_method => (
9 does => 'DBIx::Class::DeploymentHandler::HandlesDeploy',
10 is => 'ro',
11 lazy_build => 1,
12 handles => 'DBIx::Class::DeploymentHandler::HandlesDeploy',
13);
14
cfc9edf9 15has upgrade_directory => (
16 isa => 'Str',
17 is => 'ro',
18 required => 1,
19 default => 'sql',
20);
21
22has databases => (
23 coerce => 1,
24 isa => 'DBIx::Class::DeploymentHandler::Databases',
25 is => 'ro',
26 default => sub { [qw( MySQL SQLite PostgreSQL )] },
27);
28
02a7b8ac 29has sql_translator_args => (
cfc9edf9 30 isa => 'HashRef',
31 is => 'ro',
32 default => sub { {} },
33);
34
01342998 35sub _build_deploy_method {
36 my $self = shift;
37 DBIx::Class::DeploymentHandler::DeployMethod::SQL::Translator::Deprecated->new({
02a7b8ac 38 schema => $self->schema,
39 databases => $self->databases,
40 upgrade_directory => $self->upgrade_directory,
41 sql_translator_args => $self->sql_translator_args,
01342998 42 });
43}
44
451;
46
e52174e3 47# vim: ts=2 sw=2 expandtab
48
01342998 49__END__
50