DBIx::Class::DeploymentHandler::VersionStorage::Deprecated - (DEPRECATED) Use this if you are stuck in
Contents
Copyright And License
This software is copyright (c) 2024 by Arthur Axel "fREW" Schmidt.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5
programming language system itself.
perl v5.38.2 2024-07-28 DBIx::Class::De...age::Deprecated(3pm)
Deprecated
I begrudgingly made this module (and other related modules) to keep porting from
DBIx::Class::Schema::Versioned relatively simple. I will make changes to ensure that it works with
output from DBIx::Class::Schema::Versioned etc, but I will not add any new features to it.
Once I hit major version 1 usage of this module will emit a warning. On version 2 it will be removed
entirely.
Name
DBIx::Class::DeploymentHandler::VersionStorage::Deprecated - (DEPRECATED) Use this if you are stuck in
the past
See Also
This class is an implementation of DBIx::Class::DeploymentHandler::HandlesVersionStorage. Pretty much
all the documentation is there.
This Sucks
Here's how to convert from that crufty old Deprecated VersionStorage to a shiny new Standard
VersionStorage:
my $s = My::Schema->connect(...);
my $dh = DeploymentHandler({
schema => $s,
});
$dh->prepare_version_storage_install;
$dh->install_version_storage;
my @versions = $s->{vschema}->resultset('Table')->search(undef, {
order_by => 'installed',
})->get_column('version')->all;
$dh->version_storage->add_database_vesion({ version => $_ })
for @versions;
