Class: ActiveRecord::ConnectionAdapters::IndexDefinition

Inherits:
Object
  • Object
show all
Defined in:
activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb

Overview

Abstract representation of an index definition on a table. Instances of this type are typically created and returned by methods in database adapters. e.g. ActiveRecord::ConnectionAdapters::MySQL::SchemaStatements#indexes

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(table, name, unique = false, columns = [], lengths: {}, orders: {}, opclasses: {}, where: nil, type: nil, using: nil, include: nil, comment: nil, valid: true) ⇒ IndexDefinition

Returns a new instance of IndexDefinition.



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 12

def initialize(
  table, name,
  unique = false,
  columns = [],
  lengths: {},
  orders: {},
  opclasses: {},
  where: nil,
  type: nil,
  using: nil,
  include: nil,
  comment: nil,
  valid: true
)
  @table = table
  @name = name
  @unique = unique
  @columns = columns
  @lengths = concise_options(lengths)
  @orders = concise_options(orders)
  @opclasses = concise_options(opclasses)
  @where = where
  @type = type
  @using = using
  @include = include
  @comment = comment
  @valid = valid
end

Instance Attribute Details

#columnsObject (readonly)

Returns the value of attribute columns



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def columns
  @columns
end

#commentObject (readonly)

Returns the value of attribute comment



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def comment
  @comment
end

#includeObject (readonly)

Returns the value of attribute include



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def include
  @include
end

#lengthsObject (readonly)

Returns the value of attribute lengths



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def lengths
  @lengths
end

#nameObject (readonly)

Returns the value of attribute name



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def name
  @name
end

#opclassesObject (readonly)

Returns the value of attribute opclasses



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def opclasses
  @opclasses
end

#ordersObject (readonly)

Returns the value of attribute orders



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def orders
  @orders
end

#tableObject (readonly)

Returns the value of attribute table



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def table
  @table
end

#typeObject (readonly)

Returns the value of attribute type



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def type
  @type
end

#uniqueObject (readonly)

Returns the value of attribute unique



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def unique
  @unique
end

#usingObject (readonly)

Returns the value of attribute using



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def using
  @using
end

#validObject (readonly)

Returns the value of attribute valid



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def valid
  @valid
end

#whereObject (readonly)

Returns the value of attribute where



10
11
12
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 10

def where
  @where
end

Instance Method Details

#column_optionsObject



45
46
47
48
49
50
51
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 45

def column_options
  {
    length: lengths,
    order: orders,
    opclass: opclasses,
  }
end

#defined_for?(columns = nil, name: nil, unique: nil, valid: nil, include: nil, **options) ⇒ Boolean

Returns:

  • (Boolean)


53
54
55
56
57
58
59
60
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 53

def defined_for?(columns = nil, name: nil, unique: nil, valid: nil, include: nil, **options)
  columns = options[:column] if columns.blank?
  (columns.nil? || Array(self.columns) == Array(columns).map(&:to_s)) &&
    (name.nil? || self.name == name.to_s) &&
    (unique.nil? || self.unique == unique) &&
    (valid.nil? || self.valid == valid) &&
    (include.nil? || Array(self.include) == Array(include))
end

#valid?Boolean

Returns:

  • (Boolean)


41
42
43
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 41

def valid?
  @valid
end