Method: ActiveRecord::ConnectionAdapters::SchemaStatements#remove_reference
- Defined in:
- activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb
#remove_reference(table_name, ref_name, foreign_key: false, polymorphic: false, **options) ⇒ Object Also known as: remove_belongs_to
Removes the reference(s). Also removes a type
column if one exists. #remove_reference and #remove_belongs_to are acceptable.
Remove the reference
remove_reference(:products, :user, index: false)
Remove polymorphic reference
remove_reference(:products, :supplier, polymorphic: true)
Remove the reference with a foreign key
remove_reference(:products, :user, foreign_key: true)
935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 |
# File 'activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb', line 935 def remove_reference(table_name, ref_name, foreign_key: false, polymorphic: false, **) if foreign_key reference_name = Base.pluralize_table_names ? ref_name.to_s.pluralize : ref_name if foreign_key.is_a?(Hash) = foreign_key else = { to_table: reference_name } end [:column] ||= "#{ref_name}_id" remove_foreign_key(table_name, **) end remove_column(table_name, "#{ref_name}_id") remove_column(table_name, "#{ref_name}_type") if polymorphic end |