client_management/app/models/plow_setting.rb

8 lines
183 B
Ruby
Raw Normal View History

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
end