19 lines
490 B
Python
19 lines
490 B
Python
# Generated by Django 5.0.6 on 2025-06-12 09:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('huodong', '0017_branch_equipment_image'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='branch',
|
|
name='equipment_image',
|
|
field=models.ImageField(blank=True, default=None, null=True, upload_to='equipment_room_images/', verbose_name='设备间图片'),
|
|
),
|
|
]
|