You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
436 B
20 lines
436 B
2 years ago
|
# Generated by Django 3.1 on 2020-09-01 17:53
|
||
|
|
||
|
import ckeditor.fields
|
||
|
from django.db import migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('Mywebsite', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='tb_news',
|
||
|
name='news_detail',
|
||
|
field=ckeditor.fields.RichTextField(blank=True, null=True),
|
||
|
),
|
||
|
]
|