SMART-42 added username field to UserProfile entity

This commit is contained in:
s460930 2020-12-09 19:36:14 +01:00
parent 3c6736c98c
commit dae0990207
4 changed files with 20 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,20 @@
# Generated by Django 3.1.3 on 2020-12-09 18:34
from django.db import migrations, models
class Migration(migrations.Migration):
atomic = False
dependencies = [
('user_profile', '0002_remove_userprofile_phone_number'),
]
operations = [
migrations.AddField(
model_name='userprofile',
name='username',
field=models.CharField(default='', max_length=50, unique=True),
preserve_default=False,
),
]