feat: ciphertrace cashout flow

This commit is contained in:
Sérgio Salgado 2022-01-10 15:06:27 +00:00
parent 8a4046ebbe
commit ae8c86a6a7
7 changed files with 153 additions and 7 deletions

View file

@ -0,0 +1,13 @@
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()
}