We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7398bea commit 5d44950Copy full SHA for 5d44950
django_openid_auth/models.py
@@ -56,7 +56,7 @@ def __unicode__(self):
56
57
58
class UserOpenID(models.Model):
59
- user = models.ForeignKey(settings.AUTH_USER_MODEL)
+ user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE)
60
claimed_id = models.TextField(max_length=2047)
61
display_id = models.TextField(max_length=2047)
62
setup.py
@@ -47,7 +47,7 @@
47
48
49
description, long_description = __doc__.split('\n\n', 1)
50
-VERSION = '0.15.1'
+VERSION = '0.15.2'
51
52
install_requires = ['django>=1.6', 'six']
53
if PY3:
0 commit comments