Tweeder/dev/fixdb.py

12 lines
No EOL
220 B
Python

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