I need to tell Django not to apply already existing migrations for a model. Is there a way I can achieve it?
Why: I have some customizations on top of django.contrib.auth
. With those, Group
model is left unused. However, migrations for it are included into the auth app. Unlike User
, Group
is not swappable
.