Akhirnya berhasil! Tidak terlalu cantik (dan saya berharap ada solusi yang lebih bersih) tetapi ini berhasil:
>> Payment.all(:conditions =>
["Date((payments.created_at at time zone 'UTC')
at time zone :timezone) >= :start_date and
Date((payments.created_at at time zone 'UTC')
at time zone :timezone) <= :end_date",
:start_date => start_date, :end_date => end_date,
:timezone => 'Asia/Katmandu'])
Tidak terlalu suka harus melakukan ini:
Date((payments.created_at at time zone 'UTC') at time zone 'Asia/Katmandu')
Kenapa postgresql tidak membiarkan Anda melakukan ini?
Date(payments.created_at at 'Asia/Katmandu')