lamassu-server/packages/server/migrations/1670425142650-deprecate-cash-in-fee-crypto.js
2025-12-31 19:04:13 +01:00

11 lines
201 B
JavaScript

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