From 8c49e6ba18eb7da46c488ef8c4b055b721076b4a Mon Sep 17 00:00:00 2001 From: vabene1111 Date: Tue, 25 Jan 2022 15:29:36 +0100 Subject: [PATCH] another small migration fix --- cookbook/migrations/0164_space_show_facet_count.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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 ]