| 12345678910111213141516171819 |
- # Generated by Django 3.1.1 on 2021-01-30 11:58
- import ckeditor.fields
- from django.db import migrations
- class Migration(migrations.Migration):
- dependencies = [
- ('comment', '0002_auto_20210126_2310'),
- ]
- operations = [
- migrations.AlterField(
- model_name='comment',
- name='body',
- field=ckeditor.fields.RichTextField(),
- ),
- ]
|