mirror of
http://ghproxy.cn/https://github.com/multunus/onemdm-server
synced 2025-12-06 10:14:59 +00:00
10 lines
207 B
Ruby
10 lines
207 B
Ruby
class CreateHeartbeats < ActiveRecord::Migration
|
|
def change
|
|
create_table :heartbeats do |t|
|
|
t.references :device, index: true, foreign_key: true
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|