lamassu-server/migrations/1601649726488-user-suspend.js
2020-10-06 23:19:22 +02:00

13 lines
214 B
JavaScript

const db = require('./db')
exports.up = function (next) {
var sql = [
"ALTER TABLE customers ADD COLUMN suspended_until timestamptz"
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}