19 lines
455 B
Python
19 lines
455 B
Python
# Generated by Django 6.0 on 2025-12-28 20:41
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('landing_page', '0002_alter_expertise_options_alter_inquiry_options_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='product',
|
|
name='image',
|
|
field=models.ImageField(blank=True, null=True, upload_to='products/'),
|
|
),
|
|
]
|