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.
28 lines
818 B
28 lines
818 B
# Generated by Django 3.2.7 on 2025-03-21 20:07
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('library', '0004_remove_category_books'),
|
|
('hadis', '0006_auto_20250321_1600'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='hadisoverview',
|
|
name='explanation',
|
|
field=models.TextField(blank=True, null=True, verbose_name='explanation'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='hadistransmitter',
|
|
name='description',
|
|
field=models.TextField(blank=True, null=True, verbose_name='description'),
|
|
),
|
|
migrations.AlterUniqueTogether(
|
|
name='hadisreference',
|
|
unique_together={('hadis', 'book')},
|
|
),
|
|
]
|