Commit e269bb4d authored by nekopilar's avatar nekopilar

added models to forum

parent 3402be5f
from django.db import models
# Create your models here.
class Post(models.Model):
post_title = models.CharField(max_length=75)
post_body = models.TextField()
pub_date = models.DateField(auto_now_add=True)
\ No newline at end of file
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