summaryrefslogtreecommitdiff
path: root/tests/custom_pk
diff options
context:
space:
mode:
authorFlavio Curella <flavio.curella@gmail.com>2015-07-22 09:43:21 -0500
committerTim Graham <timograham@gmail.com>2015-07-27 18:28:13 -0400
commitc2e70f02653519db3a49cd48f5158ccad7434d25 (patch)
treec0f421a6b0c26a7716c380b3e360fecc74d553fb /tests/custom_pk
parent87d55081ea398c65b2503d22ed3907a9175ec729 (diff)
downloaddjango-c2e70f02653519db3a49cd48f5158ccad7434d25.tar.gz
Fixed #21127 -- Started deprecation toward requiring on_delete for ForeignKey/OneToOneField
Diffstat (limited to 'tests/custom_pk')
-rw-r--r--tests/custom_pk/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/custom_pk/models.py b/tests/custom_pk/models.py
index eb9f86b064..20b484c426 100644
--- a/tests/custom_pk/models.py
+++ b/tests/custom_pk/models.py
@@ -48,4 +48,4 @@ class Bar(models.Model):
class Foo(models.Model):
- bar = models.ForeignKey(Bar)
+ bar = models.ForeignKey(Bar, models.CASCADE)