fix: use text field for descriptino
This commit is contained in:
@@ -0,0 +1,34 @@
|
|||||||
|
# Generated by Django 5.0.6 on 2024-05-26 11:16
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
("shop", "0001_initial"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name="productprice",
|
||||||
|
options={
|
||||||
|
"ordering": ("-date",),
|
||||||
|
"verbose_name": "precio de producto",
|
||||||
|
"verbose_name_plural": "precio de producto",
|
||||||
|
},
|
||||||
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name="tax",
|
||||||
|
options={
|
||||||
|
"ordering": ("id",),
|
||||||
|
"verbose_name": "impuesto",
|
||||||
|
"verbose_name_plural": "impuestos",
|
||||||
|
},
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="product",
|
||||||
|
name="description",
|
||||||
|
field=models.TextField(blank=True, default="", verbose_name="Descripción"),
|
||||||
|
),
|
||||||
|
]
|
||||||
+2
-2
@@ -44,8 +44,7 @@ class Product(TimestampedModel):
|
|||||||
null=False,
|
null=False,
|
||||||
verbose_name=_("Nombre"),
|
verbose_name=_("Nombre"),
|
||||||
)
|
)
|
||||||
description = models.CharField(
|
description = models.TextField(
|
||||||
max_length=1000,
|
|
||||||
blank=True,
|
blank=True,
|
||||||
default="",
|
default="",
|
||||||
verbose_name=_("Descripción"),
|
verbose_name=_("Descripción"),
|
||||||
@@ -161,6 +160,7 @@ class Tax(TimestampedModel):
|
|||||||
class Meta:
|
class Meta:
|
||||||
verbose_name = _("impuesto")
|
verbose_name = _("impuesto")
|
||||||
verbose_name_plural = _("impuestos")
|
verbose_name_plural = _("impuestos")
|
||||||
|
ordering = ("id", )
|
||||||
|
|
||||||
|
|
||||||
class Customer(TimestampedModel):
|
class Customer(TimestampedModel):
|
||||||
|
|||||||
Reference in New Issue
Block a user