# Generated by Django 4.2.4 on 2023-08-15 19:46

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('notifications', '0004_remove_numbers_replay'),
    ]

    operations = [
        migrations.AlterField(
            model_name='notifications',
            name='type',
            field=models.IntegerField(choices=[(1, 'SMS'), (2, 'WhatsApp'), (3, 'Email')]),
        ),
    ]
