Made indexes tests use required_db_features.

This commit is contained in:
Mariusz Felisiak 2020-09-22 10:29:59 +02:00 committed by GitHub
parent 2d2fbc3a70
commit f7806193e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 7 deletions

View File

@ -1,4 +1,4 @@
from django.db import connection, models
from django.db import models
class CurrentTranslation(models.ForeignObject):
@ -47,12 +47,13 @@ class IndexTogetherSingleList(models.Model):
index_together = ["headline", "pub_date"]
# Indexing a TextField on Oracle or MySQL results in index creation error.
if connection.vendor == 'postgresql':
class IndexedArticle(models.Model):
headline = models.CharField(max_length=100, db_index=True)
body = models.TextField(db_index=True)
slug = models.CharField(max_length=40, unique=True)
class IndexedArticle(models.Model):
headline = models.CharField(max_length=100, db_index=True)
body = models.TextField(db_index=True)
slug = models.CharField(max_length=40, unique=True)
class Meta:
required_db_features = {'supports_index_on_text_field'}
class IndexedArticle2(models.Model):