aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/api/migrations/0052_offtopicchannelname_used.py
blob: dfdf38354c7dd60e126a14d49fabf86db90b04ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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'),
        ),
    ]