Skip to content

Commit

Permalink
fix: crdt-transactions renamed to crdt
Browse files Browse the repository at this point in the history
  • Loading branch information
frankpagan committed Oct 23, 2023
1 parent 6b1be9c commit f61a934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installation/migrateDB.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ mongoClient(fromDB).then(fromDBClient => {
db.listCollections().toArray(function (error, results) {
if (!error && results && results.length > 0) {
for (let result of results) {
if (!["organizations", "users", "keys", "files", "crdt-transactions", "metrics", "industries", "industry_objects"].includes(result.name))
if (!["organizations", "users", "keys", "files", "crdt", "metrics", "industries", "industry_objects"].includes(result.name))
getCollection(db, result.name)
}
}
Expand Down

0 comments on commit f61a934

Please sign in to comment.