mirror of https://github.com/jumpserver/jumpserver
perf: update migrations
parent
aa52ab13ce
commit
db6fd3a177
|
@ -1,17 +0,0 @@
|
||||||
# Generated by Django 4.1.13 on 2024-12-04 08:36
|
|
||||||
|
|
||||||
from django.db import migrations
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('accounts', '0019_backupaccountautomation_and_more'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterModelOptions(
|
|
||||||
name='automationexecution',
|
|
||||||
options={'permissions': [('view_changesecretexecution', 'Can view change secret execution'), ('add_changesecretexecution', 'Can add change secret execution'), ('view_gatheraccountsexecution', 'Can view gather accounts execution'), ('add_gatheraccountsexecution', 'Can add gather accounts execution'), ('view_pushaccountexecution', 'Can view push account execution'), ('add_pushaccountexecution', 'Can add push account execution'), ('view_backupaccountexecution', 'Can view backup account execution'), ('add_backupaccountexecution', 'Can add backup account execution')], 'verbose_name': 'Automation execution', 'verbose_name_plural': 'Automation executions'},
|
|
||||||
),
|
|
||||||
]
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Generated by Django 4.1.13 on 2024-12-04 08:27
|
# Generated by Django 4.1.13 on 2024-12-04 10:49
|
||||||
|
|
||||||
import common.db.fields
|
import common.db.fields
|
||||||
import common.db.utils
|
import common.db.utils
|
||||||
|
@ -11,7 +11,7 @@ import uuid
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
("accounts", "0018_changesecretrecord_ignore_fail_and_more"),
|
("accounts", "0019_backupaccountautomation_and_more"),
|
||||||
]
|
]
|
||||||
|
|
||||||
operations = [
|
operations = [
|
||||||
|
@ -105,4 +105,30 @@ class Migration(migrations.Migration):
|
||||||
migrations.DeleteModel(
|
migrations.DeleteModel(
|
||||||
name="ServiceIntegration",
|
name="ServiceIntegration",
|
||||||
),
|
),
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name="automationexecution",
|
||||||
|
options={
|
||||||
|
"permissions": [
|
||||||
|
("view_changesecretexecution", "Can view change secret execution"),
|
||||||
|
("add_changesecretexecution", "Can add change secret execution"),
|
||||||
|
(
|
||||||
|
"view_gatheraccountsexecution",
|
||||||
|
"Can view gather accounts execution",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"add_gatheraccountsexecution",
|
||||||
|
"Can add gather accounts execution",
|
||||||
|
),
|
||||||
|
("view_pushaccountexecution", "Can view push account execution"),
|
||||||
|
("add_pushaccountexecution", "Can add push account execution"),
|
||||||
|
(
|
||||||
|
"view_backupaccountexecution",
|
||||||
|
"Can view backup account execution",
|
||||||
|
),
|
||||||
|
("add_backupaccountexecution", "Can add backup account execution"),
|
||||||
|
],
|
||||||
|
"verbose_name": "Automation execution",
|
||||||
|
"verbose_name_plural": "Automation executions",
|
||||||
|
},
|
||||||
|
),
|
||||||
]
|
]
|
Loading…
Reference in New Issue