You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
760 B

# Generated by Django 4.2.27 on 2025-12-24 12:32
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
("hadis", "0083_auto_20251224_1214"),
]
operations = [
migrations.AddField(
model_name="hadistransmitter",
name="status",
field=models.ForeignKey(
blank=True,
help_text="Reliability status of the narrator",
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="hadis_transmitters",
to="hadis.transmitterreliability",
verbose_name="reliability status",
),
),
]