diff options
author | 2020-08-29 10:00:45 -0700 | |
---|---|---|
committer | 2020-08-29 10:00:45 -0700 | |
commit | dae68c46831ef14e6a0715add1025f9af1b5a73d (patch) | |
tree | 9d7983d6979e6b4d7ce5cb0264a1f98361cca34a /pydis_site/apps/api/models | |
parent | Merge pull request #348 from ks129/off-topic-non-random (diff) |
Revert pull request #348
Revert commit 330a27926a7f2a9bdae56a5928cd81e55ccb38ed to reverse
changes made to 6c08da2f3e48db9c9dd452f2e0505c4a61e46592. Migrations
were failing when those changes were deployed.
Diffstat (limited to 'pydis_site/apps/api/models')
-rw-r--r-- | pydis_site/apps/api/models/bot/off_topic_channel_name.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/pydis_site/apps/api/models/bot/off_topic_channel_name.py b/pydis_site/apps/api/models/bot/off_topic_channel_name.py index 403c7465..20e77b9f 100644 --- a/pydis_site/apps/api/models/bot/off_topic_channel_name.py +++ b/pydis_site/apps/api/models/bot/off_topic_channel_name.py @@ -16,11 +16,6 @@ class OffTopicChannelName(ModelReprMixin, models.Model): help_text="The actual channel name that will be used on our Discord server." ) - used = models.BooleanField( - default=False, - help_text="Whether or not this name has already been used during this rotation", - ) - def __str__(self): """Returns the current off-topic name, for display purposes.""" return self.name |