mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-12 11:33:14 +00:00
* [Update] 任务区分org * [Update] 修改翻译 * [Update] 使用id而不是hostname * [Update] 执行命令 * [Update] 修改一些东西 * [Update] 暂存 * [Update] 用户执行命令 * [Update] 添加资产授权模块-tree * [Update] 暂时这样 * [Update] 批量命令执行 * [Update] 修改表结构 * [Update] 更新翻译 * [Update] 删除cloud模块无效中文翻译
21 lines
525 B
Python
21 lines
525 B
Python
# Generated by Django 2.1.4 on 2018-12-07 09:44
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('assets', '0023_auto_20181016_1650'),
|
|
('ops', '0003_auto_20181207_1744'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='adhoc',
|
|
name='run_as',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='assets.SystemUser'),
|
|
),
|
|
]
|