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

11 lines
194 B
Ruby

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