Skip to content

Commit 70a076c

Browse files
committed
Removed outdated tagging migration and replaced it.
1 parent 5154a3a commit 70a076c

File tree

2 files changed

+22
-18
lines changed

2 files changed

+22
-18
lines changed

project/tagging/migrations/0003_auto_20200407_1156.py

Lines changed: 0 additions & 18 deletions
This file was deleted.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by Django 2.2.4 on 2020-05-08 19:30
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('tagging', '0002_auto_20200405_0312'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='customtag',
15+
name='slug',
16+
field=models.SlugField(allow_unicode=True, max_length=100, verbose_name='Slug'),
17+
),
18+
migrations.AlterUniqueTogether(
19+
name='customtag',
20+
unique_together={('name', 'slug')},
21+
),
22+
]

0 commit comments

Comments
 (0)