From 47792400449405f30b72890a5cffbfa34b0297d0 Mon Sep 17 00:00:00 2001 From: Chase Thompson-Baugh Date: Tue, 11 Aug 2015 10:05:25 -0600 Subject: [PATCH] New migration for MySQL length change --- server/migrations/0008_auto_20150811_1001.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 server/migrations/0008_auto_20150811_1001.py diff --git a/server/migrations/0008_auto_20150811_1001.py b/server/migrations/0008_auto_20150811_1001.py new file mode 100644 index 00000000..435a7695 --- /dev/null +++ b/server/migrations/0008_auto_20150811_1001.py @@ -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), + ), + ] \ No newline at end of file