feat: cashbox batch table and update bills

This commit is contained in:
José Oliveira 2021-03-25 15:09:36 +00:00 committed by Josh Harvey
parent 4f12bcf4cf
commit 20703d0271
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,26 @@
var db = require('./db')
exports.up = function (next) {
var sqls = [
`create table cashbox_batches (
id serial 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 int`,
`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()
}