Made indexes tests use required_db_features.
This commit is contained in:
parent
2d2fbc3a70
commit
f7806193e6
|
@ -1,4 +1,4 @@
|
||||||
from django.db import connection, models
|
from django.db import models
|
||||||
|
|
||||||
|
|
||||||
class CurrentTranslation(models.ForeignObject):
|
class CurrentTranslation(models.ForeignObject):
|
||||||
|
@ -47,13 +47,14 @@ class IndexTogetherSingleList(models.Model):
|
||||||
index_together = ["headline", "pub_date"]
|
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):
|
class IndexedArticle(models.Model):
|
||||||
headline = models.CharField(max_length=100, db_index=True)
|
headline = models.CharField(max_length=100, db_index=True)
|
||||||
body = models.TextField(db_index=True)
|
body = models.TextField(db_index=True)
|
||||||
slug = models.CharField(max_length=40, unique=True)
|
slug = models.CharField(max_length=40, unique=True)
|
||||||
|
|
||||||
|
class Meta:
|
||||||
|
required_db_features = {'supports_index_on_text_field'}
|
||||||
|
|
||||||
|
|
||||||
class IndexedArticle2(models.Model):
|
class IndexedArticle2(models.Model):
|
||||||
headline = models.CharField(max_length=100)
|
headline = models.CharField(max_length=100)
|
||||||
|
|
Loading…
Reference in New Issue