| 123456789101112131415161718192021222324 |
- # Generated by Django 3.2.13 on 2022-05-31 14:51
- from django.db import migrations
- import mptt.fields
- class Migration(migrations.Migration):
- dependencies = [
- ('pos', '0034_auto_20220531_2134'),
- ]
- operations = [
- migrations.RemoveField(
- model_name='post',
- name='category',
- ),
- migrations.AddField(
- model_name='post',
- name='category',
- field=mptt.fields.TreeManyToManyField(blank=True, null=True, to='pos.PostCategory'),
- ),
- ]
|