summaryrefslogtreecommitdiff
path: root/app/notes/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/notes/models.py')
-rw-r--r--app/notes/models.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/notes/models.py b/app/notes/models.py
index ffd0a25..7f8dab0 100644
--- a/app/notes/models.py
+++ b/app/notes/models.py
@@ -22,6 +22,13 @@ class Note(models.Model):
(4, 'Live'),
)
status = models.IntegerField(choices=STATUS, default=0)
+ PLAN = (
+ (0, 'For Guide'),
+ (1, 'Review'),
+ (2, 'Rave'),
+ (3, 'Rant'),
+ )
+ plan = models.IntegerField(choices=PLAN, default=0)
class Meta:
ordering = ('date_created', 'status')