Prevent address reuse option
This commit is contained in:
parent
55cdc2fa52
commit
98cc3b18b7
9 changed files with 141 additions and 13 deletions
13
migrations/1564485980102-alter-blacklist.js
Normal file
13
migrations/1564485980102-alter-blacklist.js
Normal 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()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue