11 lines
386 B
Python
11 lines
386 B
Python
from django.db import models
|
|
|
|
class Product(models.Model):
|
|
name = models.CharField(max_length=200)
|
|
description = models.TextField()
|
|
price = models.DecimalField(max_digits=10, decimal_places=2)
|
|
image = models.ImageField(upload_to='products/', null=True, blank=True)
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
|
|
def __str__(self):
|
|
return self.name |