carga
This commit is contained in:
2025-04-17 00:18:43 -06:00
parent 212fea81b2
commit f5dcfba2b6
306 changed files with 112862 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# 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'),
),
]