feat: ciphertrace cashout flow
This commit is contained in:
parent
8a4046ebbe
commit
ae8c86a6a7
7 changed files with 153 additions and 7 deletions
13
migrations/1641486859782-wallet-scoring-cash-out.js
Normal file
13
migrations/1641486859782-wallet-scoring-cash-out.js
Normal 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()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue