summaryrefslogtreecommitdiff
path: root/comments/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'comments/models.py')
-rw-r--r--comments/models.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/comments/models.py b/comments/models.py
new file mode 100644
index 0000000..390b274
--- /dev/null
+++ b/comments/models.py
@@ -0,0 +1,18 @@
+from django.db import models
+
+class Comment(models.Model):
+ title = models.CharField(max_length=200)
+ body = models.TextField()
+ book = models.CharField(max_length=200)
+ chapter = models.CharField(max_length=10)
+ example = models.CharField(max_length=10)
+ page = models.CharField(max_length=10)
+ date_created = models.DateTimeField(auto_now_add=True)
+ date_modified = models.DateTimeField(auto_now=True)
+
+class Reply(models.Model):
+ comment = models.ForeignKey(Comment)
+ body = models.CharField(max_length=200)
+ date_created = models.DateTimeField(auto_now_add=True)
+ date_modified = models.DateTimeField(auto_now=True)
+