Skip to content
This repository has been archived by the owner on Apr 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #865 from geometalab/feature/django_1.10
Browse files Browse the repository at this point in the history
makemigration after switching to Django 1.10
  • Loading branch information
das-g authored May 11, 2017
2 parents ec6233d + d990f60 commit 8d8f710
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions osmaxx/contrib/auth/migrations/0005_auto_20170511_1100.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-05-11 09:00
from __future__ import unicode_literals

import django.contrib.auth.validators
from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('auth', '0004_add_high_priority_user_group'),
]

operations = [
migrations.AlterField(
model_name='user',
name='username',
field=models.CharField(error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.', max_length=150, unique=True, validators=[django.contrib.auth.validators.UnicodeUsernameValidator()], verbose_name='username'),
),
]

0 comments on commit 8d8f710

Please sign in to comment.