1. 程式人生 > 實用技巧 >python django model建立表報錯

python django model建立表報錯

λ python manage.py migrate TestModel
System check identified some issues:

WARNINGS:
?: (mysql.W002) MySQL Strict Mode is not set for database connection 'default'
HINT: MySQL's Strict Mode fixes many data integrity problems in MySQL, such as data truncation upon insertion, by escalating warnings into errors. It is strongly recommended you activate it. See: https://docs.djangoproject.com/en/3.0/ref/databases/#mysql-sql-mode

Operations to perform:
Apply all migrations: (none)
Running migrations:
No migrations to apply.
Your models have changes that are not yet reflected in a migration, and so won't be applied.
Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.

執行

python manage.py migrate

報錯誤

Your models have changes that are not yet reflected in a migration, and so won't be applied. Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.

這個錯誤是因為你的資料庫檔案更改需要更新一下

先執行下

python manage.pymakemigrations

在執行

python manage.py migrate

就可以成功執行了

$ python manage.py migrate TestModel   # 建立表結構