投稿したデータや記事の並び替えを変える際に、descが降順?降順?で毎回ググって調べていたのでまとめました。
board.rb
class Board < ApplicationRecord
scope :desc, -> { order(created_at: :desc) } #作成の降順
scope :asc, -> { order(id: :asc) } #idの昇順 デフォルトでasc(昇順)で表記されるので明示的に書くことは少ない
end
Go to list of users who liked
More than 3 years have passed since last update.
投稿したデータや記事の並び替えを変える際に、descが降順?降順?で毎回ググって調べていたのでまとめました。
class Board < ApplicationRecord
scope :desc, -> { order(created_at: :desc) } #作成の降順
scope :asc, -> { order(id: :asc) } #idの昇順 デフォルトでasc(昇順)で表記されるので明示的に書くことは少ない
end
Register as a new user and use Qiita more conveniently
Go to list of users who liked