Skip to content

Commit

Permalink
💚 black
Browse files Browse the repository at this point in the history
  • Loading branch information
annashamray committed Jun 1, 2022
1 parent 4d69aa0 commit 985ce46
Showing 1 changed file with 30 additions and 10 deletions.
40 changes: 30 additions & 10 deletions src/open_inwoner/pdc/migrations/0038_auto_20220601_1435.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,43 @@ class Migration(migrations.Migration):

dependencies = [
migrations.swappable_dependency(settings.FILER_IMAGE_MODEL),
('pdc', '0037_category_highlighted'),
("pdc", "0037_category_highlighted"),
]

operations = [
migrations.AddField(
model_name='product',
name='icon',
field=filer.fields.image.FilerImageField(blank=True, help_text='Icon of the product', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='product_icons', to=settings.FILER_IMAGE_MODEL, verbose_name='Icon'),
model_name="product",
name="icon",
field=filer.fields.image.FilerImageField(
blank=True,
help_text="Icon of the product",
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="product_icons",
to=settings.FILER_IMAGE_MODEL,
verbose_name="Icon",
),
),
migrations.AddField(
model_name='product',
name='image',
field=filer.fields.image.FilerImageField(blank=True, help_text='Image of the product', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='product_images', to=settings.FILER_IMAGE_MODEL, verbose_name='Image'),
model_name="product",
name="image",
field=filer.fields.image.FilerImageField(
blank=True,
help_text="Image of the product",
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="product_images",
to=settings.FILER_IMAGE_MODEL,
verbose_name="Image",
),
),
migrations.AlterField(
model_name='category',
name='highlighted',
field=models.BooleanField(default=False, help_text='Wether the category should be highlighted or not.', verbose_name='Highlighted'),
model_name="category",
name="highlighted",
field=models.BooleanField(
default=False,
help_text="Wether the category should be highlighted or not.",
verbose_name="Highlighted",
),
),
]

0 comments on commit 985ce46

Please sign in to comment.