This commit is contained in:
Josh Harvey 2017-03-05 18:39:52 +02:00
parent bef0a8d98d
commit 0bf54fa1d8
7 changed files with 115 additions and 14 deletions

View file

@ -0,0 +1,12 @@
var db = require('./db')
exports.up = function (next) {
var sql = [
'alter table cash_in_txs add column sent boolean not null default false'
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}