manage.py@djangoTour > makemigrations
C:\Users\adel\Desktop\djangoTour\.venv\Scripts\python.exe "C:\Program Files\JetBrains\PyCharm 2024.1.4\plugins\python\helpers\pycharm\django_manage.py" makemigrations C:/Users/adel/Desktop/djangoTour
Tracking file by folder pattern: migrations
No changes detected
Process finished with exit code 0
this is makemigrations
Tracking file by folder pattern: migrations
No changes detected
this is migrate
C:\Users\adel\Desktop\djangoTour\.venv\Scripts\python.exe "C:\Program Files\JetBrains\PyCharm 2024.1.4\plugins\python\helpers\pycharm\django_manage.py" migrate C:/Users/adel/Desktop/djangoTour
Tracking file by folder pattern: migrations
Operations to perform:
Apply all migrations: admin, auth, blog, contenttypes, sessions
Running migrations:
No migrations to apply.
Process finished with exit code 0
manage.py@djangoTour > runserver
C:\Users\adel\Desktop\djangoTour\.venv\Scripts\python.exe "C:\Program Files\JetBrains\PyCharm 2024.1.4\plugins\python\helpers\pycharm\django_manage.py" runserver C:/Users/adel/Desktop/djangoTour
Tracking file by folder pattern: migrations
Performing system checks...
Watching for file changes with StatReloader
System check identified no issues (0 silenced).
September 12, 2024 - 22:29:32
Django version 5.1.1, using settings 'djangoTour.settings'
Starting development server at http://127.0.0.1:8000/
Quit the server with CTRL-BREAK.
Please post the output of showmigrations (not makemigrations or migrate) and the content of the file in your apps migrations directory that has the migration information for this model for adding the files.
This is just the last line, we would need to see the complete traceback.
Also, please post the INSTALLED_APPS section of your settings.py file.