mirror of
https://github.com/Hopiu/wagtail.git
synced 2026-05-19 04:31:11 +00:00
Fixes the name of indexes in migrations.
This commit is contained in:
parent
dbe89153a6
commit
1b9b409d0a
1 changed files with 2 additions and 2 deletions
|
|
@ -38,12 +38,12 @@ class Migration(migrations.Migration):
|
|||
model_name='indexentry',
|
||||
index=django.contrib.postgres.indexes.GinIndex(
|
||||
fields=['autocomplete'],
|
||||
name='postgres_search_autocomplete'),
|
||||
name='postgres_se_autocom_ee48c8_gin'),
|
||||
),
|
||||
migrations.AddIndex(
|
||||
model_name='indexentry',
|
||||
index=django.contrib.postgres.indexes.GinIndex(
|
||||
fields=['body'],
|
||||
name='postgres_search_body'),
|
||||
name='postgres_se_body_aaaa99_gin'),
|
||||
),
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in a new issue