Advertisement
Guest User

Untitled

a guest
Jul 26th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. rails g migration add_default_to_users_activated
  2.  
  3. class AddDefaultToUsersActivated < ActiveRecord::Migration
  4. def change
  5. change_column_default :users, :activated, true
  6. end
  7. end
  8.  
  9. rake db:rollback
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement