Skip to content

Instantly share code, notes, and snippets.

@chensoren
Created March 10, 2014 02:03
Show Gist options
  • Save chensoren/9458260 to your computer and use it in GitHub Desktop.
Save chensoren/9458260 to your computer and use it in GitHub Desktop.
Rails 实用代码

block assign

User.where(email: '[email protected]').first_or_initialize.tap do |admin_u|
  admin_u.is_admin = true
  admin_u.first_name = 'Admin'
  admin_u.last_name = 'User'
  admin_u.user_type = 'admin'
  admin_u.save!
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment