fix: add missing field alteration (#4220)

This commit is contained in:
Robert Sparks 2022-07-15 14:35:37 -05:00 committed by GitHub
parent 6ed4ea0f93
commit fccee05aee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,19 @@
# Copyright The IETF Trust 2022, All Rights Reserved
# Generated by Django 2.2.28 on 2022-07-15 12:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('group', '0057_nojabber_onlychat'),
]
operations = [
migrations.AlterField(
model_name='groupfeatures',
name='has_default_chat',
field=models.BooleanField(default=False, verbose_name='Chat'),
),
]