Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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
Advertisement
Add Comment
Please, Sign In to add comment