lamassu-server/packages/server/migrations/1670425142650-deprecate-cash-in-fee-crypto.js
2025-05-12 10:52:54 +01: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()
}