mirror of
http://ghproxy.cn/https://github.com/multunus/onemdm-server
synced 2025-12-06 10:14:59 +00:00
10 lines
164 B
Ruby
10 lines
164 B
Ruby
class Installation < ActiveRecord::Base
|
|
enum status: [:pushed, :downloaded, :cancelled, :installed]
|
|
|
|
|
|
|
|
belongs_to :device
|
|
belongs_to :batch_installation
|
|
|
|
end
|