Class: ActiveRecord::ConnectionAdapters::ForeignKeyDefinition

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

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#from_tableObject

Returns the value of attribute from_table

Returns:

  • (Object)

    the current value of from_table



28
29
30
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 28

def from_table
  @from_table
end

#optionsObject

Returns the value of attribute options

Returns:

  • (Object)

    the current value of options



28
29
30
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 28

def options
  @options
end

#to_tableObject

Returns the value of attribute to_table

Returns:

  • (Object)

    the current value of to_table



28
29
30
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 28

def to_table
  @to_table
end

Instance Method Details

#columnObject



33
34
35
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 33

def column
  options[:column]
end

#custom_primary_key?Boolean

Returns:

  • (Boolean)


49
50
51
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 49

def custom_primary_key?
  options[:primary_key] != default_primary_key
end

#nameObject



29
30
31
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 29

def name
  options[:name]
end

#on_deleteObject



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

def on_delete
  options[:on_delete]
end

#on_updateObject



45
46
47
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 45

def on_update
  options[:on_update]
end

#primary_keyObject



37
38
39
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 37

def primary_key
  options[:primary_key] || default_primary_key
end