lamassu-server/migrations/016-new_cached_requests_table.js
Fabio Cigliano 12c834469c Migration sql changes (#199)
* safe migration script changes

* lamassu migration script fixes
2018-11-01 13:26:48 +02:00

20 lines
446 B
JavaScript

var db = require('./db')
exports.up = function (next) {
var sql = [
'drop table if exists cached_responses',
`create table if not exists idempotents (
request_id text PRIMARY KEY,
device_id text NOT NULL,
body json NOT NULL,
status integer NOT NULL,
pending boolean NOT NULL,
created timestamptz NOT NULL default now()
)`
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}