From bbd49747317927253e755aa25970082f8931f3d3 Mon Sep 17 00:00:00 2001 From: Paarth Shah Date: Tue, 20 Aug 2024 17:06:15 -0700 Subject: [PATCH] Code review: remove index name too --- easyaudit/migrations/0004_auto_20170620_1354.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/easyaudit/migrations/0004_auto_20170620_1354.py b/easyaudit/migrations/0004_auto_20170620_1354.py index b5ca5db..823c6da 100644 --- a/easyaudit/migrations/0004_auto_20170620_1354.py +++ b/easyaudit/migrations/0004_auto_20170620_1354.py @@ -13,6 +13,6 @@ class Migration(migrations.Migration): operations = [ migrations.AddIndex( model_name='crudevent', - index=models.Index(fields=['object_id', 'content_type'], name='easyaudit_c_object__82020b_idx'), + index=models.Index(fields=['object_id', 'content_type']), ), ]