2012-12-29 14:30:17 +00:00
|
|
|
from django.db import connection
|
2012-11-04 18:16:06 +00:00
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
|
|
|
|
class Article(models.Model):
|
|
|
|
headline = models.CharField(max_length=100)
|
|
|
|
pub_date = models.DateTimeField()
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
index_together = [
|
|
|
|
["headline", "pub_date"],
|
|
|
|
]
|
2012-12-18 08:56:30 +00:00
|
|
|
|
|
|
|
|
2012-12-29 14:30:17 +00:00
|
|
|
# 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)
|
2013-01-07 16:54:30 +00:00
|
|
|
slug = models.CharField(max_length=40, unique=True)
|