12 lines
279 B
Python
12 lines
279 B
Python
from django.db import models
|
|
import datetime
|
|
|
|
|
|
# Create your models here.
|
|
|
|
class Blog(models.Model):
|
|
title = models.CharField(max_length=200)
|
|
pubdate = models.DateTimeField()
|
|
body = models.TextField(max_length=1000)
|
|
image = models.ImageField(upload_to='images/')
|