# Generated by Django 3.2.16 on 2023-11-22 14:40

from django.db import migrations, models


class Migration(migrations.Migration):

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

    operations = [
        migrations.CreateModel(
            name='user_otp',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('email', models.CharField(blank=True, max_length=200)),
                ('otp', models.CharField(blank=True, max_length=50)),
                ('key', models.CharField(blank=True, max_length=200)),
                ('type', models.CharField(max_length=200, null=True)),
                ('name', models.CharField(max_length=200, null=True)),
                ('phone', models.CharField(max_length=200, null=True)),
                ('status', models.CharField(max_length=20, null=True)),
                ('createdtime', models.TimeField()),
                ('createddate', models.DateTimeField(auto_now=True)),
            ],
            options={
                'db_table': 'idpwoauser_otp',
            },
        ),
    ]
