feat: store id card raw data

This commit is contained in:
Sérgio Salgado 2021-01-15 15:49:33 +00:00 committed by Josh Harvey
parent 2c211aadd8
commit 309d9ff95b
2 changed files with 28 additions and 1 deletions

View file

@ -0,0 +1,13 @@
var db = require('./db')
exports.up = function (next) {
var sql = [
'ALTER TABLE customers ADD COLUMN id_card_data_raw text'
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}