mirror of
https://github.com/more-tech4-magnum-opus/backend.git
synced 2024-11-10 22:46:34 +03:00
21 lines
663 B
Python
21 lines
663 B
Python
from django.core.validators import MinValueValidator
|
|
from django.db import models
|
|
|
|
from users.models import User
|
|
|
|
|
|
class Product(models.Model):
|
|
name = models.CharField(max_length=200)
|
|
slug = models.SlugField(max_length=20, null=True)
|
|
description = models.TextField(blank=True)
|
|
|
|
image = models.ImageField(upload_to="uploads/")
|
|
image_cropped = models.ImageField(upload_to="cropped/", blank=True)
|
|
token = models.IntegerField(default=0)
|
|
|
|
price = models.IntegerField(validators=[MinValueValidator(0)])
|
|
creator = models.ForeignKey(User, related_name="products", on_delete=models.CASCADE)
|
|
|
|
def __str__(self):
|
|
return self.name
|