Merge pull request #958 from ubavic/fix/machine_unpair_dev

fix: machine unpair (dev)
This commit is contained in:
Rafael Taranto 2021-12-02 15:00:25 +00:00 committed by GitHub
commit 210acd1b02
2 changed files with 38 additions and 8 deletions

View file

@ -0,0 +1,22 @@
var db = require('./db')
exports.up = function (next) {
var sql = [
`ALTER TABLE cashbox_batches
DROP CONSTRAINT cashbox_batches_device_id_fkey;`,
`CREATE TABLE IF NOT EXISTS unpaired_devices (
id uuid PRIMARY KEY,
device_id text NOT NULL,
model text,
name text,
paired timestamp NOT NULL,
unpaired timestamp NOT NULL
)`,
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}