Makemigrations and Migrate failure

Database: MySQL

Settings.py Database connection details:

‘default’: {
‘ENGINE’: ‘django.db.backends.mysql’,
‘NAME’: ‘xxxxxxxx’,
‘USER’: ‘xxxxx’,
‘PASSWORD’: ‘xxxxxxx’,
‘HOST’: ‘192.1.5.122’,
‘PORT’: ‘3306’,
‘OPTIONS’: {
‘init_command’: “SET sql_mode=‘STRICT_TRANS_TABLES’”,
‘sql_mode’: ‘STRICT_TRANS_TABLES’,
‘charset’: ‘utf8mb4’,
‘init_command’: “SET foreign_key_checks = 0;”,
}
},

Errors:

Operations to perform:
Apply all migrations: letterapp
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.

And what happens when you run python manage.py makemigrations letterapp (or the name of another app) ? That should be all you need.

I think you meant python manage.py makemigrations letterapp.

Indeed I did, edited.