mirror of
https://github.com/lemeow125/InfoTech-Backend.git
synced 2025-05-16 19:38:45 +08:00
Polished name field for schedule model
This commit is contained in:
parent
00c8e6f4f4
commit
716b7cf348
4 changed files with 29 additions and 7 deletions
19
infotech/schedules/migrations/0003_schedule_name.py
Normal file
19
infotech/schedules/migrations/0003_schedule_name.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Generated by Django 4.2 on 2023-04-22 06:12
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('schedules', '0002_alter_schedule_professor'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='schedule',
|
||||
name='name',
|
||||
field=models.TextField(default='PlaceholderName'),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue