I added a field to auth.Group model with the add_to_class method like said here:
Add extra Fields to Django to Django Auth Groups
I added this in models.py:
Group.add_to_class('type', models.CharField(max_length=100))
When I did that, it looks like the field has been added to the model class but not as a db field... So when I try to reach the admin page of Group, it says my new field does not exist. After some research it looks like adding field to auth.Group with this method is not really good as well.
What I want to do is delete the new field I added but I don't know how. From what I understand from this answer:
Delete field from standard Django model
I have to delete the field from the Model._meta.fields list but I don't know how.