在Rails中,如何在迁移到具有特定排序顺序的Postgres数据库时添加索引?
最终想要解决这个问题:
CREATE INDEX index_apps_kind_release_date_rating ON apps(kind, itunes_release_date DESC, rating_count DESC);
但是现在我的迁移中有这个:
add_index :apps, [:kind, 'itunes_release_date desc', 'rating_count desc'], name: 'index_apps_kind_release_date_rating'
这吐出了这个:
CREATE INDEX "index_apps_kind_release_date_rating" ON "apps" ("kind", "itunes_release_date desc", "rating_count desc")
出了哪些错误:
PG::Error: ERROR: column "itunes_release_date desc" does not exist
答案 0 :(得分:13)
Rails现在支持在迁移中指定索引顺序:
def change
add_index(:accounts, [:branch_id, :party_id, :surname], order: {branch_id: :desc, party_id: :asc})
end
来自http://apidock.com/rails/ActiveRecord/ConnectionAdapters/SchemaStatements/add_index
答案 1 :(得分:2)
看起来Rails不支持有序索引。
我怀疑你可以安全地删除两个desc
,btw:kind
在你的where子句中,基于你之前的问题,所以PG应该高兴地以相反的顺序查找索引。
答案 2 :(得分:2)
您无需在索引中指定DESC
。它将为使用此特定排序的查询提供小的速度优势,但通常 - 索引可用于列的任何存储。