class Babik::QuerySet::Join::TargetTable

Target table of the join

Attributes

key[R]
name[R]
table_alias[R]

Public Class Methods

new(name, table_alias, key) click to toggle source

Constructor @param name [String] target table name @param table_alias [String] target table alias @param key [String] field that serves as key in the target table.

# File lib/babik/queryset/lib/join/join.rb, line 66
def initialize(name, table_alias, key)
  @name = name
  @table_alias = table_alias
  @key = key
end