Oh, right
[edumed.git] / publishers / models.py
1 from django.db import models
2
3 class Publisher(models.Model):
4     name = models.CharField(max_length=255)
5     logo = models.ImageField(upload_to='publishers/logo')
6
7     def __unicode__(self):
8         return self.name