minor fixes

This commit is contained in:
Josh Harvey 2017-04-26 01:39:58 +03:00
parent 291f53ad25
commit 55717dbc8d
2 changed files with 3 additions and 2 deletions

View file

@ -2,6 +2,7 @@ var db = require('./db')
exports.up = function (next) {
var sql = [
'delete from user_config',
'alter table user_config add column valid boolean not null'
]
db.multi(sql, next)