mirror of
https://github.com/internetee/registry.git
synced 2025-05-17 01:47:18 +02:00
9 lines
220 B
Ruby
9 lines
220 B
Ruby
module Legacy
|
|
class ObjectState < Db
|
|
self.table_name = :object_state
|
|
|
|
belongs_to :enum_object_state, foreign_key: :state_id
|
|
|
|
delegate :name, to: :enum_object_state, prefix: false, allow_nil: true
|
|
end
|
|
end
|