Skip to content

Commit

Permalink
add useful script
Browse files Browse the repository at this point in the history
  • Loading branch information
drypa committed Feb 11, 2024
1 parent eef0bdf commit 1adf247
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,12 @@ db.getCollection('devices').updateOne({"_id": ObjectId("000000000000000000000000
"refresh_token": "XXX"
}
})
```
```

```javascript
//reset receipts error status
db.receipt_requests.updateMany({
"query_string": /t=2024/,
"check_request_status": "error"
}, {$set: {"check_request_status": null}}, {})
```

0 comments on commit 1adf247

Please sign in to comment.