0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-29 17:36:49 +01:00

Migrations for field changes

This commit is contained in:
Kalob Taulien 2021-02-04 08:32:13 -07:00
parent 5e46646f10
commit 2000697d78

View File

@ -0,0 +1,23 @@
# Generated by Django 3.0.12 on 2021-02-04 15:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('wagtailcore', '0060_fix_workflow_unique_constraint'),
]
operations = [
migrations.AlterField(
model_name='page',
name='search_description',
field=models.TextField(blank=True, help_text='The descriptive text displayed underneath a headline in search engine results.', verbose_name='meta description'),
),
migrations.AlterField(
model_name='page',
name='seo_title',
field=models.CharField(blank=True, help_text='The name of the page displayed on search engine results as the clickable headline.', max_length=255, verbose_name='title tag'),
),
]