We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The event job should have been configured so to delete the old entries every time the end_date is found in the past
end_date
The text was updated successfully, but these errors were encountered:
Also, the existing collection data should be updated. Only ~30 exists at current time
db.getCollection("ert.Event").find({}) .projection({}) .sort({_id:-1}) .limit(1000).forEach((it) => { let dateFrom = new Date(it.date_from); let dateTo = new Date(it.date_to); db.getCollection("ert.Event").updateOne({_id: it._id}, {$set: { date_from: dateFrom, date_to: dateTo } } ) } )
Sorry, something went wrong.
bugfix(#12): change mongo date type, add remapping
8375b50
loreV
No branches or pull requests
The event job should have been configured so to delete the old entries every time the
end_date
is found in the pastThe text was updated successfully, but these errors were encountered: