diff options
author | 2021-05-19 13:13:57 +0530 | |
---|---|---|
committer | 2021-05-19 13:13:57 +0530 | |
commit | d061ab1c138c7cecf8d138226990bdcf0761a5db (patch) | |
tree | c46609c3d3687e3c943f9e5004e3eb5914561918 /pydis_site/apps/api/migrations | |
parent | Merge pull request #505 from python-discord/poetry-and-python-3.9 (diff) |
Add active field to OffTopicChannelName model.
Diffstat (limited to 'pydis_site/apps/api/migrations')
-rw-r--r-- | pydis_site/apps/api/migrations/0070_auto_20210519_0545.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pydis_site/apps/api/migrations/0070_auto_20210519_0545.py b/pydis_site/apps/api/migrations/0070_auto_20210519_0545.py new file mode 100644 index 00000000..dbd7ac91 --- /dev/null +++ b/pydis_site/apps/api/migrations/0070_auto_20210519_0545.py @@ -0,0 +1,23 @@ +# Generated by Django 3.0.14 on 2021-05-19 05:45 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0069_documentationlink_validators'), + ] + + operations = [ + migrations.AddField( + model_name='offtopicchannelname', + name='active', + field=models.BooleanField(default=True, help_text='Whether or not this name should be considered for naming channels.'), + ), + migrations.AlterField( + model_name='offtopicchannelname', + name='used', + field=models.BooleanField(default=False, help_text='Whether or not this name has already been used during this rotation.'), + ), + ] |