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

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