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

Closes #2292: Remove the deprecated UserAction model

This commit is contained in:
Jeremy Stretch
2018-08-14 12:13:43 -04:00
parent 980d62d579
commit 5f66710fcd
11 changed files with 27 additions and 200 deletions

View File

@@ -0,0 +1,24 @@
# Generated by Django 2.0.8 on 2018-08-14 16:10
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('extras', '0014_configcontexts'),
]
operations = [
migrations.RemoveField(
model_name='useraction',
name='content_type',
),
migrations.RemoveField(
model_name='useraction',
name='user',
),
migrations.DeleteModel(
name='UserAction',
),
]