I want to add to existing fields some db_index in my models. I just added db_index=True
to the model.
I was thinking I would need to run python manage.py migrate
to apply them on the database. My issue is that no change is detected thus no migration is created. Is it a normal behavior ?
Or is there a specific behavior I'm not aware of?
Thank you.