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
명령어를 통해 마이그레이션을 하지 않고 테이블만 생성하여 해결할 수 있다.
'Web > Django' 카테고리의 다른 글
Django: 'Data' object has no attribute 'save' (0) | 2020.11.14 |
---|---|
ValueError: Field 'id' expected a number but got '' (0) | 2020.11.14 |
ModuleNotFoundError: No module named 'django.db.migrations.migration' (0) | 2020.10.19 |
파이콘 한국 2020 / Django ORM 최적화 세션 요약 (1) | 2020.09.26 |
Docker를 이용하여 Django와 Nginx 쉽게 연동하기 (0) | 2020.06.07 |