0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

python3 manage.py makemigrations にて No changes detected と表示される場合

Last updated at Posted at 2020-10-08

マイグレーションを行う際以下のコマンドを使用するが

python3 manage.py makemigrations

このコマンドを使用すると失敗する

hoge@:huga/project$ python3 manage.py makemigrations
No changes detected

一番親のプロジェクトにあるsettings.pyに子のプロジェクトを追加したことを知らせていない事が原因でした。

settings.py
INSTALLED_APPS = [
  'django.contrib.admin',
  'マイグレーションフォルダがある作成したプロジェクト名を追加'
]

上記追加することで無事にinitial.pyが作成されました。
初歩的な事で、調べても中々出てきませんでした。
エラー内容も表示されないのでわかりにくかったですね。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?