You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trustieforge/db/migrate/20150305081132_create_phone...

11 lines
200 B

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