Skip to content

Instantly share code, notes, and snippets.

@memaker
Last active November 11, 2016 22:20
Show Gist options
  • Save memaker/6e1f0d3cce29a8724ebf04128817ce9b to your computer and use it in GitHub Desktop.
Save memaker/6e1f0d3cce29a8724ebf04128817ce9b to your computer and use it in GitHub Desktop.
# app/models/user.rb
class User < ActiveRecord::Base
validates :email, presence: true, uniqueness: true
validates :name, presence: true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment