lamassu-server/migrations/1616528363530-add_cashbox_batches.js
2021-11-12 14:52:17 +00:00

26 lines
613 B
JavaScript

var db = require('./db')
exports.up = function (next) {
var sqls = [
`create table cashbox_batches (
id uuid PRIMARY KEY,
device_id text REFERENCES devices (device_id),
created timestamptz NOT NULL default now()
)`,
`ALTER TABLE bills ADD COLUMN legacy boolean DEFAULT false`,
`ALTER TABLE bills ADD COLUMN cashbox_batch_id uuid`,
`ALTER TABLE bills ADD CONSTRAINT cashbox_batch_id
FOREIGN KEY (cashbox_batch_id)
REFERENCES cashbox_batches (id)`,
`UPDATE bills SET legacy = 'true'`
]
db.multi(sqls, next)
}
exports.down = function (next) {
next()
}