Sin descripción

0011_post_products.py 638B

12345678910111213141516171819202122
  1. # Generated by Django 3.2.6 on 2021-08-21 06:11
  2. from django.db import migrations
  3. import django.db.models.deletion
  4. import smart_selects.db_fields
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('fruit', '0031_auto_20210816_1519'),
  8. ('cms', '0010_post_top_store'),
  9. ]
  10. operations = [
  11. migrations.AddField(
  12. model_name='post',
  13. name='products',
  14. 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'),
  15. ),
  16. ]