Pregunta

I am trying to order my posts based on the created date ( newest to oldest ) so i do this :

@posts = Post.order('created_at DESC')

But the posts are not being affected by this. What can the problem be ?

¿Fue útil?

Solución

Try something like this

@posts = Post.order(:created_at)

This way you order your data according to the created_at property

and if you want reversed order then

@posts = Post.order(:created_at).reverse
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top