mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
6 lines
165 B
Ruby
6 lines
165 B
Ruby
|
class DataEnrichment < ApplicationRecord
|
||
|
belongs_to :enrichable, polymorphic: true
|
||
|
|
||
|
enum :source, { rule: "rule", plaid: "plaid", synth: "synth", ai: "ai" }
|
||
|
end
|