diff options
author | 2021-09-25 13:08:01 +0300 | |
---|---|---|
committer | 2021-12-18 18:02:12 +0100 | |
commit | 75a4b0eb57520b247ecaa228440b1abbd6c65845 (patch) | |
tree | 19e6eb997adc57d97e00ddb073c6ac99aab483c9 /pydis_site/apps/api/models | |
parent | Update filters migrations (diff) |
Remove default field from FilterSettingsMixin and migration
Diffstat (limited to 'pydis_site/apps/api/models')
-rw-r--r-- | pydis_site/apps/api/models/bot/filters.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pydis_site/apps/api/models/bot/filters.py b/pydis_site/apps/api/models/bot/filters.py index 68ac191b..365259e7 100644 --- a/pydis_site/apps/api/models/bot/filters.py +++ b/pydis_site/apps/api/models/bot/filters.py @@ -104,12 +104,10 @@ class FilterSettingsMixin(models.Model, metaclass=AbstractModelMeta): # - disallowed categories # - allowed categories # - allowed channels - # - default disallowed_channels = ArrayField(models.IntegerField()) disallowed_categories = ArrayField(models.IntegerField()) allowed_channels = ArrayField(models.IntegerField()) allowed_categories = ArrayField(models.IntegerField()) - default = models.BooleanField() class Meta: """Metaclass for settings mixin.""" |