This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/subjects/migrations/0005_alter_subjectdata_subject.py

23 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",
),
),
]