Skip to content

Commit

Permalink
Merge branch 'master' into 407
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronpettit authored Mar 24, 2021
2 parents 00df447 + b850061 commit 6011b69
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,9 @@ exports.up = async function(db) {
}
);



const nrptiCollection = mClient.collection('nrpti');

nrptiCollection.dropIndex('keyword-search-text-index');
await nrptiCollection.dropIndex('keyword-search-text-index');

await nrptiCollection.createIndex(
{
Expand All @@ -64,7 +62,7 @@ exports.up = async function(db) {

const redactedCollection = mClient.collection('redacted_record_subset');

redactedCollection.dropIndex('keyword-search-text-index');
await redactedCollection.dropIndex('keyword-search-text-index');

await redactedCollection.createIndex(
{
Expand Down

0 comments on commit 6011b69

Please sign in to comment.