from django.db import models
class Product(models.Model):
title = models.CharField('Название товара', max_length=100)
price = models.IntegerField('Цена')
brand = models.CharField('Бренд', max_length=50)
description = models.TextField('Описание товара')
image = models.ImageField('Фото товара', upload_to='products/')
def __str__(self):
return self.title