forked from soynatan/django-easy-audit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: replace index_together with indexes
- Loading branch information
1 parent
01dcf49
commit d31ca33
Showing
2 changed files
with
21 additions
and
1 deletion.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
easyaudit/migrations/0018_rename_crudevent_object_id_content_type_index.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Generated by Django 4.2.3 on 2023-07-26 18:41 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('easyaudit', '0017_alter_requestevent_datetime'), | ||
] | ||
|
||
operations = [ | ||
migrations.RenameIndex( | ||
model_name='crudevent', | ||
new_name='easyaudit_c_object__82020b_idx', | ||
old_fields=('object_id', 'content_type'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters