setting default=False is odd for any field other than a BooleanField. I would take that out for the OneToOneField at least and see how things go.
Antje
--
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...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/cad442bf-e697-47c6-a0b4-3ce65bcef480%40googlegroups.com.
Think you shouldn’t use false as a default for fields which are not bool
Sent from Mail for Windows 10
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/893f62fe-966e-d71b-8155-df9decf1786d%40gmail.com.
line 192, in validate_autopk_value
raise ValueError('The database backend does not accept 0 as a '
ValueError: The database backend does not accept 0 as a value for AutoField.
setting default=False is odd for any field other than a BooleanField. I would take that out for the OneToOneField at least and see how things go.
Antje
On 4/26/20 4:19 PM, Mayur Bagul wrote:
Hello guys,--
im stucked with this error mentioned in subject.below link redirect details about question.
let me know how to get rid of this problem.
Thanking You.
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...@googlegroups.com.
Also,
Please make sure that any foreign key fields are not default nulls
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/7c34122c-0260-4a5b-8586-42c0037f8192%40googlegroups.com.
Once you use the default argument for a model field, it cannot be removed even when u rerun migrations.
You need to provide a valid default input value for each specific field
how about adding null=True and blank=True to the field?
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/7c34122c-0260-4a5b-8586-42c0037f8192%40googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/5dd77724-3b33-ee13-41b0-19bbcc927fd0%40gmail.com.
On 26 Apr 2020, at 18:42, Divash Singh <singh...@gmail.com> wrote:
Also,
Please make sure that any foreign key fields are not default nulls
Sent from Mail for Windows 10
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/7c34122c-0260-4a5b-8586-42c0037f8192%40googlegroups.com.
--
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...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/5dd77724-3b33-ee13-41b0-19bbcc927fd0%40gmail.com.