21 lines
580 B
Python
21 lines
580 B
Python
# Generated by Django 3.2.12 on 2024-04-02 06:55
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('system', '0023_alter_user_first_name'),
|
|
('information', '0013_abilityreview_department'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='contact',
|
|
name='department',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.PROTECT, to='system.organization', verbose_name='组织单位'),
|
|
),
|
|
]
|