所以我试图在我的 Rails 应用程序上设置用户名 case_insensitive,并在我的开发代码中添加 :case_sensitive => false 工作得很好,但是当我推送到 heroku 时,它没有任何区别。
是什么赋予了?
有任何想法吗?
class User < ActiveRecord::Base
validates :name, presence: true, :uniqueness => { :case_sensitive => false }
validates_format_of :email,:with => /^([^@\s]+)@((?:[-a-z0-9]+\.)+[a-z]{2,})$/i
has_many :feeds, :through => :subscriptions, dependent: :destroy
has_many :subscriptions
has_secure_password