feat: add the new reminders app

This commit is contained in:
Daniel Quinn
2017-03-25 16:21:46 +00:00
parent 27db4f7e51
commit b876a0d0df
13 changed files with 127 additions and 0 deletions

8
src/reminders/models.py Normal file
View File

@@ -0,0 +1,8 @@
from django.db import models
class Reminder(models.Model):
document = models.ForeignKey("documents.Document")
date = models.DateTimeField()
note = models.TextField(blank=True)