mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-22 12:06:53 -06:00
Consolidate custom field migrations
This commit is contained in:
parent
8a8ada8529
commit
2264937f81
@ -19,4 +19,9 @@ class Migration(migrations.Migration):
|
||||
name='group_name',
|
||||
field=models.CharField(blank=True, max_length=50),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='customfield',
|
||||
name='ui_visibility',
|
||||
field=models.CharField(default='read-write', max_length=50),
|
||||
),
|
||||
]
|
@ -7,7 +7,7 @@ class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dcim', '0156_location_status'),
|
||||
('extras', '0075_customfield_ui_visibility'),
|
||||
('extras', '0074_customfield_extensions'),
|
||||
]
|
||||
|
||||
operations = [
|
@ -1,18 +0,0 @@
|
||||
# Generated by Django 4.0.4 on 2022-05-23 20:23
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('extras', '0074_customfield_group_name'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='customfield',
|
||||
name='ui_visibility',
|
||||
field=models.CharField(default='read-write', max_length=50),
|
||||
),
|
||||
]
|
@ -9,7 +9,7 @@ import taggit.managers
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('extras', '0076_configcontext_locations'),
|
||||
('extras', '0075_configcontext_locations'),
|
||||
('contenttypes', '0002_remove_content_type_name'),
|
||||
('tenancy', '0007_contact_link'),
|
||||
('ipam', '0058_ipaddress_nat_inside_nonunique'),
|
||||
|
Loading…
Reference in New Issue
Block a user