combo/combo/data/migrations/0037_auto_20190701_2118.py

26 lines
661 B
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.12 on 2019-07-01 19:18
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('data', '0036_page_sub_slug'),
]
operations = [
migrations.AlterField(
model_name='feedcell',
name='url',
field=models.CharField(blank=True, max_length=200, verbose_name='URL'),
),
migrations.AlterField(
model_name='jsoncell',
name='url',
field=models.CharField(blank=True, max_length=200, verbose_name='URL'),
),
]