fix: machine unpair
feat: add removed_devices table
This commit is contained in:
parent
0a605e9346
commit
654e7c601e
2 changed files with 35 additions and 1 deletions
22
migrations/1637877732001-add_unpaired_devices_table.js
Normal file
22
migrations/1637877732001-add_unpaired_devices_table.js
Normal 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()
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue