Merge pull request #309 from danielquinn/mysql-hack

Add another db_index hack for MySQL.

Fixes #308.
This commit is contained in:
Daniel Quinn 2018-02-25 12:53:38 +01:00 committed by GitHub
commit 926016f1d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,6 +3,7 @@
from __future__ import unicode_literals
from django.db import migrations, models
from django.conf import settings
class Migration(migrations.Migration):
@ -15,6 +16,6 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='document',
name='content',
field=models.TextField(blank=True, db_index=True, help_text='The raw, text-only data of the document. This field is primarily used for searching.'),
field=models.TextField(blank=True, db_index=("mysql" not in settings.DATABASES["default"]["ENGINE"]), help_text='The raw, text-only data of the document. This field is primarily used for searching.'),
),
]