mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Add a dummy rollback, clean up.
This commit is contained in:
parent
45d86c3a43
commit
54afc10461
1 changed files with 8 additions and 1 deletions
|
@ -6,13 +6,16 @@ db = mongojs(Settings.mongo.url, ['users'])
|
|||
_ = require("underscore")
|
||||
BSON = db.bson.BSON
|
||||
|
||||
|
||||
handleExit = () ->
|
||||
console.log('Got signal. Shutting down.')
|
||||
|
||||
|
||||
process.on 'SIGINT', handleExit
|
||||
process.on 'SIGHUP', handleExit
|
||||
|
||||
module.exports.migrate = (client, done=()->) ->
|
||||
|
||||
exports.migrate = (client, done=()->) ->
|
||||
patch = {
|
||||
$set: {
|
||||
features: {
|
||||
|
@ -30,3 +33,7 @@ module.exports.migrate = (client, done=()->) ->
|
|||
db.users.update {}, patch, {multi: true}, (err) ->
|
||||
console.log "finished updating all user features"
|
||||
return done(err)
|
||||
|
||||
|
||||
exports.rollback = (client, done) ->
|
||||
done()
|
||||
|
|
Loading…
Reference in a new issue