24 lines
627 B
Python
24 lines
627 B
Python
|
# Generated by Django 5.0.6 on 2024-07-04 21:59
|
||
|
import django.db.models.deletion
|
||
|
from django.db import migrations
|
||
|
from django.db import models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("subjects", "0004_remove_subject_city_remove_subject_city_part_and_more"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name="subjectdata",
|
||
|
name="subject",
|
||
|
field=models.ForeignKey(
|
||
|
on_delete=django.db.models.deletion.CASCADE,
|
||
|
related_name="subject_data",
|
||
|
to="subjects.subject",
|
||
|
),
|
||
|
),
|
||
|
]
|