Coverage for /home/marco/Code/django-simple-captcha/captcha/migrations/0001_initial.py: 100.00%
5 statements
« prev ^ index » next coverage.py v7.6.5, created at 2024-11-15 09:22 +0100
« prev ^ index » next coverage.py v7.6.5, created at 2024-11-15 09:22 +0100
1from __future__ import unicode_literals
3from django.db import models, migrations
6class Migration(migrations.Migration):
7 dependencies = []
9 operations = [
10 migrations.CreateModel(
11 name="CaptchaStore",
12 fields=[
13 (
14 "id",
15 models.AutoField(
16 verbose_name="ID",
17 serialize=False,
18 auto_created=True,
19 primary_key=True,
20 ),
21 ),
22 ("challenge", models.CharField(max_length=32)),
23 ("response", models.CharField(max_length=32)),
24 ("hashkey", models.CharField(unique=True, max_length=40)),
25 ("expiration", models.DateTimeField()),
26 ],
27 options={},
28 bases=(models.Model,),
29 )
30 ]