susioma/smsauth/models.py

6 lines
196 B
Python
Raw Permalink Normal View History

2019-10-27 15:20:28 +00:00
from django.db import models
class Token(models.Model):
token = models.CharField(max_length=6)
sent = models.DateTimeField(auto_now_add=True)
used = models.BooleanField(default=False)