PROTECT, not PROTECTION

This commit is contained in:
dadosch 2018-08-29 00:08:01 +02:00
parent 91cecd47af
commit 633d2b376f

View File

@ -4,7 +4,7 @@ from django.db import models
class Reminder(models.Model):
document = models.ForeignKey(
"documents.Document", on_delete=models.PROTECTION
"documents.Document", on_delete=models.PROTECT
)
date = models.DateTimeField()
note = models.TextField(blank=True)