('created_at',models.DateTimeField(auto_now_add=True,help_text='The date and time this model has been created',verbose_name='Date created')),
('updated_at',models.DateTimeField(auto_now=True,help_text='The date and time this model has been updated',verbose_name='Date updated')),
('key',models.CharField(default=apps.api.models.get_random_key,help_text='The key for this token. This is used for Hawk verification.',max_length=16,unique=True,verbose_name='Key')),
('secret',django_cryptography.fields.encrypt(models.CharField(default=apps.api.models.get_random_secret,help_text='The secret for this token. This is used for Hawk signing.',max_length=64,verbose_name='Secret'))),
('last_access',models.DateTimeField(auto_now_add=True,help_text='The date and time when this token is last used.',verbose_name='Last access')),
('user',models.OneToOneField(help_text='Select the user for this token',on_delete=django.db.models.deletion.CASCADE,to=settings.AUTH_USER_MODEL)),