From fccee05aee19ba620c16a633764743a67cf46a77 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Fri, 15 Jul 2022 14:35:37 -0500 Subject: [PATCH] fix: add missing field alteration (#4220) --- .../migrations/0058_alter_has_default_chat | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ietf/group/migrations/0058_alter_has_default_chat diff --git a/ietf/group/migrations/0058_alter_has_default_chat b/ietf/group/migrations/0058_alter_has_default_chat new file mode 100644 index 000000000..8f0464764 --- /dev/null +++ b/ietf/group/migrations/0058_alter_has_default_chat @@ -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'), + ), + ]