add models migration

This commit is contained in:
Sokurov Idar 2021-02-16 22:33:54 +03:00
parent 21ab4bf6cc
commit 023eb69c0a

View File

@ -0,0 +1,23 @@
# Generated by Django 3.1.6 on 2021-02-16 19:22
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('main', '0002_userprofile_name'),
]
operations = [
migrations.AlterField(
model_name='userprofile',
name='image',
field=models.URLField(blank=True, null=True),
),
migrations.AlterField(
model_name='userprofile',
name='role',
field=models.CharField(default='None', max_length=100),
),
]