LoginSignup
0
0

More than 3 years have passed since last update.

データの並び替え降順、昇順/Railsでまとめてみた

Posted at

投稿したデータや記事の並び替えを変える際に、descが降順?降順?で毎回ググって調べていたのでまとめました。

board.rb
class Board < ApplicationRecord
  scope :desc, -> { order(created_at: :desc) } #作成の降順
  scope :asc, -> { order(id: :asc) } #idの昇順 デフォルトでasc(昇順)で表記されるので明示的に書くことは少ない
end
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0