Нема описа

0013_auto_20210821_1332.py 1.4KB

1234567891011121314151617181920212223242526272829303132
  1. # Generated by Django 3.2.6 on 2021-08-21 06:32
  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', '0012_auto_20210821_1323'),
  9. ]
  10. operations = [
  11. migrations.AlterField(
  12. model_name='post',
  13. name='products1',
  14. field=smart_selects.db_fields.ChainedForeignKey(auto_choose=True, blank=True, chained_field='top_store', chained_model_field='store', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='product1', to='fruit.product'),
  15. ),
  16. migrations.AlterField(
  17. model_name='post',
  18. name='products2',
  19. field=smart_selects.db_fields.ChainedForeignKey(auto_choose=True, blank=True, chained_field='top_store', chained_model_field='store', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='product2', to='fruit.product'),
  20. ),
  21. migrations.AlterField(
  22. model_name='post',
  23. name='products3',
  24. field=smart_selects.db_fields.ChainedForeignKey(auto_choose=True, blank=True, chained_field='top_store', chained_model_field='store', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='product3', to='fruit.product'),
  25. ),
  26. ]