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.
19 lines
482 B
19 lines
482 B
# Generated by Django 5.2.9 on 2025-12-11 16:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("hadis", "0012_remove_hadis_title_narrator"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="hadis",
|
|
name="title_narrator",
|
|
field=models.CharField(
|
|
blank=True, max_length=255, null=True, verbose_name="title narrator"
|
|
),
|
|
),
|
|
]
|