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
- #deferrable ⇒ Object
- #defined_for?(to_table: nil, validate: nil, **options) ⇒ Boolean
- #export_name_on_schema_dump? ⇒ Boolean
- #name ⇒ Object
- #on_delete ⇒ Object
- #on_update ⇒ Object
- #primary_key ⇒ Object
- #validate? ⇒ Boolean (also: #validated?)
Instance Attribute Details
#from_table ⇒ Object
Returns the value of attribute from_table
124 125 126 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 124 def from_table @from_table end |
#options ⇒ Object
Returns the value of attribute options
124 125 126 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 124 def @options end |
#to_table ⇒ Object
Returns the value of attribute to_table
124 125 126 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 124 def to_table @to_table end |
Instance Method Details
#column ⇒ Object
129 130 131 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 129 def column [:column] end |
#custom_primary_key? ⇒ Boolean
149 150 151 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 149 def custom_primary_key? [:primary_key] != default_primary_key end |
#deferrable ⇒ Object
145 146 147 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 145 def deferrable [:deferrable] end |
#defined_for?(to_table: nil, validate: nil, **options) ⇒ Boolean
162 163 164 165 166 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 162 def defined_for?(to_table: nil, validate: nil, **) (to_table.nil? || to_table.to_s == self.to_table) && (validate.nil? || validate == self..fetch(:validate, validate)) && .all? { |k, v| Array(self.[k]).map(&:to_s) == Array(v).map(&:to_s) } end |
#export_name_on_schema_dump? ⇒ Boolean
158 159 160 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 158 def export_name_on_schema_dump? !ActiveRecord::SchemaDumper.fk_ignore_pattern.match?(name) if name end |
#name ⇒ Object
125 126 127 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 125 def name [:name] end |
#on_delete ⇒ Object
137 138 139 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 137 def on_delete [:on_delete] end |
#on_update ⇒ Object
141 142 143 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 141 def on_update [:on_update] end |
#primary_key ⇒ Object
133 134 135 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 133 def primary_key [:primary_key] || default_primary_key end |
#validate? ⇒ Boolean Also known as: validated?
153 154 155 |
# File 'lib/active_record/connection_adapters/abstract/schema_definitions.rb', line 153 def validate? .fetch(:validate, true) end |