lamassu-server/migrations/1641394367865-testing-customer-toggle.js
2022-01-19 02:23:26 +00:00

13 lines
224 B
JavaScript

var db = require('./db')
exports.up = function (next) {
var sql = [
`ALTER TABLE customers ADD COLUMN is_test_customer BOOLEAN DEFAULT false`,
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}