Sha256: b6cdffbb0117f381a45c3213130420ce88644cb0199ee137ad9104f333d358fe
Contents?: true
Size: 370 Bytes
Versions: 87
Compression:
Stored size: 370 Bytes
Contents
module ActiveRecord class Migration module JoinTable #:nodoc: private def find_join_table_name(table_1, table_2, options = {}) options.delete(:table_name) || join_table_name(table_1, table_2) end def join_table_name(table_1, table_2) ModelSchema.derive_join_table_name(table_1, table_2).to_sym end end end end
Version data entries
87 entries across 85 versions & 10 rubygems