|
| 1 | +# Generated by Django 4.1.5 on 2023-01-25 20:08 |
| 2 | + |
| 3 | +import utilities.json |
| 4 | +from django.db import migrations, models |
| 5 | + |
| 6 | + |
| 7 | +class Migration(migrations.Migration): |
| 8 | + |
| 9 | + dependencies = [ |
| 10 | + ("netbox_acls", "0002_alter_accesslist_options_and_more"), |
| 11 | + ] |
| 12 | + |
| 13 | + operations = [ |
| 14 | + migrations.AlterField( |
| 15 | + model_name="accesslist", |
| 16 | + name="custom_field_data", |
| 17 | + field=models.JSONField( |
| 18 | + blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder |
| 19 | + ), |
| 20 | + ), |
| 21 | + migrations.AlterField( |
| 22 | + model_name="aclextendedrule", |
| 23 | + name="custom_field_data", |
| 24 | + field=models.JSONField( |
| 25 | + blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder |
| 26 | + ), |
| 27 | + ), |
| 28 | + migrations.AlterField( |
| 29 | + model_name="aclinterfaceassignment", |
| 30 | + name="custom_field_data", |
| 31 | + field=models.JSONField( |
| 32 | + blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder |
| 33 | + ), |
| 34 | + ), |
| 35 | + migrations.AlterField( |
| 36 | + model_name="aclstandardrule", |
| 37 | + name="custom_field_data", |
| 38 | + field=models.JSONField( |
| 39 | + blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder |
| 40 | + ), |
| 41 | + ), |
| 42 | + ] |
0 commit comments