In suggestion.rb I have the following code:
index title: "Sugestões" do
column "Título", :title
column "Autor", :user
column "Aprovado", :published
actions
end
The last column: published is boolean type. I want to sort this index by published: false.
Vlw!