lamassu-server/packages/server/migrations/1732790112740-add-cashout-fee-to-cash_out_txs.js
2025-12-31 19:04:13 +01:00

11 lines
210 B
JavaScript

const db = require('./db')
exports.up = next =>
db.runAll(
[
'ALTER TABLE cash_out_txs ADD COLUMN fixed_fee numeric(14, 5) NOT NULL DEFAULT 0;',
],
next,
)
exports.down = next => next()