lamassu-server/migrations/022-add_cash_in_sent.js
Josh Harvey 0bf54fa1d8 WIPP
2017-03-05 18:39:52 +02:00

12 lines
221 B
JavaScript

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()
}