aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/migration/join_table.rb
blob: 01a580781bf32fcfe2499c0ebfe63d1c2cd0b787 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)
        tables_names = [table_1, table_2].map(&:to_s).sort

        tables_names.join("_").to_sym
      end
    end
  end
end