Remove Belongs To Association
To remove a belongs_to association using the Rails migration DSL, use the remove_references method. This method is aliased to remove_reference and remove_belongs_to.
class RemoveTagReferences < ActiveRecord::Migration
def change
change_table :posts do |t|
t.remove_references :tag
end
end
end
Tweet