mirror of
https://github.com/lucaspalomodevelop/netbox-acls.git
synced 2026-03-12 23:27:23 +00:00
Address Missing Migrations for NetBox 3.4 / plugin version 1.2 (#118)
* add missing netbox 3.4 migrations * bump version to 1.2.2
This commit is contained in:
parent
b74e8db8e3
commit
9611816fe8
@ -40,7 +40,7 @@ Each Plugin Version listed below has been tested with its corresponding NetBox V
|
||||
|:--------------:|:--------------:|
|
||||
| 3.2 | 1.0.1 |
|
||||
| 3.3 | 1.1.0 |
|
||||
| 3.4 | 1.2.1 |
|
||||
| 3.4 | 1.2.2 |
|
||||
|
||||
## Installing
|
||||
|
||||
|
||||
42
netbox_acls/migrations/0003_netbox_acls.py
Normal file
42
netbox_acls/migrations/0003_netbox_acls.py
Normal file
@ -0,0 +1,42 @@
|
||||
# Generated by Django 4.1.5 on 2023-01-25 20:08
|
||||
|
||||
import utilities.json
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("netbox_acls", "0002_alter_accesslist_options_and_more"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="accesslist",
|
||||
name="custom_field_data",
|
||||
field=models.JSONField(
|
||||
blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="aclextendedrule",
|
||||
name="custom_field_data",
|
||||
field=models.JSONField(
|
||||
blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="aclinterfaceassignment",
|
||||
name="custom_field_data",
|
||||
field=models.JSONField(
|
||||
blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder
|
||||
),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name="aclstandardrule",
|
||||
name="custom_field_data",
|
||||
field=models.JSONField(
|
||||
blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder
|
||||
),
|
||||
),
|
||||
]
|
||||
@ -1 +1 @@
|
||||
__version__ = "1.2.1"
|
||||
__version__ = "1.2.2"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user