mirror of
http://ghproxy.cn/https://github.com/multunus/onemdm-server
synced 2025-12-06 10:14:59 +00:00
7 lines
212 B
Ruby
7 lines
212 B
Ruby
class AddHeartbeatsDetailsToDevices < ActiveRecord::Migration
|
|
def change
|
|
add_column :devices, :heartbeats_count, :integer, default: 0
|
|
add_column :devices, :last_heartbeat_recd_time, :datetime
|
|
end
|
|
end
|