1
0

0001_initial.py 893 B

12345678910111213141516171819202122232425262728293031
  1. from __future__ import unicode_literals
  2. from django.db import models, migrations
  3. class Migration(migrations.Migration):
  4. dependencies = []
  5. operations = [
  6. migrations.CreateModel(
  7. name="CaptchaStore",
  8. fields=[
  9. (
  10. "id",
  11. models.AutoField(
  12. verbose_name="ID",
  13. serialize=False,
  14. auto_created=True,
  15. primary_key=True,
  16. ),
  17. ),
  18. ("challenge", models.CharField(max_length=32)),
  19. ("response", models.CharField(max_length=32)),
  20. ("hashkey", models.CharField(unique=True, max_length=40)),
  21. ("expiration", models.DateTimeField()),
  22. ],
  23. options={},
  24. bases=(models.Model,),
  25. )
  26. ]