19 lines
588 B
Python
19 lines
588 B
Python
# Generated by Django 4.0.5 on 2022-07-24 00:49
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('autenticacion', '0005_alter_perfil_cuatrimestre'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='perfil',
|
|
name='cuatrimestre',
|
|
field=models.CharField(choices=[('0', '0'), ('1', '1'), ('2', '2'), ('3', '3'), ('4', '4'), ('5', '5'), ('6', '6'), ('7', '7'), ('8', '8'), ('9', '9'), ('10', '10')], default=0, max_length=2, verbose_name='Cuatrimestre'),
|
|
),
|
|
]
|