mirror of
https://github.com/ConjureETS/site-2015.git
synced 2026-03-24 04:21:23 +00:00
9 lines
237 B
Python
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')
|