mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-09-06 18:00:57 +00:00
feat: 密码计划邮件提醒
This commit is contained in:
19
apps/users/migrations/0037_user_secret_key.py
Normal file
19
apps/users/migrations/0037_user_secret_key.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# Generated by Django 3.1.13 on 2021-12-07 08:23
|
||||
|
||||
import common.fields.model
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('users', '0036_user_feishu_id'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='user',
|
||||
name='secret_key',
|
||||
field=common.fields.model.EncryptCharField(blank=True, max_length=256, null=True, verbose_name='Secret key'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user