From 086fc1ab587947caa1097906e943a6ca5e4f9d57 Mon Sep 17 00:00:00 2001 From: MagnusHafstad <114174209+MagnusHafstad@users.noreply.github.com> Date: Mon, 13 Nov 2023 19:18:12 +0100 Subject: [PATCH] ... --- .../ecommerce/migrations/0003_auto_20231113_1906.py | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/backend/apps/ecommerce/migrations/0003_auto_20231113_1906.py b/backend/apps/ecommerce/migrations/0003_auto_20231113_1906.py index 997721930..5217b003b 100644 --- a/backend/apps/ecommerce/migrations/0003_auto_20231113_1906.py +++ b/backend/apps/ecommerce/migrations/0003_auto_20231113_1906.py @@ -4,20 +4,19 @@ class Migration(migrations.Migration): - dependencies = [ - ('ecommerce', '0002_auto_20220120_1911'), + ("ecommerce", "0002_auto_20220120_1911"), ] operations = [ migrations.AddField( - model_name='product', - name='sizes', + model_name="product", + name="sizes", field=models.JSONField(blank=True, default=list), ), migrations.AddField( - model_name='product', - name='types', + model_name="product", + name="types", field=models.JSONField(blank=True, default=list), ), ]