# Generated by Django 6.0.3 on 2026-05-21 09:57

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('MASTERAPP', '0012_alter_order_status_shipment'),
    ]

    operations = [
        migrations.AddField(
            model_name='user',
            name='role',
            field=models.CharField(choices=[('customer', 'Customer'), ('admin', 'Admin'), ('warehouse', 'Warehouse'), ('delivery', 'Delivery')], default='customer', max_length=50),
        ),
    ]
