Open thalesmello opened 7 years ago
I think it would be nice if instead of
exports.up = function(next) { // something next(); };
It would be nice to write
exports.up = function() { return query('Something') };
It would even allow as to use async functions in the queries, making it even nicer
exports.up = async function() { await query('something') };
I think it would be nice if instead of
It would be nice to write
It would even allow as to use async functions in the queries, making it even nicer