18 lines
475 B
Python
18 lines
475 B
Python
# Generated by Django 5.0.10 on 2025-01-11 07:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='customuser',
|
|
name='role',
|
|
field=models.CharField(choices=[('instructor', 'instructor'), ('admin', 'admin'), ('student', 'student')], max_length=255, null=True),
|
|
),
|
|
]
|