0
我找不到在django中添加我自己的組的明確說明。 我可以在管理頁面中做到這一點。但這似乎並不正確。如何在django中添加用戶組?
我GOOGLE了它,並有人說把這個
from django.contrib.auth.models import Group, Permission
different_users = Group(name='Different Users')
different_users.save()
outstanding_users = Group(name='Outstanding Users')
outstanding_users.save()
的int __init__.py
這並不爲我工作。 這是我得到的錯誤。
django.db.utils.IntegrityError: (1062, "Duplicate entry 'Different Users' for key 'name'")
任何人都知道在django中創建不同組的正確方法? 我在django文檔中找不到任何東西。
可能您已經在數據庫中擁有該組名稱。 – karthikr