# Generated by Django 6.0.6 on 2026-07-17 08:26

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('notifications', '0002_notificationtemplate'),
    ]

    operations = [
        migrations.AddField(
            model_name='notificationtemplate',
            name='purpose',
            field=models.CharField(choices=[('GENERAL', 'General / Job notification'), ('OTP', 'OTP (verification code)')], default='GENERAL', max_length=10),
        ),
        migrations.AlterField(
            model_name='notificationtemplate',
            name='body',
            field=models.TextField(help_text='Message body. Use {{name}}, {{job_title}}, {{company}}, {{location}}. For OTP use {{otp}}.'),
        ),
    ]
