use Carp::Clan '^DBIx::Class::DeploymentHandler';
has schema => (
- isa => 'DBIx::Class::Schema',
- is => 'ro',
- required => 1,
- handles => [qw{schema_version}],
+ isa => 'DBIx::Class::Schema',
+ is => 'ro',
+ required => 1,
+ handles => [qw{schema_version}],
);
has upgrade_directory => (
- isa => 'Str',
- is => 'ro',
- required => 1,
- default => 'sql',
+ isa => 'Str',
+ is => 'ro',
+ required => 1,
+ default => 'sql',
);
has backup_directory => (
- isa => 'Str',
- is => 'ro',
+ isa => 'Str',
+ is => 'ro',
);
has storage => (
- isa => 'DBIx::Class::Storage',
- is => 'ro',
- lazy_build => 1,
+ isa => 'DBIx::Class::Storage',
+ is => 'ro',
+ lazy_build => 1,
);
method _build_storage {
- my $s = $self->schema->storage;
- $s->_determine_driver;
- $s
+ my $s = $self->schema->storage;
+ $s->_determine_driver;
+ $s
}
has _filedata => (
- isa => 'Str',
- is => 'rw',
+ isa => 'Str',
+ is => 'rw',
);
has do_backup => (
- isa => 'Bool',
- is => 'ro',
- default => undef,
+ isa => 'Bool',
+ is => 'ro',
+ default => undef,
);
has do_diff_on_init => (
- isa => 'Bool',
- is => 'ro',
- default => undef,
+ isa => 'Bool',
+ is => 'ro',
+ default => undef,
);
has version_rs => (
- isa => 'DBIx::Class::ResultSet',
- is => 'ro',
- lazy_build => 1,
- handles => [qw( is_installed db_version )],
+ isa => 'DBIx::Class::ResultSet',
+ is => 'ro',
+ lazy_build => 1,
+ handles => [qw( is_installed db_version )],
);
method _build_version_rs { $self->schema->resultset('VersionResult') }
$self->schema->deploy;
$self->version_rs->create({
- version => $new_version,
- # ddl => $ddl,
- # upgrade_sql => $upgrade_sql,
+ version => $new_version,
+ # ddl => $ddl,
+ # upgrade_sql => $upgrade_sql,
});
}
}
my $schema_version = $self->schema_version;
unless ($db_version) {
- # croak?
- carp 'Upgrade not possible as database is unversioned. Please call install first.';
- return;
+ # croak?
+ carp 'Upgrade not possible as database is unversioned. Please call install first.';
+ return;
}
if ( $db_version eq $schema_version ) {
- # croak?
- carp "Upgrade not necessary\n";
- return;
+ # croak?
+ carp "Upgrade not necessary\n";
+ return;
}
my @version_list = $self->ordered_schema_versions ||
# remove all versions in list above the required version
while ( @version_list && ( $version_list[-1] ne $schema_version ) ) {
- pop @version_list;
+ pop @version_list;
}
# remove all versions in list below the current version
while ( @version_list && ( $version_list[0] ne $db_version ) ) {
- shift @version_list;
+ shift @version_list;
}
# check we have an appropriate list of versions
# do sets of upgrade
while ( @version_list >= 2 ) {
- $self->upgrade_single_step( $version_list[0], $version_list[1] );
- shift @version_list;
+ $self->upgrade_single_step( $version_list[0], $version_list[1] );
+ shift @version_list;
}
}
$self->schema->txn_do(sub { $self->do_upgrade });
$self->version_rs->create({
- version => $target_version,
- # ddl => $ddl,
- # upgrade_sql => $upgrade_sql,
+ version => $target_version,
+ # ddl => $ddl,
+ # upgrade_sql => $upgrade_sql,
});
}
}
1;
+
+__END__
+
+vim: ts=2,sw=2,expandtab