Skip to content
This repository has been archived by the owner on Mar 24, 2021. It is now read-only.

Commit

Permalink
Remove _updated_at from bucket model
Browse files Browse the repository at this point in the history
This was not there before and it being there causes the model to break.
There is a question over whether it should be there.
  • Loading branch information
robyoung committed Feb 24, 2014
1 parent 355e04b commit ff525a9
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions migrations/009_fix_and_resize_capped_collections.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ def set_bucket_metadata_capped(mongo_db, collection_name):
"$set": {
"capped_size": CAP_SIZE,
"realtime": True,
"_updated_at": timeutils.now()
}
},
upsert=False,
Expand All @@ -70,7 +69,6 @@ def set_bucket_metadata_uncapped(mongo_db, collection_name):
"$set": {
"capped_size": None,
"realtime": False,
"_updated_at": timeutils.now()
}
},
upsert=False,
Expand Down

0 comments on commit ff525a9

Please sign in to comment.