Class: ActiveRecord::ConnectionAdapters::ForeignKeyDefinition
- Inherits:
-
Struct
- Object
- Struct
- ActiveRecord::ConnectionAdapters::ForeignKeyDefinition
- Defined in:
- lib/active_record/connection_adapters/abstract/schema_definitions.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#from_table ⇒ Object
Returns the value of attribute from_table.
-
#options ⇒ Object
Returns the value of attribute options.
-
#to_table ⇒ Object
Returns the value of attribute to_table.
Instance Method Summary collapse
- #column ⇒ Object
- #custom_primary_key? ⇒ Boolean
- #defined_for?(to_table_ord = nil, to_table: nil, **options) ⇒ Boolean
- #name ⇒ Object
- #on_delete ⇒ Object
- #on_update ⇒ Object
- #primary_key ⇒ Object
Instance Attribute Details
#from_table ⇒ Object
Returns the value of attribute from_table
36 37 38 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 36 def from_table @from_table end |
#options ⇒ Object
Returns the value of attribute options
36 37 38 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 36 def @options end |
#to_table ⇒ Object
Returns the value of attribute to_table
36 37 38 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 36 def to_table @to_table end |
Instance Method Details
#column ⇒ Object
41 42 43 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 41 def column [:column] end |
#custom_primary_key? ⇒ Boolean
57 58 59 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 57 def custom_primary_key? [:primary_key] != default_primary_key end |
#defined_for?(to_table_ord = nil, to_table: nil, **options) ⇒ Boolean
61 62 63 64 65 66 67 68 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 61 def defined_for?(to_table_ord = nil, to_table: nil, **) if to_table_ord self.to_table == to_table_ord.to_s else (to_table.nil? || to_table.to_s == self.to_table) && .all? { |k, v| self.[k].to_s == v.to_s } end end |
#name ⇒ Object
37 38 39 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 37 def name [:name] end |
#on_delete ⇒ Object
49 50 51 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 49 def on_delete [:on_delete] end |
#on_update ⇒ Object
53 54 55 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 53 def on_update [:on_update] end |
#primary_key ⇒ Object
45 46 47 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 45 def primary_key [:primary_key] || default_primary_key end |