site-2015/blog/models.py
2015-07-09 17:37:26 -04:00

9 lines
237 B
Python

from django.db import models
class Article(models.Model):
title = models.CharField(max_length=50)
text = models.TextField()
author = models.CharField(max_length=20)
photo = models.ImageField(upload_to='article_photos')