Tesis 1.0.0
Loading...
Searching...
No Matches
0001_initial.py
Go to the documentation of this file.
1# Generated by Django 4.2 on 2025-06-16 20:33
2
3from django.db import migrations, models
4
5
6class Migration(migrations.Migration):
7
8 initial = True
9
10 dependencies = [
11 ]
12
13 operations = [
14 migrations.CreateModel(
15 name='User2FA',
16 fields=[
17 ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
18 ('email', models.EmailField(max_length=254, unique=True)),
19 ('secret', models.CharField(max_length=32)),
20 ('enabled', models.BooleanField(default=False)),
21 ],
22 ),
23 ]