Django: I get a [relation “auth_group” does not exist] error after syncdb

前端 未结 7 524
粉色の甜心
粉色の甜心 2021-01-04 22:33

I started a new Django 1.8 project and realized that I missed something (i had done the initial migrations). I dropped the database (postgreSQL) and deleted migration<

相关标签:
7条回答
  • 2021-01-04 23:00

    I had the similar problem with Django2.2 migrations. I will post what helped in case someone is looking to fix this.

    I commented out all urls to apps(like my_app.urls, your_app.urls) in main project urls.py and then ran makemigrations, it worked. I think this error is due to some forms/views referring to model/fields that are not yet created. It seems django traverses urls.py to before making migrations

    0 讨论(0)
  • 2021-01-04 23:10

    It can be either:

    • one of the pip dependencies from requirements.txt was using South

      had this error when running tests which do migration in Django 1.8. Found the lib with issue by running tests in verbose mode. Consider upgrading the library to newer version.

    manage.py test -v 3

    • one of the /migrations folder might still has old South migrations files. It can be because others are still adding migrations when you are trying to upgrade Django. Use the following to make sure that the expected migrations files are present in each app.

    manage.py showmigrations

    0 讨论(0)
  • 2021-01-04 23:12

    One of your paths ("pointing urls.py on your core folder along with the settings.py") makes that problem occur importing django.contrib.auth and directly using methods and properties of "auth" after calling those views

    • Remove all migrations except "init.py" of each apps
    • Go to projects urls.py and comment out all the paths
    • run "heroku run python manage.py makemigrations"
    • run "heroku run python manage.py migrate"
    0 讨论(0)
  • 2021-01-04 23:13

    Probably you should try to create migrations modules (folders named migrations with empty file named __init__.py inside of each directory) for your apps. And then run manage.py makemigrations again.

    0 讨论(0)
  • 2021-01-04 23:19

    Doing ./manage.py migrate auth first didn't work for me, and every ./manage.py command was throwing this error. My problem was that I was doing stuff with the Group manager in module scope.

    If you have code like this in module scope:

    customers_group = Group.objects.get(name='customers')
    

    Move it inside a function that is called at runtime instead.

    def xyz():
        ...
        customers_group = Group.objects.get(name='customers')
    
    0 讨论(0)
  • 2021-01-04 23:23

    The problem is on no changes detected. Please execute these commands with your app name. I guess you didn't add it (just like the mistake I did):

    1. python manage.py makemigrations myappname
    2. python manage.py migrate myappname
    0 讨论(0)
提交回复
热议问题