This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
s2forums/apps/captcha/models.py
2009-01-05 14:30:08 +02:00

6 lines
244 B
Python

from django.db import models
class Solution(models.Model):
hash = models.CharField('Hash', max_length=40)
value = models.CharField('Value', max_length=20)
ctime = models.DateTimeField('Date created', blank=True, auto_now_add=True)