lamassu-server/packages/server/migrations/1536651947391-add-device-id-to-cash-out-actions.js
2025-05-12 10:52:54 +01:00

12 lines
218 B
JavaScript

var db = require('./db')
exports.up = function (next) {
var sql = [
"alter table cash_out_actions add device_id text not null default ''"
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}