24 lines
671 B
Python
24 lines
671 B
Python
# Generated by Django 5.2.14 on 2026-06-01 09:16
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('user', '0002_user_phone_unique'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='institution',
|
|
name='code',
|
|
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='机构编码'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='institution',
|
|
name='type',
|
|
field=models.CharField(blank=True, default='hospital', max_length=30, verbose_name='类型'),
|
|
),
|
|
]
|