so I have this line here:
Posts::query()->order('posts.postTime DESC')->limit(10)->execute();
which should be the same as this from mySQL?
SELECT * FROM posts
ORDER BY posts
.postTime
DESC
LIMIT 0 , 10
But it doesn't seem to order it by the timestamp at all