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.
23 lines
567 B
23 lines
567 B
# Generated by Django 3.2.7 on 2025-03-17 01:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('hadis', '0002_auto_20250317_0055'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RemoveField(
|
|
model_name='hadiscategory',
|
|
name='title',
|
|
),
|
|
migrations.AddField(
|
|
model_name='hadiscategory',
|
|
name='name',
|
|
field=models.CharField(default='1', max_length=355, verbose_name='name'),
|
|
preserve_default=False,
|
|
),
|
|
]
|