我有一个带有索引的集合:created_at(在这种特殊情况下应该是一个日期)
从rails保存条目然后按日期检索的正确方法是什么?
我正在尝试类似的东西:
模型:字段 :created_at, :type => 时间
脚本:
Col.create(:created_at => Time.parse(another_model.created_at).to_s
和
Col.find(:all, :conditions => { :created_at => Time.parse(same thing) })
它没有返回任何东西