Revision history for {{$dist->name}}
{{$NEXT}}
+ - Fix the backup method to use storage, not schema (jnap)
- Fix the reasonable defaults for downgrading (jnap)
- Stop warning all the time (ribasushi)
- croak on a couple errors that should be fatal
sub backup {
my $self = shift;
log_info { 'backing up' };
- $self->storage->backup($self->backup_directory)
+ $self->schema->storage->backup($self->backup_directory)
}
__PACKAGE__->meta->make_immutable;