class ActiveRecordSchema::Join

Attributes

index[R]
key1[R]
key2[R]
table[R]

Public Class Methods

new(table, key1, key2, index = true) click to toggle source
# File lib/active_record_schema/join.rb, line 4
def initialize(table, key1, key2, index = true)
  @table = table
  @key1 = key1
  @key2 = key2
  @index = index
end