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