mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Converted Circuit port_speed to PositiveIntegerField
This commit is contained in:
25
netbox/circuits/migrations/0002_auto_20160620_1929.py
Normal file
25
netbox/circuits/migrations/0002_auto_20160620_1929.py
Normal file
@@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9.7 on 2016-06-20 19:29
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('circuits', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='circuit',
|
||||
name='commit_rate',
|
||||
field=models.PositiveIntegerField(blank=True, null=True, verbose_name=b'Commit rate (Kbps)'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='circuit',
|
||||
name='port_speed',
|
||||
field=models.PositiveIntegerField(verbose_name=b'Port speed (Kbps)'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user