This repository has been archived on 2024-09-18. You can view files and clone it, but cannot push or open issues or pull requests.
arka-api/api/migrations/0007_alter_account_role_and_more.py
2023-03-06 20:27:57 +03:00

25 lines
839 B
Python
Executable File

# Generated by Django 4.1.2 on 2022-10-26 17:48
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('api', '0006_alter_account_name_alter_account_password_and_more'),
]
operations = [
migrations.AlterField(
model_name='account',
name='role',
field=models.SmallIntegerField(choices=[(0, 'Заказчик'), (1, 'Исполнитель')], default=0, verbose_name='Роль'),
preserve_default=False,
),
migrations.AlterField(
model_name='executoraccount',
name='executor_type',
field=models.SmallIntegerField(blank=True, choices=[(0, 'самозанятый'), (1, 'юр. лицо')], null=True, verbose_name='Тип исполнителя'),
),
]