I have multiple rails applications talking to the same backend and I\'d like them to share some migrations.
I setup a rails engine (with enginex), I can share anything (
As of Rails 3.1 looks like the solution is:
bundle exec rake railties:install:migrations
If you only want to copy from a specific railtie then:
bundle exec rake railties:install:migrations FROM=foo_engine
Note the name is whatever you gem is named plus _engine. So if the gem is "foo" then the name is foo_engine.