Help for this page

Select Code to Download


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