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

11 lines
202 B
Ruby

class CreateApplications < ActiveRecord::Migration
def change
create_table :applications do |t|
t.string :name
t.string :package_name
t.timestamps null: false
end
end
end