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
626 B
Python
Raw Permalink Normal View History

2024-08-16 22:12:49 +02:00
# 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 = [
2025-03-03 21:52:20 +01:00
('subjects', '0004_remove_subject_city_remove_subject_city_part_and_more'),
2024-08-16 22:12:49 +02:00
]
operations = [
migrations.AlterField(
2025-03-03 21:52:20 +01:00
model_name='subjectdata',
name='subject',
2024-08-16 22:12:49 +02:00
field=models.ForeignKey(
on_delete=django.db.models.deletion.CASCADE,
2025-03-03 21:52:20 +01:00
related_name='subject_data',
to='subjects.subject',
2024-08-16 22:12:49 +02:00
),
),
]