したがって、レールアプリでユーザー名を 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