2013-07-25 1 views
0

내가 함께 할 마자 내가 그것을 내게이 오류 준다 마이그레이션하는 것도이없는 모델로 마이그레이션하는 것을 시도하고있다 :NoMigrations 예외가 더 마이그레이션이 없습니다

NoMigrations: Application '<module 'django.contrib.comments' from C:\Python27\lib\site-packages\django\contrib\comments\__init__.pyc' has no migrations.

을 마이그레이션 폴더 삭제 및 데이터베이스 삭제를 시도했지만 계속 발생합니다.

답변

1

모듈의 마지막 부분에 'comments'라는 이름의 다른 앱이 있거나 app_name이 모듈과 동일한 데이터베이스 테이블 south_migrationhistory에 항목이있을 수 있습니다.

여기 Google Groups

1

당신이 장고 dumpdata 사용할 수 있는지 내가 제안을 찾을 수 대답, 당신은 당신의 모델의 JSON 파일의 사본을 얻을 것이다.

$ python manage.py dumpdata <app-name> --indent=2 

or create a folder to put the result in 

$ python manage.py dumpdata <app-name> --indent=2 > [project]/[app]/[folder]/file-name.json 

나중에 데이터 업로드를 사용하여 원본 모델을 다시 작성할 수 있습니다.

+0

내가 찾고 있었지만 도움이되지는 않았습니다. – Supremekhaoz