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.
19 lines
445 B
19 lines
445 B
# Generated by Django 3.1.6 on 2021-08-06 02:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0035_auto_20210526_1100'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='user',
|
|
name='feishu_id',
|
|
field=models.CharField(default=None, max_length=128, null=True, unique=True, verbose_name='FeiShu'),
|
|
),
|
|
]
|