tj / node-migrate

Abstract migration framework for node
MIT License
1.53k stars 221 forks source link

no .migrate file #174

Closed punund closed 4 years ago

punund commented 4 years ago
module.exports.up = function() {
   query = 'create table aaa(a integer)'
   return runQuery(query)
}

runQuery returns a promise. Migration works, but no .migrate file is created.

punund commented 4 years ago

My bad. This functions calls process.exit 🤦‍♂️