Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
feat: add new migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
mumarkhan999 committed Dec 13, 2023
1 parent ea08e15 commit 8654ee0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 53 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 3.2.20 on 2023-12-12 13:19
# Generated by Django 3.2.20 on 2023-12-05 10:34

import django.core.serializers.json
from django.db import migrations, models
Expand All @@ -11,11 +11,6 @@ class Migration(migrations.Migration):
]

operations = [
migrations.AddField(
model_name='line',
name='tax_code',
field=models.CharField(blank=True, max_length=64, null=True, verbose_name='VAT rate code'),
),
migrations.AlterField(
model_name='lineattribute',
name='value',
Expand Down
18 changes: 18 additions & 0 deletions ecommerce/extensions/basket/migrations/0018_line_tax_code.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.20 on 2023-12-13 14:33

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('basket', '0017_alter_lineattribute_value'),
]

operations = [
migrations.AddField(
model_name='line',
name='tax_code',
field=models.CharField(blank=True, max_length=64, null=True, verbose_name='VAT rate code'),
),
]
47 changes: 0 additions & 47 deletions ecommerce/extensions/order/migrations/0028_auto_20231211_1713.py

This file was deleted.

0 comments on commit 8654ee0

Please sign in to comment.