I have no problem with adding the foreign key constraint with this gem:
http://github.com/matthuhiggins/foreigner
However, I cannot remove the foreign key.
class ForeignKeys < ActiveRecord::Migration
def self.up
add_foreign_key(:threads, :users)
end
def self.down
remove_foreign_key(:threads, :column => :user_id)
end
end
Could someone help me out here.
Thanks.