Replacement for migrate --skip-checks
I am having some issues with the latest version of Django. It seems they have removed the --skip-checks option from the manage.py migrate command. The problem I am getting is that the app (that was working on 4.2) is trying to check the database tables (site_settings) before they exist. What is the right way to initially migrate data in Django 5.2.4 ?
The error that I get now when running any manage.py command is:
django.db.utils.ProgrammingError: relation "site_settings_setting" does not exist