Created
June 9, 2021 12:14
-
-
Save velotiotech/58266fc8c69184910b6ab0d41d872211 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.db import models | |
class Retail(models.Model): | |
name = models.CharField(max_length=128) | |
class Category(models.Model): | |
name = models.CharField(max_length=128, unique=True) | |
class Product(models.Model): | |
sku = models.CharField(max_length=50, unique=True) # unique model number | |
name = models.CharField(max_length=50) | |
description = models.TextField(default="", blank=True) | |
mrp = models.DecimalField(max_digits=10, decimal_places=2) | |
weight = models.DecimalField(max_digits=10, decimal_places=2) | |
retails = models.ManyToManyField( | |
Retail, | |
related_name="products", | |
verbose_name="Retail stores that carry the product", | |
) | |
category = models.ForeignKey( | |
Category, | |
related_name="products", | |
on_delete=models.CASCADE, | |
blank=True, | |
null=True, | |
) | |
date_created = models.DateTimeField(auto_now_add=True) | |
date_modified = models.DateTimeField(auto_now=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment