EvoBal/app/models/filter.rb

11 lines
247 B
Ruby

# frozen_string_literal: true
class Filter < ApplicationRecord
has_many :conditions, dependent: :destroy
has_many :operations, dependent: :destroy
validates :description, presence: true
scope :enabled, -> { where(enabled: true) }
end