const db = require('./db') exports.up = function (next) { const sql = ['alter table logs add column serial integer not null default 0'] db.multi(sql, next) } exports.down = function (next) { next() }