feat: added users app
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
# Generated by Django 5.0.3 on 2024-05-04 22:12
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("files", "0001_initial"),
|
||||
("shop", "0001_initial"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name="product",
|
||||
name="unit",
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="order",
|
||||
name="status",
|
||||
field=models.CharField(default="PEN", max_length=3, verbose_name="Estado"),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="product",
|
||||
name="images",
|
||||
field=models.ManyToManyField(
|
||||
blank=True, to="files.fileupload", verbose_name="Imágenes"
|
||||
),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="product",
|
||||
name="is_digital_asset",
|
||||
field=models.BooleanField(default=False),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="product",
|
||||
name="url",
|
||||
field=models.URLField(blank=True, verbose_name="URL de descarga"),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user