django.db.migrations.exceptions.InconsistentMigrationHistory: Migration account.0001_initial is applied before its dependency users.0001_initial on database 'default'.

 

OperationalError: no such table: user_user

 

커스텀 유저를 처음 설정할 때 발생할 수 있는 에러로서

 

해결법은 

python manage.py migrate --run-syncdb

 

명령어를 통해 마이그레이션을 하지 않고 테이블만 생성하여 해결할 수 있다.

 

+ Recent posts