add missing migration after text change (noop migration)

This commit is contained in:
Thomas Steen Rasmussen 2018-04-11 23:05:36 +02:00
parent 9951869a49
commit cefdaaea97
1 changed files with 20 additions and 0 deletions

View File

@ -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),
),
]