balmasi / migrate-mongoose

A node based migration framework for mongoose supporting ES6 migrations
MIT License
264 stars 84 forks source link

Fix: `migrator.run('down')` without a migration name rollbacks only the last migration; Fix #26 #27

Closed dmshvetsov closed 5 years ago

dmshvetsov commented 7 years ago

For the 'down' direction we have to sort with createdAt: 1 options. Because we need the first migration, instead the last one for the 'up' direction.