Restoroo/core/models/media.py

8 lines
190 B
Python
Raw Normal View History

2022-08-04 15:58:57 +00:00
from django.db import models
from ..helpers.media import uuid_path
class Image(models.Model):
name = models.CharField(max_length=256)
file = models.ImageField(upload_to=uuid_path)