EvoBal/app/models/condition.rb

8 lines
139 B
Ruby

# frozen_string_literal: true
class Condition < ApplicationRecord
belongs_to :filter
scope :enabled, -> { where(enabled: true) }
end