Sha256: 2401a24990a104a9ab450129d5608af6aadc75e66a527f416b9520e5614b0c75
Contents?: true
Size: 636 Bytes
Versions: 42
Compression:
Stored size: 636 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 name. def table_name_length max_identifier_length 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
42 entries across 42 versions & 5 rubygems