fix: removed unnecessary support log code from server

This commit is contained in:
Liordino Neto 2020-10-28 00:09:21 -03:00 committed by Josh Harvey
parent 1f7b517c07
commit a1cc7cad13
4 changed files with 15 additions and 77 deletions

View file

@ -0,0 +1,14 @@
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()
}