pdfshop/app/models/payment_method.rb

8 lines
225 B
Ruby

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