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.
27 lines
757 B
27 lines
757 B
# Generated by Django 5.2.9 on 2025-12-13 09:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("hadis", "0018_remove_hadistransmitter_status"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="hadistransmitter",
|
|
name="status",
|
|
field=models.CharField(
|
|
choices=[
|
|
("reliable", "Reliable"),
|
|
("weak", "Weak"),
|
|
("unknown", "Unknown"),
|
|
],
|
|
default="unknown",
|
|
help_text="Reliability status of the narrator",
|
|
max_length=20,
|
|
verbose_name="reliability status",
|
|
),
|
|
),
|
|
]
|