lamassu-server/migrations/1556582597515-blacklist.js
2019-04-30 19:13:24 +02:00

17 lines
291 B
JavaScript

var db = require('./db')
exports.up = function (next) {
const sql =
[`create table blacklist (
crypto_code text not null,
address text not null,
unique (crypto_code, address)
)`
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}