lamassu-server/packages/server/migrations/1724242113482-drop-last-used-fkey.js
2025-12-31 19:04:13 +01:00

12 lines
214 B
JavaScript

const db = require('./db')
exports.up = function (next) {
db.runAll(
['ALTER TABLE customers DROP CONSTRAINT customers_last_used_machine_fkey;'],
next,
)
}
exports.down = function (next) {
next()
}