do # refs: https://github.com/rails/rails/pull/31941 def pick(*column_names) limit(1).pluck(*column_names).first end # refs: https://github.com/rails/rails/pull/31989 def create_or_find_by(attributes, &block); end # ུ def create_or_find_by!(attributes, &block); end # ུ end end end ActiveSupport.on_load(:active_record) do ActiveRecord::Base.include(Rails60Backporting::ActiveRecordMethods) end 27