mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 06:19:24 +08:00
20 lines
575 B
Python
20 lines
575 B
Python
# Generated by Django 4.2.2 on 2023-07-04 10:01
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('subjects', '0002_subjectstudent_subject_students'),
|
|
('student_status', '0004_alter_studentstatus_study_group'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='studentstatus',
|
|
name='subject',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='subjects.subject'),
|
|
),
|
|
]
|