2012-12-29 22:30:17 +08:00
|
|
|
from django.db import connection
|
2012-11-05 02:16:06 +08: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 16:56:30 +08:00
|
|
|
|
|
|
|
|
2014-03-02 03:06:15 +08:00
|
|
|
# Model for index_together being used only with single list
|
|
|
|
class IndexTogetherSingleList(models.Model):
|
|
|
|
headline = models.CharField(max_length=100)
|
|
|
|
pub_date = models.DateTimeField()
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
index_together = ["headline", "pub_date"]
|
|
|
|
|
2012-12-29 22:30:17 +08: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-08 00:54:30 +08:00
|
|
|
slug = models.CharField(max_length=40, unique=True)
|