logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

DBIx::Class::DeploymentHandler::VersionStorage::Deprecated - (DEPRECATED) Use this if you are stuck in

Author

       Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>

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;