Re: django.db.utils.OperationalError: no such table abc

2021-10-24 Thread David Nugent
On Fri, Oct 22, 2021 at 7:09 AM Ammon Quackenbush wrote: > I think you are right. I did delete the initial migration. How do I > restore the initial migration? > > Can't you restore it from your git repo? If you're not running any sort of version control you've just hit the reason why doing so

Re: django.db.utils.OperationalError: no such table abc

2021-10-22 Thread Lakshyaraj Dash X-D 25
Bro, you will need the initial migration in order to make another migration. On Fri, Oct 22, 2021, 18:37 MR INDIA wrote: > > After deleting the migration to make it again just Try Running the > makemigrations command. > On Friday, 22 October 2021 at 06:58:12 UTC+5:30 dashlaksh...@gmail.com >

Re: django.db.utils.OperationalError: no such table abc

2021-10-22 Thread MR INDIA
After deleting the migration to make it again just Try Running the makemigrations command. On Friday, 22 October 2021 at 06:58:12 UTC+5:30 dashlaksh...@gmail.com wrote: > Just search for it in the recycle bin , if you have not permanently > deleted the migration, else give me the code in my

Re: django.db.utils.OperationalError: no such table abc

2021-10-21 Thread Lakshyaraj Dash X-D 25
Just search for it in the recycle bin , if you have not permanently deleted the migration, else give me the code in my personal gmail dashlakshyaraj2...@gmail.com and I will correct it. On Fri, Oct 22, 2021, 01:38 Ammon Quackenbush wrote: > I think you are right. I did delete the initial

Re: django.db.utils.OperationalError: no such table abc

2021-10-21 Thread Ammon Quackenbush
I think you are right. I did delete the initial migration. How do I restore the initial migration? On Wednesday, October 20, 2021 at 6:18:31 PM UTC-6 dashlaksh...@gmail.com wrote: > It will happen if you have deleted the initial migration or check your > settings properly. > > On Thu, Oct 21,

Re: django.db.utils.OperationalError: no such table abc

2021-10-20 Thread Lakshyaraj Dash X-D 25
It will happen if you have deleted the initial migration or check your settings properly. On Thu, Oct 21, 2021, 04:21 Ammon Quackenbush wrote: > I am working on a django project and I am getting this error when I > attempt to run the "python manage.py makemigrations" command: > >

django.db.utils.OperationalError: no such table abc

2021-10-20 Thread Ammon Quackenbush
I am working on a django project and I am getting this error when I attempt to run the "python manage.py makemigrations" command: django.db.utils.OperationalError: no such table: myApp_tableStatus The table tableStatus exists in my models.py. Any ideas what I can do to fix this problem? I