1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Simplify SessionKey usage

This commit is contained in:
Jeremy Stretch
2017-03-14 10:58:57 -04:00
parent 9e4e3a8dfa
commit dd27950fae
3 changed files with 11 additions and 17 deletions

View File

@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.10.4 on 2017-02-03 17:10
# Generated by Django 1.10.6 on 2017-03-14 14:46
from __future__ import unicode_literals
from django.conf import settings
@@ -22,7 +22,6 @@ class Migration(migrations.Migration):
('cipher', models.BinaryField(max_length=512)),
('hash', models.CharField(editable=False, max_length=128)),
('created', models.DateTimeField(auto_now_add=True)),
('expiration_time', models.DateTimeField(blank=True, editable=False, null=True)),
('user', models.OneToOneField(editable=False, on_delete=django.db.models.deletion.CASCADE, related_name='session_key', to=settings.AUTH_USER_MODEL)),
],
options={