Method: Sequel::SQL::QualifiedIdentifier#initialize

Defined in:
lib/sequel/sql.rb

#initialize(table, column) ⇒ QualifiedIdentifier

Set the table and column to the given arguments



794
795
796
# File 'lib/sequel/sql.rb', line 794

def initialize(table, column)
  @table, @column = table, column
end