Skip to content

Commit

Permalink
fix: Change deprecated field to nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
josebui committed Nov 15, 2023
1 parent 3a0b7b8 commit 7833a6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion terraso_backend/apps/core/models/groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ class Group(SlugModel):
membership_type = models.CharField(
max_length=32,
choices=MEMBERSHIP_TYPES,
default=DEFAULT_MEMERBSHIP_TYPE,
null=True,
blank=True,
)
# End of deprecated fields

Expand Down

0 comments on commit 7833a6b

Please sign in to comment.