# Generated by Django 5.2 on 2025-04-21 11:15

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('contact', '0001_initial'),
    ]

    operations = [
        migrations.AddField(
            model_name='contactpage',
            name='availability_text',
            field=models.TextField(blank=True, help_text='Describe your current availability'),
        ),
        migrations.AddField(
            model_name='contactpage',
            name='email',
            field=models.CharField(blank=True, help_text='Your email address', max_length=100),
        ),
        migrations.AddField(
            model_name='contactpage',
            name='location',
            field=models.CharField(blank=True, help_text='Your location', max_length=100),
        ),
        migrations.AddField(
            model_name='contactpage',
            name='phone',
            field=models.CharField(blank=True, help_text='Your phone number', max_length=20),
        ),
        migrations.AddField(
            model_name='contactpage',
            name='response_time',
            field=models.CharField(blank=True, help_text='Your typical response time', max_length=100),
        ),
    ]
