19 lines
407 B
Python
19 lines
407 B
Python
# Generated by Django 5.0.14 on 2026-01-10 14:43
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('organizations', '0005_alter_staff_department'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='staff',
|
|
name='email',
|
|
field=models.EmailField(blank=True, max_length=254),
|
|
),
|
|
]
|