我正在尝试在 python 3.7 中的 django 2.2.4 中进行迁移。首先我尝试做makemigations:
python3 manage.py makemigrations
我得到:
Migrations for 'main':
main/migrations/0001_initial.py
- Create model TutorialCategory
- Create model TutorialSeries
- Create model Tutorial
但后来我尝试第二步:
python3 manage.py migrate
我得到:
Operations to perform:
Apply all migrations: admin, auth, contenttypes, main, sessions
Running migrations:
No migrations to apply.
即使应该发生迁移。
我尝试删除我的迁移文件夹,然后重新制作它(里面有空__init__.py
文件),但它仍然不起作用。
(注意:我一直在关注教程:Linking models with Foreign Keys - Django Web Development with Python p.9 by sentdex)