UNPKG

east

Version:

node.js database migration tool for mongodb, sqlite, postgres, mysql, couchbase

13 lines (11 loc) 285 B
module.exports = function _getSequentialNumber() { return Promise.resolve() .then(() => { return this.getAllMigrationNames(); }) .then((allNames) => { const lastNames = allNames[allNames.length - 1]; const num = this._getNumber(lastNames) + 1; return num; }); };