mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 06:42:16 +00:00
Remove old parent field
This commit is contained in:
@@ -14,7 +14,6 @@ class GroupInformation(models.Model):
|
||||
public = models.BooleanField("Public", default=False, help_text="Indicates if the group is visible to all")
|
||||
requestable = models.BooleanField("Requestable", default=False, help_text="Indicates if people can request to join this group")
|
||||
moderated = models.BooleanField("Moderated", default=True, help_text="Indicates if the group requires new members to be accepted by a group admin")
|
||||
parent = models.ForeignKey(Group, related_name="children_old", null=True, blank=True)
|
||||
parent_groups = models.ManyToManyField(Group, blank=True, related_name='children')
|
||||
|
||||
description = models.TextField(help_text="Description of the group and its permissions", blank=True)
|
||||
|
||||
Reference in New Issue
Block a user