Here when i update my model i am getting this error why ?
This is my models.py
class ProductImage(models.Model):
user = models.ForeignKey(Seller,on_delete=models.CASCADE, related_name='Product_Image_User')
Video = models.FileField(upload_to="Product/video", blank=True, null=True)
images = models.JSONField(default=list) # Stores multiple image URLs
Date = models.DateTimeField(default=timezone.now)
Product = models.ForeignKey(Product, on_delete=models.CASCADE, related_name="product_images", blank=False, null=False)
secret_key = models.TextField(blank=True,null=True)
def __str__(self):
return f"{self.user}-{self.Product}-{self.id}"
Here when i update my model i am getting this error why ?
This is my models.py
class ProductImage(models.Model):
user = models.ForeignKey(Seller,on_delete=models.CASCADE, related_name='Product_Image_User')
Video = models.FileField(upload_to="Product/video", blank=True, null=True)
images = models.JSONField(default=list) # Stores multiple image URLs
Date = models.DateTimeField(default=timezone.now)
Product = models.ForeignKey(Product, on_delete=models.CASCADE, related_name="product_images", blank=False, null=False)
secret_key = models.TextField(blank=True,null=True)
def __str__(self):
return f"{self.user}-{self.Product}-{self.id}"
Share
Improve this question
asked yesterday
K KumarK Kumar
713 silver badges10 bronze badges
1
- So on which item does that occur. This is tagged DRF why? – willeM_ Van Onsem Commented yesterday
1 Answer
Reset to default 0First and Foremost please correctly Indent the code write now django-ORM is not getting which field are in your class ProductImage and write variable in shorter format like ( Video-video).
Even after fixing this if the code do not run there can be error in your views or url or importing of model
Like this:
class ProductImage(models.Model):
user = models.ForeignKey(Seller,on_delete=models.CASCADE, related_name='Product_Image_User')
video = models.FileField(upload_to="Product/video", blank=True, null=True)
images = models.JSONField(default=list) # Stores multiple image URLs
date = models.DateTimeField(default=timezone.now)
product = models.ForeignKey(Product, on_delete=models.CASCADE, related_name="product_images", blank=False, null=False)
secret_key = models.TextField(blank=True,null=True)
def __str__(self):
return f"{self.user}-{self.Product}-{self.id}"