form.py 에서 아래와 같이 작성하였다, class YpostForm ( forms . ModelForm ): class meta : model = Ypost fields = ( 'title' , 'text' ,) 계속 모델폼 에러뜸 정답은 class meta 에서 Meta 로 변경! 오타왕 ㅋ
django.db.utils.OperationalError: no such table 는 무엇인가? 👀 장고에서 새로운 models.py 에 클래스를 추가하고 이런 에러가 발생하는 경우, python manage.py migrate 또는 python manage.py make migrations 를 확인 !