1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
netbox-community-netbox/netbox/extras/migrations/0052_delete_customfieldchoice_customfieldvalue.py

18 lines
338 B
Python
Raw Normal View History

2020-08-21 15:53:38 -04:00
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('extras', '0051_migrate_customfields'),
2020-08-21 15:53:38 -04:00
]
operations = [
migrations.DeleteModel(
name='CustomFieldChoice',
),
2020-08-21 15:53:38 -04:00
migrations.DeleteModel(
name='CustomFieldValue',
),
]