반응형
migration 진행시 나타나는 오류
django.db.migrations.exceptions.InconsistentMigrationHistory: Migration admin.0001_initial is applied before its dependency accounts.0001_initial on database 'default'
여기서 읽어보면 accounts.0001_initial에 dependency 오류가 있다고 하는 것을 확인할 수 있다.
account 폴더의 migrations 폴더를 삭제하면 더이상 오류가 생기지 않는다.
외래키와 메인키 칼럼의 설정이 일치하지 않아 나타나는 오류
(errno: 150 "Foreign key constraint is incorrectly formed")')
나에게선 account_emailaddress 에서 외래키 오류가 났다고 하였다.
반응형
'Develop > 오류 노트' 카테고리의 다른 글
module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK' error (0) | 2022.12.04 |
---|
Comment