add missing migration after text change (noop migration)
This commit is contained in:
parent
9951869a49
commit
cefdaaea97
20
src/profiles/migrations/0010_auto_20180411_2305.py
Normal file
20
src/profiles/migrations/0010_auto_20180411_2305.py
Normal 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),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue