2
0
vihaanthora 3 жил өмнө
parent
commit
d2dea8d4ce

+ 37 - 0
bakerydemo/base/migrations/0006_auto_20211226_0622.py

@@ -0,0 +1,37 @@
+# Generated by Django 3.2.10 on 2021-12-26 06:22
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('base', '0005_formfield_clean_name'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='homepage',
+            name='featured_section_1_title',
+            field=models.CharField(blank=True, default='', help_text='Title to display above the promo copy', max_length=255),
+            preserve_default=False,
+        ),
+        migrations.AlterField(
+            model_name='homepage',
+            name='featured_section_2_title',
+            field=models.CharField(blank=True, default='', help_text='Title to display above the promo copy', max_length=255),
+            preserve_default=False,
+        ),
+        migrations.AlterField(
+            model_name='homepage',
+            name='featured_section_3_title',
+            field=models.CharField(blank=True, default='', help_text='Title to display above the promo copy', max_length=255),
+            preserve_default=False,
+        ),
+        migrations.AlterField(
+            model_name='homepage',
+            name='promo_title',
+            field=models.CharField(blank=True, default='', help_text='Title to display above the promo copy', max_length=255),
+            preserve_default=False,
+        ),
+    ]

+ 0 - 4
bakerydemo/base/models.py

@@ -185,7 +185,6 @@ class HomePage(Page):
         help_text='Promo image'
     )
     promo_title = models.CharField(
-        null=True,
         blank=True,
         max_length=255,
         help_text='Title to display above the promo copy'
@@ -202,7 +201,6 @@ class HomePage(Page):
     # Each list their children items that we access via the children function
     # that we define on the individual Page models e.g. BlogIndexPage
     featured_section_1_title = models.CharField(
-        null=True,
         blank=True,
         max_length=255,
         help_text='Title to display above the promo copy'
@@ -219,7 +217,6 @@ class HomePage(Page):
     )
 
     featured_section_2_title = models.CharField(
-        null=True,
         blank=True,
         max_length=255,
         help_text='Title to display above the promo copy'
@@ -236,7 +233,6 @@ class HomePage(Page):
     )
 
     featured_section_3_title = models.CharField(
-        null=True,
         blank=True,
         max_length=255,
         help_text='Title to display above the promo copy'