Flowdock
method

add_join_records

Importance_0
v4.1.8 - Show latest stable - 0 notes - Class: FixtureSet
add_join_records(rows, row, association) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/fixtures.rb, line 702
      def add_join_records(rows, row, association)
        # This is the case when the join table has no fixtures file
        if (targets = row.delete(association.name.to_s))
          table_name = association.join_table
          lhs_key    = association.lhs_key
          rhs_key    = association.rhs_key

          targets = targets.is_a?(Array) ? targets : targets.split(/\s*,\s*/)
          rows[table_name].concat targets.map { |target|
            { lhs_key => row[primary_key_name],
              rhs_key => ActiveRecord::FixtureSet.identify(target) }
          }
        end
      end
Register or log in to add new notes.