mirror of https://github.com/jumpserver/jumpserver
21 lines
455 B
Python
21 lines
455 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11 on 2017-12-31 16:46
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('users', '0002_auto_20171225_1157'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='user',
|
||
|
name='is_first_login',
|
||
|
field=models.BooleanField(default=True),
|
||
|
),
|
||
|
]
|