오류모음집/django (11) 썸네일형 리스트형 ValueError: The field admin.LogEntry.user was declared with a lazy reference to '앱이름.테이블이름' app '앱이름' doesn't provide model '테이블 이름 ' (abstractuser 사용했을시 에러 ) migrations file 삭제 SQLite3 삭제 그리고 다시 migrate 진행 다른 파일에서 명시적으로 model 를 불러올때 에러 Model class django.contrib.contenttypes.models.ContentType doesn't declare an explicit app_label 이 에러가 아닌데 비슷함 DB값만 바꾸면 똑같은 에러임 1. 발생 경위 django model 에서 ORM 값을 명시적으로 app_label 를 설정을 안해줬음 에러속에 해답이 있음 2. 해결 방안 ORM Meta class 에 app_label 를 명시적으로 선언해줄것 Django 를 안쓰고 python file compile 했을때 대처법 1. 발생 경위 django 모듈을 사용안하고 python file 을 compile 실행 2. 해결 방안 실행할 python application 위에다 setting 값 설정 후 실행 이전 1 2 다음