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.
28 lines
827 B
28 lines
827 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2018-06-06 07:05
|
|
from __future__ import unicode_literals
|
|
|
|
import common.utils
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('perms', '0005_migrate_data_20180411_1144'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='assetpermission',
|
|
name='date_expired',
|
|
field=models.DateTimeField(db_index=True, default=common.utils.date_expired_default, verbose_name='Date expired'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='assetpermission',
|
|
name='date_start',
|
|
field=models.DateTimeField(db_index=True, default=django.utils.timezone.now, verbose_name='Date start'),
|
|
),
|
|
]
|