migrate를 하다보면 꼬일때가 참 많다 .. .
그럴경우 아래와 같이 migrate를 정리해주는 명령어가 필요하다 .
"/migrations/.py" -not -name "init.py" -delete
find . -path "/migrations/.pyc" -delete
위와 같이 입력한후 , 데이터베이스 삭제후 makemigrate , migrate 를 해주면
오류가 사라진다 .
또한 다음과 같은 오류에서
django.db.utils.operationalerror (1054 unknown ...
데이터베이스를 지운후 위와 같이 하였더니 오류가 해결되었지만 ...
데이터는 복구할수 없었다 ..
참고-
데이터베이스명이 winted 일때 데이터베이스 삭제후 생성은 다음과 같이한다.
mysql> drop database winted;
mysql> create database winted character set utf8mb4 collate utf8mb4_general_ci;