19 lines
462 B
Python
19 lines
462 B
Python
# Generated by Django 4.0.8 on 2024-01-31 21:17
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0018_rename_department_student_program'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='gender',
|
|
field=models.CharField(blank=True, choices=[('M', 'Male'), ('F', 'Female')], max_length=1, null=True),
|
|
),
|
|
]
|