Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Djangoのグループモデルに新しいフィールドを追加するには? 次のようなものを使用するには
from django.contrib.auth.models import Group g = Group.objects.get(pk=1) g.extra_field = "something" g.save()
可能ですか?
編集:
永続的な追加フィールドが必要です。
私も同じ問題を抱えていました。グループにフィールドを追加したかったのです。それは私のために働いた - モンキーパッチ