mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 06:19:24 +08:00
28 lines
828 B
Python
28 lines
828 B
Python
# Generated by Django 4.2.3 on 2023-07-18 07:43
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('study_groups', '0001_initial'),
|
|
('student_status', '0001_initial'),
|
|
('subjects', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='studentstatus',
|
|
name='study_group',
|
|
field=models.ManyToManyField(blank=True, through='study_groups.StudyGroupMembership', to='study_groups.studygroup'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='studentstatus',
|
|
name='subject',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='subjects.subject'),
|
|
),
|
|
]
|