Polished subjects app

This commit is contained in:
Keannu Christian Bernasol 2023-03-21 21:50:54 +08:00
parent 8527870f90
commit 249e4e920e
3 changed files with 26 additions and 2 deletions

View file

@ -0,0 +1,18 @@
# Generated by Django 4.1.7 on 2023-03-21 13:49
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('subjects', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='subject',
name='year_level',
field=models.CharField(choices=[('IU-Y1', '1st Year'), ('IU-Y2', '2nd Year'), ('IU-Y3', '3rd Year'), ('IU-Y4', '4th Year')], max_length=20),
),
]