mirror of
https://github.com/lemeow125/InfoTech-Backend.git
synced 2025-05-16 11:28:14 +08:00
Polished full_name for professor and student
This commit is contained in:
parent
f9b585108e
commit
cdd4db9b6a
7 changed files with 91 additions and 8 deletions
19
infotech/students/migrations/0009_student_full_name.py
Normal file
19
infotech/students/migrations/0009_student_full_name.py
Normal 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,
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue