fix: ordering
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
# Generated by Django 5.1.3 on 2024-11-24 12:26
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("shop", "0004_alter_product_options_product_slug"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name="productprice",
|
||||
name="price_with_tax",
|
||||
field=models.DecimalField(
|
||||
blank=True,
|
||||
decimal_places=2,
|
||||
max_digits=11,
|
||||
null=True,
|
||||
verbose_name="precio con impuestos",
|
||||
),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user