# Generated by Django 5.2.6 on 2025-12-29 05:20 from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='SEOConfiguration', fields=[ ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('home_page_meta_title', models.CharField(help_text='SEO title for the page (max 60 characters).', max_length=100)), ('home_page_meta_description', models.CharField(help_text='Meta description for search engines (max 160 characters).', max_length=300)), ('about_meta_title', models.CharField(help_text='SEO title for the page (max 60 characters).', max_length=100)), ('about_meta_description', models.CharField(help_text='Meta description for search engines (max 160 characters).', max_length=300)), ('tools_meta_title', models.CharField(help_text='SEO title for the page (max 60 characters).', max_length=100)), ('tools_meta_description', models.CharField(help_text='Meta description for search engines (max 160 characters).', max_length=300)), ('contact_meta_title', models.CharField(help_text='SEO title for the page (max 60 characters).', max_length=100)), ('contact_meta_description', models.CharField(help_text='Meta description for search engines (max 160 characters).', max_length=300)), ('career_meta_title', models.CharField(help_text='SEO title for the page (max 60 characters).', max_length=100)), ('career_meta_description', models.CharField(help_text='Meta description for search engines (max 160 characters).', max_length=300)), ('blog_meta_title', models.CharField(help_text='SEO title for the page (max 60 characters).', max_length=100)), ('blog_meta_description', models.CharField(help_text='Meta description for search engines (max 160 characters).', max_length=300)), ('term_and_con_meta_title', models.CharField(help_text='SEO title for the page (max 60 characters).', max_length=100)), ('term_and_con_meta_description', models.CharField(help_text='Meta description for search engines (max 160 characters).', max_length=300)), ('term_and_con_canonical_url', models.URLField(blank=True, help_text='Canonical URL to avoid duplicate content.', null=True)), ('privacy_pol_meta_title', models.CharField(help_text='SEO title for the page (max 60 characters).', max_length=100)), ('privacy_pol_meta_description', models.CharField(help_text='Meta description for search engines (max 160 characters).', max_length=300)), ('privacy_pol_canonical_url', models.URLField(blank=True, help_text='Canonical URL to avoid duplicate content.', null=True)), ], ), ]