# 刪除遷移文件,保留__init__.py find . -path "*/migrations/*.py" -not -name "__init__.py" -delete find . -path "*/migrations/*.pyc" -delete # 刪除數(shù)據(jù)庫(kù)中的遷移記錄 python manage.py dbshell "DELETE FROM django_migrations WHERE app NOT IN ('admin', 'auth', 'contenttypes', 'sessions', 'messages');" # 重新生成遷移文件 python manage.py makemigrations # 應(yīng)用遷移 python manage.py migrate |
|