I need to add a couple fields to Group model in django contrib.auth
app using:
field_name = models.CharField(...)
field_name.contribute_to_class(Group, 'field_name')
My issue is while creating the migrations with South, since they are created in the "migrations" directory inside the auth app and, since the system is already in production, I'm not allowed to alter the current django installation in the server in order to migrate auth
.
Does anyone know how to create and load such migrations?
Thanks in advance for your help.