2023-04-21 16:09:36 +00:00
|
|
|
class PlowSetting
|
|
|
|
include Mongoid::Document
|
|
|
|
include Mongoid::Timestamps
|
|
|
|
|
|
|
|
field :concurrent, type: Integer, :default => 1
|
|
|
|
field :ip, type: String
|
|
|
|
field :url, type: String
|
2023-04-23 09:27:04 +00:00
|
|
|
field :rate, type: Integer, :default => 5000
|
2023-04-21 16:09:36 +00:00
|
|
|
end
|