24 lines
661 B
Python
Executable File
24 lines
661 B
Python
Executable File
# Generated by Django 4.1.2 on 2022-10-21 21:55
|
||
|
||
from django.db import migrations, models
|
||
|
||
|
||
class Migration(migrations.Migration):
|
||
|
||
dependencies = [
|
||
('api', '0004_remove_executoraccount_id_and_more'),
|
||
]
|
||
|
||
operations = [
|
||
migrations.AddField(
|
||
model_name='account',
|
||
name='about',
|
||
field=models.CharField(blank=True, default='', max_length=1000, verbose_name='О себе'),
|
||
),
|
||
migrations.AlterField(
|
||
model_name='account',
|
||
name='role',
|
||
field=models.SmallIntegerField(choices=[(0, 'Заказчик'), (1, 'Исполнитель')]),
|
||
),
|
||
]
|