Skip to content

Commit

Permalink
Remove dbref=True from ReferenceField. Refs #42
Browse files Browse the repository at this point in the history
  • Loading branch information
omab committed Sep 27, 2013
1 parent f269249 commit 05556e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion social/apps/django_app/me/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

class UserSocialAuth(Document, DjangoUserMixin):
"""Social Auth association model"""
user = ReferenceField(USER_MODEL, dbref=True)
user = ReferenceField(USER_MODEL)
provider = StringField(max_length=32)
uid = StringField(max_length=255, unique_with='provider')
extra_data = DictField()
Expand Down

0 comments on commit 05556e6

Please sign in to comment.