Files
onemdm-server/db/migrate/20151113131647_create_batch_installations.rb
2015-11-16 19:08:05 +05:30

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