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

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

Re: WHAT OTHER REAL TIME MAP CAN I USE IN MY PROJECT ASIDE GOOGLE MAP?

2023-03-25 Thread Clive Bruton
Here maps: https://www.here.com https://heremaps.github.io/ -- Clive -- 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

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,

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

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,

Re: WHAT OTHER REAL TIME MAP CAN I USE IN MY PROJECT ASIDE GOOGLE MAP?

2023-03-25 Thread Michael kosy
Thank you very much, I appreciate. On Sat, Mar 25, 2023, 2:02 PM DOI TUYEN wrote: > I think this link will help you. https://djangopackages.org/ > All packages for django are all here > > Vào Th 7, 25 thg 3, 2023 vào lúc 19:59 Michael kosy < > kosymichael...@gmail.com> đã viết: > >> I am on a

Re: WHAT OTHER REAL TIME MAP CAN I USE IN MY PROJECT ASIDE GOOGLE MAP?

2023-03-25 Thread jeremiah nthiwa
You can use mapbox On Saturday, March 25, 2023 at 4:00:13 PM UTC+3 Michael kosy wrote: > I am on a project that requires me to integrate real time maps into it. I > did that using Google API but whenever I run my server, it always throws > "Request Denied". Does anyone know any other mapping

Re: WHAT OTHER REAL TIME MAP CAN I USE IN MY PROJECT ASIDE GOOGLE MAP?

2023-03-25 Thread DOI TUYEN
I think this link will help you. https://djangopackages.org/ All packages for django are all here Vào Th 7, 25 thg 3, 2023 vào lúc 19:59 Michael kosy < kosymichael...@gmail.com> đã viết: > I am on a project that requires me to integrate real time maps into it. I > did that using Google API but

WHAT OTHER REAL TIME MAP CAN I USE IN MY PROJECT ASIDE GOOGLE MAP?

2023-03-25 Thread Michael kosy
I am on a project that requires me to integrate real time maps into it. I did that using Google API but whenever I run my server, it always throws "Request Denied". Does anyone know any other mapping service that offers free API? -- You received this message because you are subscribed to the

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.