paperless-ngx/src/reminders/models.py
2018-07-04 17:03:59 +02:00

8 lines
217 B
Python
Executable file

from django.db import models
class Reminder(models.Model):
document = models.ForeignKey("documents.Document", on_delete=models.CASCADE)
date = models.DateTimeField()
note = models.TextField(blank=True)