8 lines
183 B
Ruby
8 lines
183 B
Ruby
|
class PlowSetting
|
||
|
include Mongoid::Document
|
||
|
include Mongoid::Timestamps
|
||
|
|
||
|
field :concurrent, type: Integer, :default => 1
|
||
|
field :ip, type: String
|
||
|
field :url, type: String
|
||
|
end
|