from django.db import models # Create your models here. class Picture(models.Model): name = models.CharField(max_length=100) description = models.TextField() author = models.CharField(max_length=100) author_url=models.URLField() original_url = models.URLField() def __str__(self): return self.name