Getting migrations to run when setting up your Rails engine can be a bit
tricky. If you generate some sort of migration either via a scaffold or model,
and run rake db:migrate
, you will see no output. There is nothing telling you
if you failed or you succeeded.
What you need to do is cd into your dummy app cd test/dummy
and copy the
migrations over to the app, and then run them with `rake