another small migration fix

This commit is contained in:
vabene1111
2022-01-25 15:29:36 +01:00
parent 4b0ed86c36
commit 8c49e6ba18

View File

@@ -10,9 +10,10 @@ class Migration(migrations.Migration):
] ]
operations = [ operations = [
migrations.AddField( # migrations.AddField(
model_name='space', # model_name='space',
name='show_facet_count', # name='show_facet_count',
field=models.BooleanField(default=False), # field=models.BooleanField(default=False),
), # ),
# removed due to quick fix in 0156 migration to maintain correct order
] ]