mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
9 lines
258 B
Ruby
9 lines
258 B
Ruby
module Legacy
|
|
class DomainHistory < Db
|
|
self.table_name = :domain_history
|
|
|
|
belongs_to :domain, foreign_key: :id
|
|
belongs_to :history, foreign_key: :historyid
|
|
has_one :object_history, foreign_key: :historyid, primary_key: :historyid
|
|
end
|
|
end
|