mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-09 21:32:17 -06:00
17 lines
357 B
Python
17 lines
357 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dcim', '0214_platform_rebuild'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='rackreservation',
|
|
name='status',
|
|
field=models.CharField(default='active', max_length=50),
|
|
),
|
|
]
|