mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
21 lines
630 B
Python
21 lines
630 B
Python
![]() |
# Generated by Django 4.1.10 on 2023-08-11 17:16
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.db.models.deletion
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('extras', '0098_webhook_custom_field_data_webhook_tags'),
|
||
|
('virtualization', '0035_virtualmachine_interface_count'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='virtualmachine',
|
||
|
name='config_template',
|
||
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, related_name='%(class)ss', to='extras.configtemplate'),
|
||
|
),
|
||
|
]
|