# HG changeset patch # User durandn # Date 1463137761 -7200 # Node ID 83ef301373af1ce5120b78fb7379674cf8c23ecd # Parent 0cbcfc82b5dc16aa2ed2ad90bb24524f244d89ec Migration to remove validator on username diff -r 0cbcfc82b5dc -r 83ef301373af server/src/metaeducation/migrations/0004_auto_20160414_1057.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/server/src/metaeducation/migrations/0004_auto_20160414_1057.py Fri May 13 13:09:21 2016 +0200 @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.1 on 2016-04-14 10:57 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('metaeducation', '0003_renkan_permissions'), + ] + + operations = [ + migrations.AlterField( + model_name='user', + name='username', + field=models.CharField(max_length=150), + ), + ]