# Generated by Django 4.1.13 on 2025-04-25 11:19

from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='EmailTemplate',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('name', models.SlugField(default='welcome_email', help_text="Unique identifier, e.g. 'welcome_email'", unique=True)),
                ('subject', models.CharField(default='Subject here', max_length=150)),
                ('body_text', models.TextField(blank=True, default='Hello ##Name##,\n\nThis is your message body.', help_text='Plain-text; use ##PLACEHOLDERS## here')),
                ('body_html', models.TextField(blank=True, default='<p>Hello ##Name##,</p><p>This is your message body.</p>', help_text='HTML version; use ##PLACEHOLDERS## here')),
                ('updated_at', models.DateTimeField(auto_now=True)),
            ],
        ),
    ]
