Skip to content

Commit

Permalink
Merge a504399 into c944339
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolas committed Feb 8, 2017
2 parents c944339 + a504399 commit 488f8f6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions tagging/migrations/0003_auto_20170208_1338.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.conf import settings
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('tagging', '0002_on_delete'),
]

operations = [
migrations.AlterField(
model_name='tag',
name='name',
field=models.CharField(
unique=True,
max_length=getattr(settings, 'MAX_TAG_LENGTH', 50),
verbose_name='name',
db_index=True),
),
]

0 comments on commit 488f8f6

Please sign in to comment.