NAME

DB::SQL::Migrations - apply database migrations via scripts in a directory

SYNOPSIS

  use DB::SQL::Migrations;
  my $migrator = DB::SQL::Migrations->new( dbh => $some_db_handle,
                                           migrations => $some_path,                                        
   )

  $migrator->create_migrations_table(); #creates schema table if it doesn't exist
  $migrator->apply(); 

DESCRIPTION

Run a number of small SQL scripts

REPOSITORY

https://github.com/jontaylor/DB-SQL-Migrations

AUTHOR

Adam Omielan, <adam@assure24.com> Jonathan Taylor, <jon@stackhaus.com>

COPYRIGHT AND LICENSE

Copyright (C) 2012 by Jonathan Taylor

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.14.2 or, at your option, any later version of Perl 5 you may have available.