mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-17 21:18:16 -06:00
14438 update migration
This commit is contained in:
parent
e9f28dcd4d
commit
613f9f2354
@ -141,18 +141,8 @@ class Migration(migrations.Migration):
|
|||||||
code=update_scripts,
|
code=update_scripts,
|
||||||
reverse_code=migrations.RunPython.noop
|
reverse_code=migrations.RunPython.noop
|
||||||
),
|
),
|
||||||
migrations.SeparateDatabaseAndState(
|
|
||||||
database_operations=[
|
|
||||||
migrations.RunPython(
|
migrations.RunPython(
|
||||||
code=update_event_rules,
|
code=update_event_rules,
|
||||||
reverse_code=migrations.RunPython.noop
|
reverse_code=migrations.RunPython.noop
|
||||||
),
|
),
|
||||||
],
|
|
||||||
state_operations=[
|
|
||||||
migrations.RemoveField(
|
|
||||||
model_name='eventrule',
|
|
||||||
name='action_parameters',
|
|
||||||
),
|
|
||||||
]
|
|
||||||
),
|
|
||||||
]
|
]
|
||||||
|
@ -0,0 +1,17 @@
|
|||||||
|
# Generated by Django 4.2.9 on 2024-02-13 23:20
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('extras', '0108_script_models'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name='eventrule',
|
||||||
|
name='action_parameters',
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user