SHA256 hashes support for SSH keys.
[cas.git] / src / ssh_keys / migrations / 0006_sshkey_sha256_hash.py
1 # Generated by Django 2.2.8 on 2020-10-19 15:23
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     dependencies = [
9         ('ssh_keys', '0005_auto_20190401_0938'),
10     ]
11
12     operations = [
13         migrations.AddField(
14             model_name='sshkey',
15             name='sha256_hash',
16             field=models.CharField(default='', editable=False, max_length=128, verbose_name='SHA256 hash'),
17             preserve_default=False,
18         ),
19     ]