1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Generated by Django 4.0.6 on 2022-09-05 23:48
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('users', '0006_delete_captchastore'),
]
operations = [
migrations.CreateModel(
name='CaptchaStore',
fields=[
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('captcha_string', models.CharField(max_length=6)),
('csrf_token', models.CharField(max_length=100)),
('created_at', models.DateTimeField(auto_now_add=True)),
],
),
]
|