From 59a87b97287d1d71d937b52d62385c4c6acd9124 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Fri, 15 Jul 2022 14:28:13 -0500 Subject: [PATCH] fix: add missing field alteration --- .../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 00000000000..8f0464764c2 --- /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'), + ), + ]