X-Git-Url: https://git.mdrn.pl/cas.git/blobdiff_plain/213ac837c03049f290b7f0035659641f9fa3411a..35548a2c9ae7efae920ec7c90addad272b5520c3:/src/ssh_keys/migrations/0004_sshkey_last_seen_at.py diff --git a/src/ssh_keys/migrations/0004_sshkey_last_seen_at.py b/src/ssh_keys/migrations/0004_sshkey_last_seen_at.py new file mode 100644 index 0000000..9765120 --- /dev/null +++ b/src/ssh_keys/migrations/0004_sshkey_last_seen_at.py @@ -0,0 +1,18 @@ +# Generated by Django 2.1.7 on 2019-04-01 09:26 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('ssh_keys', '0003_auto_20190401_0923'), + ] + + operations = [ + migrations.AddField( + model_name='sshkey', + name='last_seen_at', + field=models.DateTimeField(editable=False, null=True, verbose_name='last seen at'), + ), + ]