Class: Arel::Nodes::ExcludedColumn
- Inherits:
-
Node
- Object
- Node
- Arel::Nodes::ExcludedColumn
- Defined in:
- lib/active_record_upsert/arel/nodes/excluded_column.rb
Instance Attribute Summary collapse
-
#column ⇒ Object
readonly
Returns the value of attribute column.
Instance Method Summary collapse
-
#initialize(column) ⇒ ExcludedColumn
constructor
A new instance of ExcludedColumn.
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
#column ⇒ Object (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 |