You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Django users
I'm working with django-salesforce and have salesforce models in my models.py, as well as local models which point to a Postgres database. I am excluding the salesforce models from the migrate command by using managed = False in a meta class on the models. However, makemigrations still generates migrations for the salesforce model which then never get run by migrate. That's ok but seems a little messy. Is there any way to prevent Django generating migrations for particular models? Have searched the django documentation (I think) pretty extensively for a method.