12 changed files with 185 additions and 20 deletions
-
18apps/article/migrations/0004_alter_articlecollection_slug.py
-
2apps/article/models.py
-
78apps/hadis/migrations/0032_alter_bookauthor_slug_alter_bookreference_slug_and_more.py
-
10apps/hadis/models/hadis.py
-
6apps/hadis/models/reference.py
-
10apps/hadis/models/transmitter.py
-
33apps/library/migrations/0008_alter_author_slug_alter_book_slug_and_more.py
-
8apps/library/models.py
-
18apps/podcast/migrations/0004_alter_podcastcollection_slug.py
-
2apps/podcast/models.py
-
18apps/video/migrations/0004_alter_videocollection_slug.py
-
2apps/video/models.py
@ -0,0 +1,18 @@ |
|||
# Generated by Django 4.2.30 on 2026-07-20 17:06 |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('article', '0003_remove_articlecollection_pin_top'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='articlecollection', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, max_length=255, unique=True), |
|||
), |
|||
] |
|||
@ -0,0 +1,78 @@ |
|||
# Generated by Django 4.2.30 on 2026-07-20 17:06 |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('hadis', '0031_remove_hadiscollection_pin_top_and_more'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='bookauthor', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, null=True, unique=True, verbose_name='slug'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='bookreference', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, unique=True, verbose_name='slug'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='bookresearcher', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, null=True, verbose_name='slug'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='hadis', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, unique=True, verbose_name='slug'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='hadiscollection', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, unique=True, verbose_name='slug'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='hadiscorrection', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, unique=True, verbose_name='slug'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='hadisinterpretation', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, verbose_name='slug'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='hadisstatus', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, unique=True, verbose_name='slug'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='narratorlayer', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, unique=True, verbose_name='slug'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='opinionstatus', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, null=True, verbose_name='slug'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='transmitteroriginaltext', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, unique=True, verbose_name='slug'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='transmitterreliability', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, null=True, verbose_name='slug'), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='transmitters', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, unique=True, verbose_name='slug'), |
|||
), |
|||
] |
|||
@ -0,0 +1,33 @@ |
|||
# Generated by Django 4.2.30 on 2026-07-20 17:06 |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('library', '0007_remove_bookcollection_pin_top_and_more'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='author', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, null=True, unique=True), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='book', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, null=True, unique=True), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='bookcollection', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, null=True, unique=True), |
|||
), |
|||
migrations.AlterField( |
|||
model_name='category', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, blank=True, max_length=255, null=True, unique=True), |
|||
), |
|||
] |
|||
@ -0,0 +1,18 @@ |
|||
# Generated by Django 4.2.30 on 2026-07-20 17:06 |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('podcast', '0003_remove_podcastcollection_pin_top'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='podcastcollection', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, max_length=255, unique=True), |
|||
), |
|||
] |
|||
@ -0,0 +1,18 @@ |
|||
# Generated by Django 4.2.30 on 2026-07-20 17:06 |
|||
|
|||
from django.db import migrations, models |
|||
|
|||
|
|||
class Migration(migrations.Migration): |
|||
|
|||
dependencies = [ |
|||
('video', '0003_remove_videocollection_pin_top'), |
|||
] |
|||
|
|||
operations = [ |
|||
migrations.AlterField( |
|||
model_name='videocollection', |
|||
name='slug', |
|||
field=models.SlugField(allow_unicode=True, max_length=255, unique=True), |
|||
), |
|||
] |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue