23 lines
898 B
Python
23 lines
898 B
Python
from django.db import models
|
|
from django.contrib.auth.models import User
|
|
|
|
class Seller(models.Model):
|
|
user = models.OneToOneField(User, on_delete=models.CASCADE)
|
|
store_name = models.CharField(max_length=200)
|
|
description = models.TextField(blank=True)
|
|
is_verified = models.BooleanField(default=False)
|
|
created_at = models.DateTimeField(auto_now_add=True)
|
|
|
|
def __str__(self):
|
|
return self.store_name
|
|
|
|
class Product(models.Model):
|
|
seller = models.ForeignKey(Seller, on_delete=models.CASCADE, related_name='products', null=True, blank=True)
|
|
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 |