diff --git a/server/mongo/migrations/0.16.1.py b/server/mongo/migrations/0.16.1.py new file mode 100644 index 0000000..119353a --- /dev/null +++ b/server/mongo/migrations/0.16.1.py @@ -0,0 +1,11 @@ +from pymongo.database import Database, Collection + + +def migrate_backend(db: Database): + collection: Collection = db["project"] + featured = "featured" + query = {featured: {"$exists": False}} + for doc in collection.find(filter=query, projection=()): + collection.update_one( + {"_id": doc["_id"]}, {"$set": {featured: 9999}}, + )