Here is the model (I am using SQLLite3):
class School < ActiveRecord::Base
validates_uniqueness_of :name
end
For example, after I add "Yale", I cannot add "Yale" but can add "yale." How can I make the validation case insensitive?
EDIT: Found it - Active Record Validations