Skip to content

Commit

Permalink
New migration for MySQL length change
Browse files Browse the repository at this point in the history
  • Loading branch information
chasetb committed Aug 11, 2015
1 parent fc0e679 commit 4779240
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions server/migrations/0008_auto_20150811_1001.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('server', '0007_auto_20150811_0813'),
]

operations = [
migrations.AlterField(
model_name='plugin',
name='name',
field=models.CharField(unique=True, max_length=255),
),
]

0 comments on commit 4779240

Please sign in to comment.