- or download this
migrations:
directory: db/migrations
- or download this
use Dancer2;
use Dancer2::Plugin::Database;
...
if (/down/) { $migration->down($num); last SWITCH; }
if (/init/) { $migration->init(); last SWITCH; }
}
- or download this
perl migration.pl up
perl migration.pl down
perl migration.pl init