20 lines
445 B
Python
20 lines
445 B
Python
# Generated by Django 2.2.7 on 2019-12-10 07:40
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0039_sitefeature_old_id'),
|
|
('product', '0020_merge_20191209_0911'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='product',
|
|
name='sites',
|
|
field=models.ManyToManyField(to='main.SiteSettings'),
|
|
),
|
|
]
|