mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-08-14 00:26:21 +00:00
Updated to Django 2
This commit is contained in:
2
src/reminders/models.py
Normal file → Executable file
2
src/reminders/models.py
Normal file → Executable file
@@ -3,6 +3,6 @@ from django.db import models
|
||||
|
||||
class Reminder(models.Model):
|
||||
|
||||
document = models.ForeignKey("documents.Document")
|
||||
document = models.ForeignKey("documents.Document", on_delete=models.CASCADE)
|
||||
date = models.DateTimeField()
|
||||
note = models.TextField(blank=True)
|
||||
|
Reference in New Issue
Block a user