lamassu-server/migrations/1641486859782-wallet-scoring-cash-out.js
2022-01-25 15:59:31 +00:00

13 lines
209 B
JavaScript

var db = require('./db')
exports.up = function (next) {
var sql = [
`ALTER TABLE cash_out_txs ADD COLUMN wallet_score SMALLINT`
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}