Revert "16136 fix migrations"

This reverts commit 80296fa1ec.
This commit is contained in:
Arthur Hanson 2024-09-26 11:52:09 -07:00
parent 80296fa1ec
commit b6b36c51b1
2 changed files with 7 additions and 2 deletions

View File

@ -131,6 +131,10 @@ 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')},

View File

@ -98,9 +98,10 @@ class Migration(migrations.Migration):
name='object_types',
field=models.ManyToManyField(blank=True, related_name='+', to='contenttypes.contenttype'),
),
migrations.AddIndex(
migrations.RenameIndex(
model_name='taggeditem',
index=models.Index(fields=['content_type', 'object_id'], name='extras_tagg_content_717743_idx'),
new_name='extras_tagg_content_717743_idx',
old_fields=('content_type', 'object_id'),
),
migrations.CreateModel(
name='Bookmark',