Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
MagnusHafstad committed Nov 13, 2023
1 parent 2bcd87d commit 086fc1a
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions backend/apps/ecommerce/migrations/0003_auto_20231113_1906.py
Original file line number Diff line number Diff line change
Expand Up @@ -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),
),
]

0 comments on commit 086fc1a

Please sign in to comment.