lamassu-server/migrations/1508261875640-logs.js
2017-12-13 16:31:07 +02:00

18 lines
284 B
JavaScript

var db = require('./db')
exports.up = function (next) {
const sql =
[`create table logs (
id uuid PRIMARY KEY,
device_id text,
log_level text,
timestamp timestamptz,
message text)`
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}