diff --git a/cookbook/migrations/0164_space_show_facet_count.py b/cookbook/migrations/0164_space_show_facet_count.py index fbab0961b..ef1113213 100644 --- a/cookbook/migrations/0164_space_show_facet_count.py +++ b/cookbook/migrations/0164_space_show_facet_count.py @@ -10,9 +10,10 @@ class Migration(migrations.Migration): ] operations = [ - migrations.AddField( - model_name='space', - name='show_facet_count', - field=models.BooleanField(default=False), - ), + # migrations.AddField( + # model_name='space', + # name='show_facet_count', + # field=models.BooleanField(default=False), + # ), + # removed due to quick fix in 0156 migration to maintain correct order ]