mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-23 03:58:45 -06:00
Fix migrations conflict
This commit is contained in:
18
netbox/dcim/migrations/0192_inventoryitem_status.py
Normal file
18
netbox/dcim/migrations/0192_inventoryitem_status.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.0.9 on 2024-09-26 20:19
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('dcim', '0191_module_bay_rebuild'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='inventoryitem',
|
||||
name='status',
|
||||
field=models.CharField(default='active', max_length=50),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user