restore composer.json, add mysqli extension
This commit is contained in:
22
core/apps/vendors/migrations/0007_remove_productvariantmodel_image_url_and_more.py
vendored
Normal file
22
core/apps/vendors/migrations/0007_remove_productvariantmodel_image_url_and_more.py
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
# Generated by Django 6.0.4 on 2026-04-13 12:28
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("vendors", "0006_productattributemodel_productvariantmodel"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name="productvariantmodel",
|
||||
name="image_url",
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="productvariantmodel",
|
||||
name="image",
|
||||
field=models.ImageField(blank=True, null=True, upload_to="variants/", verbose_name="image"),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user