Guest User

Untitled

a guest
Aug 10th, 2012
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. ruby on rails how do i store user profile data?
  2. rails g migration AddProfileDataToUsers
  3.  
  4. class AddProfileDataToUsers < ActiveRecord::Migration
  5. change_table :users do |t|
  6. t.add_column :name, :string
  7. t.add_column :country, :string...
  8. #whatever else you want to add to the user model here
  9. end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment