lamassu-server/migrations/1670425142650-deprecate-cash-in-fee-crypto.js
2022-12-07 15:21:28 +00:00

13 lines
208 B
JavaScript

const db = require('./db')
exports.up = function (next) {
var sql = [
'ALTER TABLE cash_in_txs DROP COLUMN cash_in_fee_crypto'
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}