Migrations Issue 0001_Initial.py File is not created

I am trying to deploy(For DB connection) a Django application but, I am facing issues of deployment during migrations. Migrations file are not created (0001_Initial.py). Migrations folder is created also.

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.

python manage.py showmigrations
Travello_2
(no migrations)
admin
0001_initial
0002_logentry_remove_auto_add
0003_logentry_add_action_flag_choices
auth
0001_initial
0002_alter_permission_name_max_length
0003_alter_user_email_max_length
0004_alter_user_username_opts
0005_alter_user_last_login_null
0006_require_contenttypes_0002
0007_alter_validators_add_error_messages
0008_alter_user_username_max_length
0009_alter_user_last_name_max_length
0010_alter_group_name_max_length
0011_update_proxy_permissions
0012_alter_user_first_name_max_length
contenttypes
0001_initial
0002_remove_content_type_name
sessions
0001_initial

Your development environment should be creating the migrations. Your deployment process should be including those migration files, which are then used on the target database.

If your application name is Travello_2, try running python manage.py makemigrations Travello_2, then show the output from that command.

Hey Ken, I have figures out what was the error, migrations file were created after trying these cmd in virtual env. but it was not reflecting becaz DB name in postgres was not following naming convention. All things are now working & these Travello_2 project is also completed, now I am planning to make some e-commerce project using django.