| 12345678910111213141516171819202122 |
- # Generated by Django 3.2.6 on 2021-08-21 06:11
- from django.db import migrations
- import django.db.models.deletion
- import smart_selects.db_fields
- class Migration(migrations.Migration):
- dependencies = [
- ('fruit', '0031_auto_20210816_1519'),
- ('cms', '0010_post_top_store'),
- ]
- operations = [
- migrations.AddField(
- model_name='post',
- name='products',
- field=smart_selects.db_fields.ChainedForeignKey(auto_choose=True, chained_field='top_store', chained_model_field='store', null=True, on_delete=django.db.models.deletion.CASCADE, to='fruit.product'),
- ),
- ]
|