Added empty profile to fixdb

This commit is contained in:
SecretlyTaco 2018-02-20 23:00:41 +00:00
parent 6cdc40516a
commit cf7ab61583

View file

@ -7,6 +7,8 @@ accounts_db = db.accounts
accounts_db.update_many({}, { accounts_db.update_many({}, {
'$push': { '$push': {
"verified": False, "verified": False,
"following": [] "following": [],
"profile": {}
} }
}, upsert=True) }, upsert=True)