furmeet-bot/webproj/bot/migrations/0024_auto_20200712_0107.py
2020-07-11 23:03:59 -03:00

35 lines
1.0 KiB
Python

# Generated by Django 3.0.8 on 2020-07-12 01:07
import ckeditor.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('bot', '0023_auto_20200711_0840'),
]
operations = [
migrations.AlterField(
model_name='groupcannedmessage',
name='reply_with',
field=ckeditor.fields.RichTextField(max_length=4000),
),
migrations.AlterField(
model_name='grouppreferences',
name='combot_anti_spam_notification',
field=ckeditor.fields.RichTextField(blank=True, default='', max_length=4000),
),
migrations.AlterField(
model_name='grouppreferences',
name='join_message',
field=ckeditor.fields.RichTextField(blank=True, default='', max_length=4000),
),
migrations.AlterField(
model_name='grouppreferences',
name='leave_message',
field=ckeditor.fields.RichTextField(blank=True, default='', max_length=4000),
),
]