9 lines
146 B
Ruby
9 lines
146 B
Ruby
|
class PropertyLocation
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
|
||
|
field :title, :localize => true
|
||
|
has_many :properties
|
||
|
|
||
|
end
|