mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-31 02:59:39 +02:00
8 lines
143 B
Ruby
8 lines
143 B
Ruby
|
class Rule::Trigger < ApplicationRecord
|
||
|
self.table_name = "rule_triggers"
|
||
|
|
||
|
belongs_to :rule
|
||
|
|
||
|
validates :trigger_type, presence: true
|
||
|
end
|