Re: It is impossible to add a non-nullable field 'details1' to feature without specifying a default. This is because the database needs something to populate existing rows.

2023-03-27 Thread Erik Manuel Herazo Jimenez
hello, you must apply the default=None, or default="" feature, so that
those fields can be filled.
ex:
details1 = models.CharField(max_length=500, default="")

El sáb, 25 mar 2023 a la(s) 07:59, Ebenezer Otchere (swazyman1...@gmail.com)
escribió:

> Am new in django and have been getting errors in migrations, i need help
> when i try to do migrations it keeps telling me this
> it is impossible to add a non-nullable field 'details' to feature without
> specifying a default. This is because the database needs something to
> populate existing rows.
> Please select a fix:
>  1) Provide a one-off default now (will be set on all existing rows with a
> null value for this column)
>  2) Quit and manually define a default value in models.py.
> Thank you  in advance
> from django.db import models
>
> # Create your models here.
>
>
> class feature(models.Model) :
>
> name = models.CharField(max_length=100)
> extra = models.CharField(max_length=100)
> details1 = models.CharField(max_length=500)
>
> class art(models.Model):
>
> name = models.CharField(max_length=100)
> details = models.CharField(max_length=500)
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/06f462e2-3e1d-4a1a-8a97-b183586e5663n%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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAHsGuWknud1o52RwcDhhruGQwCtw8A122AUCf7i4nGk8BOhzuA%40mail.gmail.com.


Re: It is impossible to add a non-nullable field 'details1' to feature without specifying a default. This is because the database needs something to populate existing rows.

2023-03-26 Thread Sandip Bhattacharya
So what would you want for existing entries in the table which were added 
before you changed the model?

If you are ok with them being empty, you should use:
details = models.CharField(max_length=500, default=“”)

And run migrate again.

If you are ok instead of this column being null, then:
details = models.CharField(max_length=500, null=True, blank=True)

I don’t have a huge experience with migrations, so others can correct me if I 
am wrong, but intuitively I feel that defaults should be captured in code than 
doing one-off fixes manually while running migrations at the command line.

Thanks,
  Sandip


> On Mar 25, 2023, at 12:08 AM, Ebenezer Otchere  wrote:
> 
> Am new in django and have been getting errors in migrations, i need help
> when i try to do migrations it keeps telling me this
> it is impossible to add a non-nullable field 'details' to feature without 
> specifying a default. This is because the database needs something to 
> populate existing rows.
> Please select a fix:
>  1) Provide a one-off default now (will be set on all existing rows with a 
> null value for this column)
>  2) Quit and manually define a default value in models.py.
> Thank you  in advance
> from django.db import models
> 
> # Create your models here.
> 
> 
> class feature(models.Model) :
> 
> name = models.CharField(max_length=100)
> extra = models.CharField(max_length=100)
> details1 = models.CharField(max_length=500)
> 
> class art(models.Model):
> 
> name = models.CharField(max_length=100)
> details = models.CharField(max_length=500)
> 
> -- 
> 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 view this discussion on the web visit 
> https://groups.google.com/d/msgid/django-users/06f462e2-3e1d-4a1a-8a97-b183586e5663n%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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/F716AB80-31C0-448A-9F09-3F1DEFE128E5%40showmethesource.org.


Re: It is impossible to add a non-nullable field 'details1' to feature without specifying a default. This is because the database needs something to populate existing rows.

2023-03-25 Thread swazyman1994
Thank you all, I was able to find a way around itIs the details1 I set null = True and it worked for meSent from my iPhoneOn 25 Mar 2023, at 7:52 PM, Henock Lungele  wrote:That means you have done some changes in your model python file. So you have to drop your data base, delete the migration files, recreate the database with the same name as in your configuration python file and do migrations again. This will work or you can add default parameter with a value after max_length parameter for example default="" this will work too but if you take a look to your sql codes, you have define a default behavior if the user type nothing in the input field.I'm sorry, i speak a little bit english i'm from a french country.Yours sincerely Le sam. 25 mars 2023 à 19:57, Patricia Medina  a écrit :Thats because you have values in the database...If you don't need the data... eliminate the 001, 002, etc files of the migration folder...(this folder is in each application folder) and applicate the migrations again.On Sat, Mar 25, 2023, 09:00 Ebenezer Otchere  wrote:Am new in django and have been getting errors in migrations, i need helpwhen i try to do migrations it keeps telling me thisit is impossible to add a non-nullable field 'details' to feature without specifying a default. This is because the database needs something to populate existing rows.Please select a fix: 1) Provide a one-off default now (will be set on all existing rows with a null value for this column) 2) Quit and manually define a default value in models.py.Thank you  in advancefrom django.db import models# Create your models here.class feature(models.Model) :        name = models.CharField(max_length=100)    extra = models.CharField(max_length=100)    details1 = models.CharField(max_length=500)    class art(models.Model):        name = models.CharField(max_length=100)    details = models.CharField(max_length=500)



