mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-24 07:39:39 +02:00
8 lines
184 B
Ruby
8 lines
184 B
Ruby
|
class Rule < ApplicationRecord
|
||
|
belongs_to :family
|
||
|
has_many :triggers, dependent: :destroy
|
||
|
has_many :actions, dependent: :destroy
|
||
|
|
||
|
validates :effective_date, presence: true
|
||
|
end
|