This commit is contained in:
Josh Harvey 2017-03-06 14:22:33 +02:00
parent 0bf54fa1d8
commit 30071151ff
6 changed files with 107 additions and 242 deletions

View file

@ -2,7 +2,8 @@ var db = require('./db')
exports.up = function (next) {
var sql = [
'alter table cash_in_txs add column sent boolean not null default false'
'alter table cash_in_txs add column send boolean not null default false',
'alter table cash_in_txs rename currency_code to fiat_code'
]
db.multi(sql, next)
}