mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 02:09:39 +02:00
10 lines
158 B
Ruby
10 lines
158 B
Ruby
class Account < ActiveRecord::Base
|
|
belongs_to :registrar
|
|
has_many :account_activities
|
|
|
|
CASH = 'cash'
|
|
|
|
def activities
|
|
account_activities
|
|
end
|
|
end
|