mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-08-02 07:03:40 +00:00
fix: key=0 修改到 key=1 时 parent_key 没有更新
This commit is contained in:
parent
2b31cb2806
commit
f146873501
@ -42,7 +42,9 @@ def change_key0_to_key1(apps, schema_editor):
|
||||
key_list = n.key.split(':')
|
||||
key_list[0] = '1'
|
||||
new_key = ':'.join(key_list)
|
||||
new_parent_key = ':'.join(key_list[:-1])
|
||||
n.key = new_key
|
||||
n.parent_key = new_parent_key
|
||||
n.save()
|
||||
print('--> Modify key ( {} > {} )'.format(old_key, new_key))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user