web_defender/otpverification/migrations/0006_otpverification_user_profile.py
2024-12-09 13:43:16 +05:30

21 lines
585 B
Python

# Generated by Django 5.1.1 on 2024-10-16 05:06
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('Accounts', '0003_userprofile_company_name'),
('otpverification', '0005_alter_otpverification_email'),
]
operations = [
migrations.AddField(
model_name='otpverification',
name='user_profile',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='Accounts.userprofile'),
),
]