Skip to content

Commit

Permalink
Fix migrating db that isn't past squashed migration
Browse files Browse the repository at this point in the history
  • Loading branch information
PaarthShah committed Sep 15, 2024
1 parent 94b2c57 commit da2eea3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions easyaudit/migrations/0004_auto_20170620_1354.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Generated by Django 1.11.1 on 2017-06-20 13:54

from django.db import migrations
from django.db import migrations, models


class Migration(migrations.Migration):
Expand All @@ -11,8 +11,8 @@ class Migration(migrations.Migration):
]

operations = [
migrations.AlterIndexTogether(
name='crudevent',
index_together=set([('object_id', 'content_type')]),
migrations.AddIndex(
model_name='crudevent',
index=models.Index(fields=['object_id', 'content_type'], name='easyaudit_c_object__82020b_idx'),
),
]

0 comments on commit da2eea3

Please sign in to comment.