EvoBal/app/models/operation.rb

8 lines
139 B
Ruby
Raw Normal View History

2021-01-20 13:46:11 +01:00
# frozen_string_literal: true
class Operation < ApplicationRecord
belongs_to :filter
scope :enabled, -> { where(enabled: true) }
2021-01-20 13:46:11 +01:00
end