mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-21 04:42:22 -06:00
* Enable E501 rule * Configure ruff formatter * Reformat migration files to fix line length violations * Fix various E501 errors * Move table template code to template_code.py & ignore E501 errors * Reformat raw SQL
19 lines
489 B
Python
19 lines
489 B
Python
# Generated by Django 4.2.6 on 2023-11-06 20:23
|
|
|
|
from django.db import migrations, models
|
|
import utilities.json
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('tenancy', '0011_contactassignment_tags'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='contactassignment',
|
|
name='custom_field_data',
|
|
field=models.JSONField(blank=True, default=dict, encoder=utilities.json.CustomFieldJSONEncoder),
|
|
),
|
|
]
|