Rename groups table to userGroups

This commit is contained in:
Johannes Zellner
2018-12-01 00:38:00 +01:00
parent be0876603c
commit f5f92fbb03
10 changed files with 26 additions and 26 deletions

View File

@@ -18,7 +18,7 @@ exports.up = function(db, callback) {
async.series([
db.runSql.bind(db, 'DELETE FROM groupMembers WHERE groupId=?', [ 'admin' ]),
db.runSql.bind(db, 'DELETE FROM groups WHERE id=?', [ 'admin' ])
db.runSql.bind(db, 'DELETE FROM userGroups WHERE id=?', [ 'admin' ])
], callback);
});
});