固定。
对于将来遇到此问题的人:
- 从数据库中删除所有links_ *表(应用程序称为“链接”)
from django.db.migrations.recorder import MigrationRecorder
MigrationRecorder.Migration.objects.filter(app=’links’).delete()
向前迁移
manage.py migrate
欢迎分享,转载请注明来源:内存溢出
固定。
对于将来遇到此问题的人:
from django.db.migrations.recorder import MigrationRecorder
MigrationRecorder.Migration.objects.filter(app=’links’).delete()
向前迁移
manage.py migrate
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)