# Generated by Django 3.1.13 on 2022-10-27 06:47

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('widgets', '0016_auto_20211221_1027'),
    ]

    operations = [
        migrations.AlterField(
            model_name='seal',
            name='seal_type',
            field=models.CharField(choices=[('TYPE_1', 'Type 1'), ('TYPE_2', 'Type 2'), ('TYPE_3', 'Type 3'), ('TYPE_4', 'Type 4'), ('TYPE_5', 'Type 5'), ('TYPE_6', 'Type 6'), ('TYPE_7', 'Type 7'), ('TYPE_8', 'Type 8'), ('TYPE_9', 'Type 9'), ('TYPE_10', 'Type 10'), ('TYPE_11', 'Type 11')], default='TYPE_1', max_length=50),
        ),
    ]
