forked from CGM_Public/pretix_original
11 lines
287 B
Python
11 lines
287 B
Python
from django.db import models
|
|
|
|
|
|
class Thumbnail(models.Model):
|
|
source = models.CharField(max_length=255)
|
|
size = models.CharField(max_length=255)
|
|
thumb = models.FileField(upload_to='pub/thumbs/', max_length=255)
|
|
|
|
class Meta:
|
|
unique_together = (('source', 'size'),)
|