Polished full_name for professor and student

This commit is contained in:
Keannu Christian Bernasol 2023-04-22 13:03:43 +08:00
parent f9b585108e
commit cdd4db9b6a
7 changed files with 91 additions and 8 deletions

View file

@ -0,0 +1,19 @@
# Generated by Django 4.2 on 2023-04-22 05:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('students', '0008_remove_student_schedules'),
]
operations = [
migrations.AddField(
model_name='student',
name='full_name',
field=models.CharField(default=' ', max_length=120),
preserve_default=False,
),
]