Compare commits

...

6 Commits

Author SHA1 Message Date
Arthur
1fb6507cc1 #14329 Improve diffs for custom_fields
CI / build (20.x, 3.13) (push) Failing after 16s
CI / build (20.x, 3.12) (push) Failing after 18s
CI / build (20.x, 3.14) (push) Failing after 14s
2026-03-17 09:44:01 -07:00
Arthur
ca021e808b #14329 Improve diffs for custom_fields
CI / build (20.x, 3.13) (push) Failing after 15s
CI / build (20.x, 3.12) (push) Failing after 17s
CI / build (20.x, 3.14) (push) Failing after 14s
2026-03-17 09:14:41 -07:00
Arthur
45b53ee036 #14329 Improve diffs for custom_fields 2026-03-17 09:03:57 -07:00
Arthur
992630d670 #14329 Improve diffs for custom_fields 2026-03-17 08:44:18 -07:00
Arthur
c8cd5fd6cd #14329 Improve diffs for custom_fields 2026-03-16 17:14:26 -07:00
Arthur
6292d2672f #21662 Increase rf_channel_frequency Precision 2026-03-16 17:04:04 -07:00
2 changed files with 24 additions and 1 deletions
@@ -0,0 +1,23 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dcim', '0228_cable_bundle'),
]
operations = [
migrations.AlterField(
model_name='interface',
name='rf_channel_frequency',
field=models.DecimalField(
blank=True,
decimal_places=3,
help_text='Populated by selected channel (if set)',
max_digits=7,
null=True,
verbose_name='channel frequency (MHz)',
),
),
]
+1 -1
View File
@@ -808,7 +808,7 @@ class Interface(
)
rf_channel_frequency = models.DecimalField(
max_digits=7,
decimal_places=2,
decimal_places=3,
blank=True,
null=True,
verbose_name=_('channel frequency (MHz)'),