mirror of
http://ghproxy.cn/https://github.com/multunus/onemdm-server
synced 2025-12-06 10:14:59 +00:00
12 lines
244 B
Ruby
12 lines
244 B
Ruby
class CreateInstallations < ActiveRecord::Migration
|
|
def change
|
|
create_table :installations do |t|
|
|
t.integer :device_id
|
|
t.integer :batch_installation_id
|
|
t.integer :status
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|