diff options
author | 2020-09-01 17:51:41 +0300 | |
---|---|---|
committer | 2020-09-01 17:51:41 +0300 | |
commit | e0df21ce0be32ce37803951f82a9a5754ddef1f5 (patch) | |
tree | a145ec9b3421bbe90cffb0747e3dc94d35bd8fe5 /pydis_site/apps/api/migrations | |
parent | Replace bad import on migration (diff) | |
parent | Merge pull request #380 from ks129/off-topic-non-random (diff) |
Merge branch 'master' into tags-cleanup
Diffstat (limited to 'pydis_site/apps/api/migrations')
-rw-r--r-- | pydis_site/apps/api/migrations/0052_offtopicchannelname_used.py | 18 | ||||
-rw-r--r-- | pydis_site/apps/api/migrations/0061_merge_20200830_0526.py | 14 |
2 files changed, 32 insertions, 0 deletions
diff --git a/pydis_site/apps/api/migrations/0052_offtopicchannelname_used.py b/pydis_site/apps/api/migrations/0052_offtopicchannelname_used.py new file mode 100644 index 00000000..dfdf3835 --- /dev/null +++ b/pydis_site/apps/api/migrations/0052_offtopicchannelname_used.py @@ -0,0 +1,18 @@ +# Generated by Django 2.2.11 on 2020-03-30 10:24 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0051_create_news_setting'), + ] + + operations = [ + migrations.AddField( + model_name='offtopicchannelname', + name='used', + field=models.BooleanField(default=False, help_text='Whether or not this name has already been used during this rotation'), + ), + ] diff --git a/pydis_site/apps/api/migrations/0061_merge_20200830_0526.py b/pydis_site/apps/api/migrations/0061_merge_20200830_0526.py new file mode 100644 index 00000000..f0668696 --- /dev/null +++ b/pydis_site/apps/api/migrations/0061_merge_20200830_0526.py @@ -0,0 +1,14 @@ +# Generated by Django 3.0.8 on 2020-08-30 05:26 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api', '0060_populate_filterlists_fix'), + ('api', '0052_offtopicchannelname_used'), + ] + + operations = [ + ] |