1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

#524 - Added power utilization graphs to power feeds, devices, and racks

This commit is contained in:
John Anderson
2019-06-16 06:11:32 -04:00
parent 8b3ec625f6
commit 2eeffce924
7 changed files with 102 additions and 8 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 2.2.1 on 2019-06-16 07:11
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dcim', '0073_interface_form_factor_to_type'),
]
operations = [
migrations.AddField(
model_name='powerfeed',
name='available_power',
field=models.PositiveSmallIntegerField(default=0),
),
]