Spaces:
Runtime error
Runtime error
| from django.db import models | |
| # Create your models here. | |
| class Product(models.Model): | |
| title = models.CharField(max_length=255) | |
| ingredients = models.TextField() | |
| product_id = models.CharField(max_length=255) | |
| url = models.CharField(max_length=255) | |
| store_name = models.CharField(max_length=255) | |
| date_created = models.DateTimeField(auto_now_add=True) | |
| def __str__(self): | |
| return self.title |