I am developing a Ruby on Rails application, and using the foreigner plugin to set up foreign key constraints in the migrations for example like this.
add_foreign_key(:notifications, :invitations, :dependent => :delete)
However, when I run the migration with
rake db:migrate
It runs, but my schema.rb file remains unchanged. Shouldn't the changes be reflected there for setup on another database?