19 lines
426 B
Python
19 lines
426 B
Python
# Generated by Django 5.2.11 on 2026-03-05 14:46
|
|||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('menu', '0005_order_participants_order_party_date'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='order',
|
||
|
|
name='images',
|
||
|
|
field=models.JSONField(default=list, verbose_name='聚会照片'),
|
||
|
|
),
|
||
|
|
]
|