20 lines
542 B
Python
20 lines
542 B
Python
# Generated by Django 2.2.7 on 2019-11-17 11:17
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('product', '0013_auto_20191113_1512'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='productgallery',
|
|
name='image',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, related_name='product_gallery', to='gallery.Image', verbose_name='image'),
|
|
),
|
|
]
|