lamassu-server/migrations/1603853985238-remove-support-log.js

14 lines
233 B
JavaScript

var db = require('./db')
exports.up = function (next) {
var sql = [
'drop table if exists support_logs',
'drop table if exists server_support_logs'
]
db.multi(sql, next)
}
exports.down = function (next) {
next()
}