- ruby on rails how do i store user profile data?
- rails g migration AddProfileDataToUsers
- class AddProfileDataToUsers < ActiveRecord::Migration
- change_table :users do |t|
- t.add_column :name, :string
- t.add_column :country, :string...
- #whatever else you want to add to the user model here
- end
- end