新建模型表的时候,提示No migrations to apply的解决方法

在原来已有表的情况下,添加了orders这个应用,运行python manage.py makemigrations与python manage.py migrate。首先是出现:django.db.utils.InternalError: (1050, "Table 'tb_brand' already exists") 这影响了其他表,然后运行:python ../../manage.py migrate goods --fake 命令 出现了:No migrations to apply
解决方法:
首先,删除orders/migrations文件夹中的所有相关migrate文件(我当时只留下了__init__.py文件)。然后,删除mysql中的django_migrations表中的与orders(delete from django_migrations where id=22;)相关的记录(特别是初始化那条。不删那条还是没用。)
最后,重新运行python manage.py makemigrations与python manage.py migrate。问题应该可以解决了:)

你可能感兴趣的:(新建模型表的时候,提示No migrations to apply的解决方法)