removes unecessary dependence on existence of username for User migration01, + fix whitespace issues

This commit is contained in:
cfdv 2011-06-20 19:28:02 -05:00
parent e36ecab093
commit 17bb7c388b

View File

@ -54,13 +54,12 @@ class UserMigration(DocumentMigration):
"""
User can elaborate profile with home page and biography
"""
self.target = {'username': {'$exists': True}, 'url': {'$exists': False},
self.target = {'url': {'$exists': False},
'bio': {'$exists': False}}
if not self.status:
for doc in self.collection.find(self.target):
self.update = {
'$set': {
'url': '',
'$set': {'url': '',
'bio': ''}}
self.collection.update(
self.target, self.update, multi=True, safe=True)