lamassu-server/migrations/1639577650032-wallet-scoring.js
2022-01-21 18:26:57 +00:00

13 lines
208 B
JavaScript

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