Tweeder/dev/fixdb.py
2018-02-20 23:00:41 +00:00

14 lines
245 B
Python

from pymongo import MongoClient
client = MongoClient()
db = client.tweeder
accounts_db = db.accounts
accounts_db.update_many({}, {
'$push': {
"verified": False,
"following": [],
"profile": {}
}
}, upsert=True)