19 lines
553 B
Python
19 lines
553 B
Python
# Generated by Django 5.2.7 on 2026-01-28 00:05
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0019_profile_car_plate_number_profile_license_back_image_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='profile',
|
|
name='is_approved',
|
|
field=models.BooleanField(default=False, help_text='Designates whether this user is approved to use the platform (mainly for drivers).', verbose_name='Approved'),
|
|
),
|
|
]
|