mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
545 B
22 lines
545 B
6 years ago
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11 on 2018-02-27 09:13
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.utils.timezone
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('terminal', '0006_auto_20180123_1037'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='session',
|
||
|
name='date_last_active',
|
||
|
field=models.DateTimeField(default=django.utils.timezone.now, verbose_name='Date last active'),
|
||
|
),
|
||
|
]
|