kawadhiya21 / mysql-migrations

A tool to use with mysql package to maintain migrations
MIT License
31 stars 25 forks source link

Anonymous migrations can not be functions #3

Open devfive opened 6 years ago

devfive commented 6 years ago

Hi,

I was trying to do anonymous migration, however it doesn't handle functions, eg.:

module.exports = {
  up: function (..) { ... },
  down: function (..) { ... },
};