clean up migrations

This commit is contained in:
Josh Harvey 2017-05-07 18:34:46 +03:00
parent 236070668a
commit 279c296aee
8 changed files with 25 additions and 103 deletions

View file

@ -2,7 +2,6 @@ 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)