blob: 99ec03a87c5c8340cb21d66f654ea90b9be4e2f2 (
plain)
1
2
3
4
5
6
7
8
9
|
- Recovering rocketchat from failed update
mongo -u userRBS -p <...> --authenticationDatabase "rocketchatdb"
use rocketchatdb
show collections
db.migrations.find({})
# This is version corresponding to 0.71.1 (a68a2527b6c1) running on KaaS.
db.migrations.update({ _id: 'control' }, { $set: { locked: false, version: 135 } });
db.migrations.renameCollection("migrations_disable")
|