I have a Django project that has multiple django \"apps\". One of them has models to represent data coming from an external source (I do not control this data).
I want m
If you just want to disable the ForeignKey constraint check on a field, then just add db_constraint=False to that field.
db_constraint=False
user = models.ForeignKey('User', db_constraint=False)
See also: Django - How to prevent database foreign key constraint creation