Sha256: 1e55ca75b0ca5a74047489100fdb7c1747014708df3c2825f8682122debac81e
Contents?: true
Size: 515 Bytes
Versions: 39
Compression:
Stored size: 515 Bytes
Contents
# frozen_string_literal: true module ActiveRecord module ConnectionAdapters # :nodoc: module DatabaseLimits def max_identifier_length # :nodoc: 64 end # Returns the maximum length of a table alias. def table_alias_length max_identifier_length end # Returns the maximum length of an index name. def index_name_length max_identifier_length end private def bind_params_length 65535 end end end end
Version data entries
39 entries across 37 versions & 5 rubygems