2013-03-05 2 views
1

앱에서 두 개의 변경된 모델이 있지만 한 모델 만 마이그레이션하면서 다른 모델은 무시하고 싶습니다. thesouth : 앱에 대한 이전을 만들 때 변경된 모델을 무시하는 방법

./manage.py schemamigration app --auto 

명령?

+1

이유는 다음 취소 모델에 변경 내용을 다시 적용,'schemamigration의 --auto'를 실행하는 하나 개의 모델에 대한 변경 사항을 취소하고 실행되지'schemamigration는 다시 두 개의 마이그레이션을 얻을 --auto'? – mVChr

+0

당신은 자식을 사용하고 있습니까? mVChr의 솔루션은 자식 (또는 다른 버전 제어 시스템) – Private

답변

2

마이그레이션을 만드는 방법은 여러 가지가 있습니다. 하지만 두 가지 방법 만 정의 할 것입니다.

//migrate the changes of all models of the app 
./manage.py schemamigration app --auto 

//migrate only the changes of the given model or 1 model 
python manage.py schemamigration app_name extend_modelname --auto