-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
models: Add covering index for Patch.hash
Signed-off-by: Stephen Finucane <[email protected]> Closes: #579 Cc: Mauro Carvalho Chehab <[email protected]>
- Loading branch information
1 parent
c443cd9
commit 801e5bd
Showing
2 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
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 @@ | ||
import patchwork.fields | ||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
('patchwork', '0046_patch_comment_events'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='patch', | ||
name='hash', | ||
field=patchwork.fields.HashField( | ||
blank=True, db_index=True, max_length=40, null=True | ||
), | ||
), | ||
] |
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