I am new to Django. I want to create tables by using models. I have tried to follow this link: https://docs.djangoproject.com/en/3.0/topics/db/models/.
I have registered the app and provided connection details of the DB.
But when I tried to run makemigrations and migrate, it's not identifying the changes. python manage.py makemigrations No changes detected
python manage.py migrate Operations to perform: Apply all migrations: admin, auth, contenttypes, sessions Running migrations: No migrations to apply.
any help would be appriciated.