mirror of
https://github.com/internetee/registry.git
synced 2025-07-23 11:16:00 +02:00
7 lines
167 B
Ruby
7 lines
167 B
Ruby
module Legacy
|
|
class Contact < Db
|
|
self.table_name = :contact
|
|
belongs_to :object_registry, foreign_key: :id
|
|
belongs_to :object, foreign_key: :id
|
|
end
|
|
end
|