20 lines
949 B
Python
20 lines
949 B
Python
# Generated by Django 5.0.2 on 2024-03-14 02:57
|
|
|
|
import wagtail.blocks
|
|
import wagtail.fields
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('blog', '0008_alter_blogpage_body'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='blogpage',
|
|
name='body',
|
|
field=wagtail.fields.StreamField([('paragraph', wagtail.blocks.RichTextBlock(blank=True)), ('code', wagtail.blocks.StructBlock([('language', wagtail.blocks.ChoiceBlock(choices=[('bash', 'Bash/Shell'), ('css', 'CSS'), ('diff', 'diff'), ('html', 'HTML'), ('javascript', 'Javascript'), ('json', 'JSON'), ('python', 'Python'), ('scss', 'SCSS'), ('yaml', 'YAML')], help_text='Coding language', identifier='language', label='Language')), ('code', wagtail.blocks.TextBlock(identifier='code', label='Code'))], label='Code snippet'))], blank=True, help_text='Write anything'),
|
|
),
|
|
]
|