Няма описание

0035_auto_20220531_2151.py 541B

123456789101112131415161718192021222324
  1. # Generated by Django 3.2.13 on 2022-05-31 14:51
  2. from django.db import migrations
  3. import mptt.fields
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('pos', '0034_auto_20220531_2134'),
  7. ]
  8. operations = [
  9. migrations.RemoveField(
  10. model_name='post',
  11. name='category',
  12. ),
  13. migrations.AddField(
  14. model_name='post',
  15. name='category',
  16. field=mptt.fields.TreeManyToManyField(blank=True, null=True, to='pos.PostCategory'),
  17. ),
  18. ]