method

unquote

rails latest stable - Class: ActiveRecord::ConnectionAdapters::PostgreSQL::Name

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v7.0.0) is shown here.

unquote(part)
private

No documentation available.

# File activerecord/lib/active_record/connection_adapters/postgresql/utils.rb, line 45
          def unquote(part)
            if part && part.start_with?('"')
              part[1..-2]
            else
              part
            end
          end