master
daz 2014-01-10 22:14:58 +01:00
parent 0069206be0
commit fe81eb02f2
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,8 @@ DECIMAL_PLACES = 3
class PopeImage(models.Model):
path = models.CharField(max_length=200, primary_key=True)
id = models.AutoField(primary_key=True)
path = models.CharField(max_length=200)
width = models.IntegerField()
height = models.IntegerField()
aspect_ratio = models.FloatField()