S
Size: a a a
S
mc
IK
АА
I
I
D
I
python manage.py startapp profile
CommandError: 'profile' conflicts with the name of an existing Python module and cannot be used as an app name. Please try another name.
i
NG
{
name: "Store",
goods: [
{
name: "Potato",
price: 200
},
{
name: "Banana",
price: 600
}
]
}
class Store(models.Model):
name = models.CharField()
goods = models.ForeignKey('Goods', on_delete=models.SET_NULL, null=True, blank=True)
class Goods(models.Model):
name = models.CharField()
price = models.SmallIntegerField()
i
python manage.py startapp profile
CommandError: 'profile' conflicts with the name of an existing Python module and cannot be used as an app name. Please try another name.
I
i
I
NG
l
ОС
e
manage.py startapp import
отрабатываетl
D