update
This commit is contained in:
61
home/migrations/0019_alter_aboutsection_options_and_more.py
Normal file
61
home/migrations/0019_alter_aboutsection_options_and_more.py
Normal file
@@ -0,0 +1,61 @@
|
||||
# Generated by Django 5.0.3 on 2024-12-12 08:41
|
||||
|
||||
import ckeditor.fields
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('home', '0018_productsection'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='aboutsection',
|
||||
options={'verbose_name_plural': '4. About Section'},
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name='productsection',
|
||||
options={'verbose_name_plural': '3. Product Section'},
|
||||
),
|
||||
migrations.AlterModelOptions(
|
||||
name='servicesection',
|
||||
options={'verbose_name_plural': '2. Service Section'},
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='productsection',
|
||||
name='show_call_now_widget',
|
||||
field=models.BooleanField(default=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='productsection',
|
||||
name='slug',
|
||||
field=models.SlugField(blank=True, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='productsection',
|
||||
name='detail_page_description',
|
||||
field=ckeditor.fields.RichTextField(blank=True, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='productsection',
|
||||
name='detail_page_image',
|
||||
field=models.ImageField(blank=True, null=True, upload_to='Products/'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='productsection',
|
||||
name='fontawesome_icon_class',
|
||||
field=models.CharField(blank=True, max_length=100, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='productsection',
|
||||
name='name',
|
||||
field=models.CharField(blank=True, max_length=200, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='productsection',
|
||||
name='short_description',
|
||||
field=models.CharField(blank=True, max_length=500, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user