diff options
author | 2020-08-30 08:20:25 +0300 | |
---|---|---|
committer | 2020-08-30 08:20:25 +0300 | |
commit | c1ec2f1f9fe443cdde3750b1df1c3d969df3e67e (patch) | |
tree | 2a3e24dc32a5ca4f903e17c18d010d58a26b58e7 /pydis_site/apps/api/models/bot | |
parent | Revert pull request #348 (diff) |
Revert "Revert pull request #348"
This reverts commit dae68c46831ef14e6a0715add1025f9af1b5a73d.
Diffstat (limited to 'pydis_site/apps/api/models/bot')
-rw-r--r-- | pydis_site/apps/api/models/bot/off_topic_channel_name.py | 5 |
1 files changed, 5 insertions, 0 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 20e77b9f..403c7465 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,6 +16,11 @@ 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 |