pdfshop/app/models/shipping.rb

8 lines
218 B
Ruby

# shipping class
class Shipping < ApplicationRecord
has_many :orders
scope :by_default, -> { where(default: true) }
scope :available, -> { where(active: true) }
scope :by_name_asc, -> { order('name ASC') }
end