Skip to content

Commit

Permalink
16136 fix migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
arthanson committed Sep 26, 2024
1 parent b80cdd8 commit 80296fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
4 changes: 0 additions & 4 deletions netbox/extras/migrations/0002_squashed_0059.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,6 @@ class Migration(migrations.Migration):
name='webhook',
unique_together={('payload_url', 'type_create', 'type_update', 'type_delete')},
),
migrations.AlterIndexTogether(
name='taggeditem',
index_together={('content_type', 'object_id')},
),
migrations.AlterUniqueTogether(
name='exporttemplate',
unique_together={('content_type', 'name')},
Expand Down
5 changes: 2 additions & 3 deletions netbox/extras/migrations/0087_squashed_0098.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,9 @@ class Migration(migrations.Migration):
name='object_types',
field=models.ManyToManyField(blank=True, related_name='+', to='contenttypes.contenttype'),
),
migrations.RenameIndex(
migrations.AddIndex(
model_name='taggeditem',
new_name='extras_tagg_content_717743_idx',
old_fields=('content_type', 'object_id'),
index=models.Index(fields=['content_type', 'object_id'], name='extras_tagg_content_717743_idx'),
),
migrations.CreateModel(
name='Bookmark',
Expand Down

0 comments on commit 80296fa

Please sign in to comment.