djangoでwebアプリを開発しています。
models.pyの内容を変更し、makemigrations app名 すると No change detected と表示されてしまいマイグレーションできません。なぜでしょうか?
行ったこと
makemigrationsの後にはapp名を入れる
setting.pyのinstall_app内を確認する
showmigrationsでappが入っているか確認する。
modelsフォルダを作成しフォルダ内でmodelsファイルとinitファイルを作成する
他のappのmodels.pyにコピペをし、makemigrationsする
python manage.py migrateをすると
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.1/ref/databases/#mysql-sql-mode
と表示されます
これは別問題かもしれないですが一応記載しました
'OPTIONS': { 'init_command': "SET sql_mode='STRICT_TRANS_TABLES'", "init_command": "SET foreign_key_checks = 0;", },
上記はsetting.pyで記載済み
全くわからず困っています。
どうすれば良いのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。