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