fix: add us_ssn to compliance types
This commit is contained in:
parent
2613dc6014
commit
b7c03acfe7
1 changed files with 13 additions and 0 deletions
|
|
@ -0,0 +1,13 @@
|
|||
const db = require('./db')
|
||||
|
||||
exports.up = function (next) {
|
||||
const sql = [
|
||||
`ALTER TYPE compliance_type ADD VALUE 'us_ssn'`
|
||||
]
|
||||
|
||||
db.multi(sql, next)
|
||||
}
|
||||
|
||||
exports.down = function (next) {
|
||||
next()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue