# Generated by Django 4.2.2 on 2025-10-21 10:51

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('results', '0003_alter_result_batch_number_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='result',
            name='result_mode',
            field=models.CharField(blank=True, choices=[('QR', 'QR'), ('MANUAL', 'MANUAL'), ('BLUETOOTH', 'BLUETOOTH')], max_length=50),
        ),
    ]
