Class: PgPower::ConnectionAdapters::IndexDefinition
- Inherits:
-
Struct
- Object
- Struct
- PgPower::ConnectionAdapters::IndexDefinition
- Defined in:
- lib/pg_power/connection_adapters/index_definition.rb
Overview
Structure to store index parameters Overrides ActiveRecord::ConnectionAdapters::IndexDefinition with the additional :where parameter
Instance Attribute Summary collapse
-
#access_method ⇒ Object
Returns the value of attribute access_method.
-
#columns ⇒ Object
Returns the value of attribute columns.
-
#lengths ⇒ Object
Returns the value of attribute lengths.
-
#name ⇒ Object
Returns the value of attribute name.
-
#table ⇒ Object
Returns the value of attribute table.
-
#unique ⇒ Object
Returns the value of attribute unique.
-
#where ⇒ Object
Returns the value of attribute where.
Instance Attribute Details
#access_method ⇒ Object
Returns the value of attribute access_method
4 5 6 |
# File 'lib/pg_power/connection_adapters/index_definition.rb', line 4 def access_method @access_method end |
#columns ⇒ Object
Returns the value of attribute columns
4 5 6 |
# File 'lib/pg_power/connection_adapters/index_definition.rb', line 4 def columns @columns end |
#lengths ⇒ Object
Returns the value of attribute lengths
4 5 6 |
# File 'lib/pg_power/connection_adapters/index_definition.rb', line 4 def lengths @lengths end |
#name ⇒ Object
Returns the value of attribute name
4 5 6 |
# File 'lib/pg_power/connection_adapters/index_definition.rb', line 4 def name @name end |
#table ⇒ Object
Returns the value of attribute table
4 5 6 |
# File 'lib/pg_power/connection_adapters/index_definition.rb', line 4 def table @table end |
#unique ⇒ Object
Returns the value of attribute unique
4 5 6 |
# File 'lib/pg_power/connection_adapters/index_definition.rb', line 4 def unique @unique end |
#where ⇒ Object
Returns the value of attribute where
4 5 6 |
# File 'lib/pg_power/connection_adapters/index_definition.rb', line 4 def where @where end |