Add migration: membership/migrations/0012_auto_20200306_1016.py

This commit is contained in:
PCoder 2020-03-06 15:48:02 +05:30
parent 2f16f2440e
commit 4441ba37ca
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9.4 on 2020-03-06 10:16
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('membership', '0011_auto_20191218_1050'),
]
operations = [
migrations.AlterField(
model_name='customuser',
name='username',
field=models.CharField(max_length=120, null=True, unique=True),
),
]