mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-06-27 15:27:11 +00:00
* perf: 修改账号生成 * perf: 修改账号模版支持策略 * perf: 修改特殊字符数量 * perf: 修改 model 继承 * perf: 修改顺序 * perf: 修改 requirements * perf: 修改翻译 * perf: 修改随机生成密码 * perf: 修改密钥生成 * perf: 修复 bug --------- Co-authored-by: ibuler <ibuler@qq.com>
19 lines
433 B
Python
19 lines
433 B
Python
# Generated by Django 4.1.10 on 2023-09-18 08:09
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('accounts', '0015_auto_20230825_1120'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='accounttemplate',
|
|
name='password_rules',
|
|
field=models.JSONField(default=dict, verbose_name='Password rules'),
|
|
),
|
|
]
|