mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
19 lines
427 B
Python
19 lines
427 B
Python
|
# Generated by Django 4.1.1 on 2022-10-27 14:01
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('dcim', '0163_rack_devicetype_moduletype_weights'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='rack',
|
||
|
name='mounting_depth',
|
||
|
field=models.PositiveSmallIntegerField(blank=True, null=True),
|
||
|
),
|
||
|
]
|