socialforge/db/migrate/20150305081132_create_phone...

11 lines
200 B
Ruby

class CreatePhoneAppVersions < ActiveRecord::Migration
def change
create_table :phone_app_versions do |t|
t.string :version
t.text :description
t.timestamps
end
end
end