I see the problem is with 

*class Choice(models.Model)     question = models.ForeignKey(Question) *
Update it as this

*class Choice(models.Model)     question = models.ForeignKey(Question, 
on_delete=models.CASCADE) *

On Monday, 14 January 2019 15:38:09 UTC+5:45, tarikk...@gmail.com wrote:
>
> This my screenshut of models.py
>
> 14 Ocak 2019 Pazartesi 10:43:32 UTC+1 tarihinde tarikk...@gmail.com yazdı:
>>
>> Hi everyone!
>> Could you please help me why I cant see this part below when I run this 
>> command, python manage.py makemigrations polls,?
>>
>> <<<<Migrations for 'polls':
>>
>>   0001_initial.py:
>>     - Create model Question
>>     - Create model Choice
>>     - Add field question to choice>>>>>>>>>
>>
>>
>> I saw just that screen shut.
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/2dc41ed0-765c-4b87-bb28-dc604a50f966%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to