DBIx::Migration::Directories::Database is a Perl module that offers database-dependant migration operations.
SYNOPSIS
my $object = DBIx::Migration::Directories->new(
$dbh => $some_database_handle, schema => "foo"
);
if($object->db->table_exists("foo")) {
print "Table foo exists.n";
}
DBIx::Migration::Directories::Database contains any migration operations that actually make use of a database. The purpose of having these as a separate module is to make it possible to override specific SQL operations for specific database engines do things in a non-standard way (eg; MySQL).
Product's homepage
Requirements:
· Perl
What's New in This Release: [ read full changelog ]
· Don't consider files that end with a tilde (~) to be schema files. (This extension is commonly chosen as a 'backup' file by editors such as joe, gedit, etc)
· Added some (very basic) documentation to DBIx::Migration::Directories::Test