From cefdaaea97a0b7ea9f80cf3e55466d10e81c6939 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Wed, 11 Apr 2018 23:05:36 +0200 Subject: [PATCH] add missing migration after text change (noop migration) --- .../migrations/0010_auto_20180411_2305.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/profiles/migrations/0010_auto_20180411_2305.py diff --git a/src/profiles/migrations/0010_auto_20180411_2305.py b/src/profiles/migrations/0010_auto_20180411_2305.py new file mode 100644 index 00000000..b92f0d9a --- /dev/null +++ b/src/profiles/migrations/0010_auto_20180411_2305.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.10.5 on 2018-04-11 21:05 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('profiles', '0009_profile_nickserv_username'), + ] + + operations = [ + migrations.AlterField( + model_name='profile', + name='nickserv_username', + field=models.CharField(blank=True, help_text='Your NickServ username is used to manage team IRC channel access lists. Make sure you register with NickServ _before_ you enter the username here!', max_length=50), + ), + ]