You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
415 B
19 lines
415 B
# Generated by Django 5.0.6 on 2024-05-23 01:57
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('hospital', '0002_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='doctor',
|
|
name='img',
|
|
field=models.ImageField(upload_to='media/doctor/', verbose_name='医生照片'),
|
|
),
|
|
]
|