Prevent address reuse option

This commit is contained in:
Rafael Taranto 2019-07-31 12:17:39 +01:00 committed by Josh Harvey
parent 55cdc2fa52
commit 98cc3b18b7
9 changed files with 141 additions and 13 deletions

View file

@ -0,0 +1,13 @@
const db = require('./db')
exports.up = function (next) {
var sql = [
"ALTER TABLE blacklist ADD COLUMN created_by_operator boolean not null default 't' "
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}