Commit 89ddc316 authored by nekopilar's avatar nekopilar

added authors for post

parent 74cce3ea
......@@ -6,6 +6,7 @@ class Post(models.Model):
post_title = models.CharField(max_length=75)
post_body = models.TextField()
pub_date = models.DateField(auto_now_add=True)
author = models.ForeignKey(WidgetUser, on_delete=models.CASCADE, null=True)
class Reply(models.Model):
reply_body = models.TextField()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment