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.
 
 
 
pokercc/news/migrations/0013_auto_20200420_1224.py

33 lines
906 B

# Generated by Django 2.2.5 on 2020-04-20 12:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('news', '0012_auto_20191017_1431'),
]
operations = [
migrations.AlterField(
model_name='post',
name='body',
field=models.CharField(blank=True, max_length=10000, null=True),
),
migrations.AlterField(
model_name='post',
name='image_url',
field=models.CharField(blank=True, max_length=100, null=True),
),
migrations.AlterField(
model_name='post',
name='title',
field=models.CharField(max_length=500),
),
migrations.AlterField(
model_name='post',
name='url',
field=models.CharField(blank=True, max_length=200, null=True),
),
]