class Skill < ApplicationRecord belongs_to :user default_scope -> { order(order: :asc) } scope :active, -> { where.not(order: nil) } end