I have a legacy database that I'm using in an app in Django. I used the django admin functionality to generate the models.py file from the existing tables.
If I make changes to the models, such as adding a unique_together
constraint to models, are the changes managed by Django, or do I have to somehow apply said model changes to the database?