[Solved] How to disable email validation in rails device [closed]
Simply comment out the line specifying validators for the email attribute, or remove it altogether: # app # validates :email, :presence => false, :email => false You’ll also need to make a slight modification to your users table. By default,…