-- 
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 view this discussion on the web visit https://groups.google.com/d/msgid/django-users/06f462e2-3e1d-4a1a-8a97-b183586e5663n%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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CA%2BMr2uxho70iCFjaPryhNx3AY0fXV4aKD5sKR%3DxGgNqo38rF7g%40mail.gmail.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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAPy9iJL6JMat%3D7OGUmyuYe-PLC4GPcbdEuF7eSSo3tvd7BObhQ%40mail.gmail.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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/90B4C7CE-998C-4101-8456-D10DBB26ABD1%40gmail.com.


Re: It is impossible to add a non-nullable field 'details1' to feature without specifying a default. This is because the database needs something to populate existing rows.

2023-03-25 Thread Henock Lungele
That means you have done some changes in your model python file. So you
have to drop your data base, delete the migration files, recreate the
database with the same name as in your configuration python file and do
migrations again. This will work or you can add default parameter with a
value after max_length parameter for example default="" this will work too
but if you take a look to your sql codes, you have define a default
behavior if the user type nothing in the input field.
I'm sorry, i speak a little bit english i'm from a french country.
Yours sincerely

Le sam. 25 mars 2023 à 19:57, Patricia Medina <
patriciamedinamene...@gmail.com> a écrit :

> Thats because you have values in the database...
> If you don't need the data... eliminate the 001, 002, etc files of the
> migration folder...(this folder is in each application folder) and
> applicate the migrations again.
>
> On Sat, Mar 25, 2023, 09:00 Ebenezer Otchere 
> wrote:
>
>> Am new in django and have been getting errors in migrations, i need help
>> when i try to do migrations it keeps telling me this
>> it is impossible to add a non-nullable field 'details' to feature without
>> specifying a default. This is because the database needs something to
>> populate existing rows.
>> Please select a fix:
>>  1) Provide a one-off default now (will be set on all existing rows with
>> a null value for this column)
>>  2) Quit and manually define a default value in models.py.
>> Thank you  in advance
>> from django.db import models
>>
>> # Create your models here.
>>
>>
>> class feature(models.Model) :
>>
>> name = models.CharField(max_length=100)
>> extra = models.CharField(max_length=100)
>> details1 = models.CharField(max_length=500)
>>
>> class art(models.Model):
>>
>> name = models.CharField(max_length=100)
>> details = models.CharField(max_length=500)
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/06f462e2-3e1d-4a1a-8a97-b183586e5663n%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-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BMr2uxho70iCFjaPryhNx3AY0fXV4aKD5sKR%3DxGgNqo38rF7g%40mail.gmail.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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAPy9iJL6JMat%3D7OGUmyuYe-PLC4GPcbdEuF7eSSo3tvd7BObhQ%40mail.gmail.com.


Re: It is impossible to add a non-nullable field 'details1' to feature without specifying a default. This is because the database needs something to populate existing rows.

2023-03-25 Thread Muhammed Lawal
Enter 1 then ' ' rather. Sorry 😓

On Sat, 25 Mar 2023, 5:45 p.m. Muhammed Lawal, 
wrote:

> You are seen that error probably because you modified your models after
> adding some items to database already. When prompted with the error, enter
> 2, then ' ' an empty string.
>
> On Sat, 25 Mar 2023, 1:59 p.m. Ebenezer Otchere, 
> wrote:
>
>> Am new in django and have been getting errors in migrations, i need help
>> when i try to do migrations it keeps telling me this
>> it is impossible to add a non-nullable field 'details' to feature without
>> specifying a default. This is because the database needs something to
>> populate existing rows.
>> Please select a fix:
>>  1) Provide a one-off default now (will be set on all existing rows with
>> a null value for this column)
>>  2) Quit and manually define a default value in models.py.
>> Thank you  in advance
>> from django.db import models
>>
>> # Create your models here.
>>
>>
>> class feature(models.Model) :
>>
>> name = models.CharField(max_length=100)
>> extra = models.CharField(max_length=100)
>> details1 = models.CharField(max_length=500)
>>
>> class art(models.Model):
>>
>> name = models.CharField(max_length=100)
>> details = models.CharField(max_length=500)
>>
>> --
>> 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 view this discussion on the web visit
>> https://groups.google.com/d/msgid/django-users/06f462e2-3e1d-4a1a-8a97-b183586e5663n%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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOzVPC_NXm9aG4vyod1M8-xXzA7G1VhU%2BVu7VprLYQo9K6R42Q%40mail.gmail.com.


Re: It is impossible to add a non-nullable field 'details1' to feature without specifying a default. This is because the database needs something to populate existing rows.

2023-03-25 Thread Patricia Medina
Thats because you have values in the database...
If you don't need the data... eliminate the 001, 002, etc files of the
migration folder...(this folder is in each application folder) and
applicate the migrations again.

On Sat, Mar 25, 2023, 09:00 Ebenezer Otchere  wrote:

> Am new in django and have been getting errors in migrations, i need help
> when i try to do migrations it keeps telling me this
> it is impossible to add a non-nullable field 'details' to feature without
> specifying a default. This is because the database needs something to
> populate existing rows.
> Please select a fix:
>  1) Provide a one-off default now (will be set on all existing rows with a
> null value for this column)
>  2) Quit and manually define a default value in models.py.
> Thank you  in advance
> from django.db import models
>
> # Create your models here.
>
>
> class feature(models.Model) :
>
> name = models.CharField(max_length=100)
> extra = models.CharField(max_length=100)
> details1 = models.CharField(max_length=500)
>
> class art(models.Model):
>
> name = models.CharField(max_length=100)
> details = models.CharField(max_length=500)
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/06f462e2-3e1d-4a1a-8a97-b183586e5663n%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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CA%2BMr2uxho70iCFjaPryhNx3AY0fXV4aKD5sKR%3DxGgNqo38rF7g%40mail.gmail.com.


Re: It is impossible to add a non-nullable field 'details1' to feature without specifying a default. This is because the database needs something to populate existing rows.

2023-03-25 Thread Muhammed Lawal
You are seen that error probably because you modified your models after
adding some items to database already. When prompted with the error, enter
2, then ' ' an empty string.

On Sat, 25 Mar 2023, 1:59 p.m. Ebenezer Otchere, 
wrote:

> Am new in django and have been getting errors in migrations, i need help
> when i try to do migrations it keeps telling me this
> it is impossible to add a non-nullable field 'details' to feature without
> specifying a default. This is because the database needs something to
> populate existing rows.
> Please select a fix:
>  1) Provide a one-off default now (will be set on all existing rows with a
> null value for this column)
>  2) Quit and manually define a default value in models.py.
> Thank you  in advance
> from django.db import models
>
> # Create your models here.
>
>
> class feature(models.Model) :
>
> name = models.CharField(max_length=100)
> extra = models.CharField(max_length=100)
> details1 = models.CharField(max_length=500)
>
> class art(models.Model):
>
> name = models.CharField(max_length=100)
> details = models.CharField(max_length=500)
>
> --
> 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 view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/06f462e2-3e1d-4a1a-8a97-b183586e5663n%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-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAOzVPC858UA6g4J%3D9nL_Ee8jVHqS1t%2BayGryvjTjRuMe91opMw%40mail.gmail.com.


It is impossible to add a non-nullable field 'details1' to feature without specifying a default. This is because the database needs something to populate existing rows.

2023-03-25 Thread Ebenezer Otchere
Am new in django and have been getting errors in migrations, i need help
when i try to do migrations it keeps telling me this
it is impossible to add a non-nullable field 'details' to feature without 
specifying a default. This is because the database needs something to 
populate existing rows.
Please select a fix:
 1) Provide a one-off default now (will be set on all existing rows with a 
null value for this column)
 2) Quit and manually define a default value in models.py.
Thank you  in advance
from django.db import models

# Create your models here.


class feature(models.Model) :

name = models.CharField(max_length=100)
extra = models.CharField(max_length=100)
details1 = models.CharField(max_length=500)

class art(models.Model):

name = models.CharField(max_length=100)
details = models.CharField(max_length=500)

-- 
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/06f462e2-3e1d-4a1a-8a97-b183586e5663n%40googlegroups.com.