add models migration
This commit is contained in:
parent
21ab4bf6cc
commit
023eb69c0a
23
main/migrations/0003_auto_20210216_2222.py
Normal file
23
main/migrations/0003_auto_20210216_2222.py
Normal 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),
|
||||
),
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user