Re: Having Trouble Creating a Test Database

2022-06-07 Thread Mark Phillips
Yes. All migrations have been done. On Tue, Jun 7, 2022, 9:01 AM Sebastian Jung wrote: > Do you have make manage.py migrate and afzer this manage.py makemigrations? > > Mark Phillips schrieb am Di., 7. Juni 2022, > 17:02: > >> I can't seem to be able to create a test database for my django

Re: Having Trouble Creating a Test Database

2022-06-07 Thread atoosa Keshavarz
Hi Why do not you use mock for data base ? If you use mock data base you do not need test data base and your data base will not be change On Tue, 7 Jun 2022, 7:32 pm Mark Phillips, wrote: > I can't seem to be able to create a test database for my django project. I > get this error: > >

Re: Having Trouble Creating a Test Database

2022-06-07 Thread Sebastian Jung
Do you have make manage.py migrate and afzer this manage.py makemigrations? Mark Phillips schrieb am Di., 7. Juni 2022, 17:02: > I can't seem to be able to create a test database for my django project. I > get this error: > > django.db.utils.ProgrammingError: (1146, "Table >

Having Trouble Creating a Test Database

2022-06-07 Thread Mark Phillips
I can't seem to be able to create a test database for my django project. I get this error: django.db.utils.ProgrammingError: (1146, "Table 'test_hopi_django.CurrentArticle' doesn't exist") I have full details at https://stackoverflow.com/questions/72521409/cant-create-django-test-database if