Files
onemdm-server/db/migrate/20151113131647_create_batch_installations.rb
2015-11-13 20:33:47 +05:30

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