Fix test suite migrations to match django-taggit 1.3.0

pull/6040/head
Matt Westcott 2020-05-26 10:39:40 +01:00 zatwierdzone przez Matt Westcott
rodzic f43db1e69e
commit a7ddb056b8
2 zmienionych plików z 27 dodań i 0 usunięć

Wyświetl plik

@ -61,6 +61,10 @@ testing_extras = [
# Pipenv hack to fix broken dependency causing CircleCI failures
'docutils==0.15',
# django-taggit 1.3.0 made changes to verbose_name which affect migrations;
# the test suite migrations correspond to >=1.3.0
'django-taggit>=1.3.0,<2.0',
]
# Documentation dependencies

Wyświetl plik

@ -0,0 +1,23 @@
# Generated by Django 3.0.6 on 2020-05-26 09:29
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('tests', '0050_customimagewithauthor_customrenditionwithauthor'),
]
operations = [
migrations.AlterField(
model_name='restauranttag',
name='name',
field=models.CharField(max_length=100, unique=True, verbose_name='name'),
),
migrations.AlterField(
model_name='restauranttag',
name='slug',
field=models.SlugField(max_length=100, unique=True, verbose_name='slug'),
),
]