mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
8 lines
181 B
Ruby
8 lines
181 B
Ruby
|
class Institution < ApplicationRecord
|
||
|
belongs_to :family
|
||
|
has_many :accounts, dependent: :nullify
|
||
|
has_one_attached :logo
|
||
|
|
||
|
scope :alphabetically, -> { order(name: :asc) }
|
||
|
end
|