GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
DBIx::Class::DeploymentHandler::HandlesVersionStorage(3) User Contributed Perl Documentation DBIx::Class::DeploymentHandler::HandlesVersionStorage(3)

DBIx::Class::DeploymentHandler::HandlesVersionStorage - Interface for version storage methods

Typically VersionStorages will be implemented with a simple DBIx::Class::Result. Take a look at the two existing implementations for examples of what you might want to do in your own storage.

  • DBIx::Class::DeploymentHandler::VersionStorage::Standard
  • DBIx::Class::DeploymentHandler::VersionStorage::Deprecated

 $dh->add_database_version({
   version     => '1.02',
   ddl         => $ddl, # can be undef
   upgrade_sql => $sql, # can be undef
 });

Store a new version into the version storage

 my $db_version = $version_storage->database_version

Returns the most recently installed version in the database.

 $dh->delete_database_version({ version => '1.02' })

Deletes given database version from the version storage

 warn q(I can't version this database!)
   unless $dh->version_storage_is_installed

return true if the version storage is installed.

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

This software is copyright (c) 2019 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.

2019-09-25 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.