Class: Arel::Nodes::ExcludedColumn

Inherits:
Node
  • Object
show all
Defined in:
lib/active_record_upsert/arel/nodes/excluded_column.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(column) ⇒ ExcludedColumn

Returns a new instance of ExcludedColumn.



5
6
7
# File 'lib/active_record_upsert/arel/nodes/excluded_column.rb', line 5

def initialize(column)
  @column = column
end

Instance Attribute Details

#columnObject (readonly)

Returns the value of attribute column.



4
5
6
# File 'lib/active_record_upsert/arel/nodes/excluded_column.rb', line 4

def column
  @column
end