What are models in Django?
Let’s create a Product table with name, price, and description attributes.
#models.py
from django.db import models#product modelclass Product(models.Model): name= models.CharField(max_length=30) price= models.models.IntegerField() description = models.TextField() def __str__(self): return f'{self.name}'احفظ للمراجعة
احفظ للمراجعة
احفظ هذا العنصر في الإشارات المرجعية، او حدده كصعب، او ضعه في مجموعة مراجعة.
سجل الدخول لحفظ الإشارات المرجعية والاسئلة الصعبة ومجموعات المراجعة.