Created
April 8, 2012 08:18
-
-
Save wohckcin/2335964 to your computer and use it in GitHub Desktop.
Rails, User Validates
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#--- | |
# Excerpted from "Agile Web Development with Rails", | |
# published by The Pragmatic Bookshelf. | |
# Copyrights apply to this code. It may not be used to create training material, | |
# courses, books, articles, and the like. Contact us if you are in doubt. | |
# We make no guarantees that this code is fit for any purpose. | |
# Visit http://www.pragmaticprogrammer.com/titles/rails4 for more book information. | |
#--- | |
class User < ActiveRecord::Base | |
validates :name, presence: true, uniqueness: true | |
has_secure_password | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment