19 lines
456 B
Python
19 lines
456 B
Python
|
|
# Generated by Django 5.0.6 on 2025-06-19 08:55
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('huodong', '0023_publicscreen_created_at'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AlterField(
|
||
|
|
model_name='event',
|
||
|
|
name='branches',
|
||
|
|
field=models.ManyToManyField(related_name='events', to='huodong.branch', verbose_name='分支机构'),
|
||
|
|
),
|
||
|
|
]
|