Skip to content

Instantly share code, notes, and snippets.

@gusrub
Created March 4, 2018 02:11
Show Gist options
  • Select an option

  • Save gusrub/67d990c509c6f6bdfb93162ca5aad4c2 to your computer and use it in GitHub Desktop.

Select an option

Save gusrub/67d990c509c6f6bdfb93162ca5aad4c2 to your computer and use it in GitHub Desktop.
MVC model
class User < ApplicationRecord
validates :first_name, presence: true
validates :last_name, presence: true
validates :email, presence: true
validates :token, presence: true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment