# Generated by Django 2.2.13 on 2021-04-12 08:56 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('userausfall', '0001_initial'), ] operations = [ migrations.CreateModel( name='AccountRequest', fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('created_time', models.DateTimeField(auto_now_add=True)), ('email', models.EmailField(max_length=254)), ('is_verified', models.BooleanField(default=False)), ('confidant_email', models.EmailField(blank=True, max_length=254)), ('is_trustable', models.BooleanField(default=False)), ('username', models.CharField(blank=True, max_length=100)), ], ), ]