19 lines
417 B
Python
19 lines
417 B
Python
# Generated by Django 3.2.12 on 2023-10-31 10:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mtm', '0020_material_cate'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='material',
|
|
name='brothers',
|
|
field=models.JSONField(blank=True, default=list, verbose_name='兄弟件'),
|
|
),
|
|
]
|