# Generated by Django 4.2.19 on 2025-02-13 05:46

from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion
import victoriaApp.models


class Migration(migrations.Migration):

    dependencies = [
        migrations.swappable_dependency(settings.AUTH_USER_MODEL),
        ('victoriaApp', '0001_initial'),
    ]

    operations = [
        migrations.CreateModel(
            name='Profile',
            fields=[
                ('profile_user_id', models.AutoField(primary_key=True, serialize=False)),
                ('full_name', models.TextField(max_length=40)),
                ('email', models.EmailField(max_length=100, unique=True)),
                ('facebook', models.CharField(blank=True, help_text='Enter the Facebook link (if applicable)', max_length=100, null=True, validators=[victoriaApp.models.Profile.validate_url])),
                ('youtube', models.CharField(blank=True, help_text='Enter the YouTube link (if applicable)', max_length=100, null=True, validators=[victoriaApp.models.Profile.validate_url])),
                ('instagram', models.CharField(blank=True, help_text='Enter the Instagram link (if applicable)', max_length=100, null=True, validators=[victoriaApp.models.Profile.validate_url])),
                ('tiktok', models.CharField(blank=True, help_text='Enter the TikTok link (if applicable)', max_length=100, null=True, validators=[victoriaApp.models.Profile.validate_url])),
                ('linkedin', models.CharField(blank=True, help_text='Enter the LinkedIn Link (if applicable)', max_length=100, null=True, validators=[victoriaApp.models.Profile.validate_url])),
                ('user', models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)),
            ],
        ),
    ]
