Commit 5d44950f by Mathieu Comandon

Add on_delete argument for Django 2 compatibility

parent 7398beac
......@@ -56,7 +56,7 @@ class Association(models.Model):
class UserOpenID(models.Model):
user = models.ForeignKey(settings.AUTH_USER_MODEL)
user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE)
claimed_id = models.TextField(max_length=2047)
display_id = models.TextField(max_length=2047)
......
......@@ -47,7 +47,7 @@ PY3 = sys.version_info.major >= 3
description, long_description = __doc__.split('\n\n', 1)
VERSION = '0.15.1'
VERSION = '0.15.2'
install_requires = ['django>=1.6', 'six']
if PY3:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment