from django.db import models # Create your models here. class Quiz(models.Model): title = models.CharField(max_length=200) body = models.TextField() answer = models.IntegerField() 위 모델 migration 하던중 오타가 있었나보나 다시 수정하고 migration 하니 It is impossible to add a non-nullable field 애러 migrations 폴더에서 __init__.py 파일 제외하고 모두 삭제 하면 해결 된다고 함 good 해결 하니.. 웹페이지 안에서 ... django has no column named title 오류... 결..