fix: deprecate cashInFeeCrypto
This commit is contained in:
parent
8daa2a0585
commit
d7a5f05437
6 changed files with 16 additions and 6 deletions
13
migrations/1670425142650-deprecate-cash-in-fee-crypto.js
Normal file
13
migrations/1670425142650-deprecate-cash-in-fee-crypto.js
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue