lamassu-server/packages/server/migrations/1601649726488-user-suspend.js
2025-12-31 19:04:13 +01:00

11 lines
207 B
JavaScript

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