0
我想從以下(簡化)表結果的排序列表:複雜的Rails訂購
create_table "evaluations", :force => true do |t|
t.datetime "completed_at"
t.datetime "created_at", :null => false
end
我想completed_at
(DESC)命令,如果completed_at
設置(NOT NULL)。如果completed_at
爲空,我想要訂購created_at
(DESC)。
有沒有一種方法可以通過模型與Rails 3做到這一點?
我使用的SQLite我的本地機器,但皮克在服務器上(我會切換到很快就兩個頁碼。)