11 lines
209 B
JavaScript
11 lines
209 B
JavaScript
const db = require('./db')
|
|
|
|
exports.up = function (next) {
|
|
let sql = ['ALTER TABLE customers ADD COLUMN last_auth_attempt timestamptz']
|
|
|
|
db.runAll(sql, next)
|
|
}
|
|
|
|
exports.down = function (next) {
|
|
next()
|
|
}
|