When I enter the rake command (in step 5 of the tutorial) I get an
error that database_test does not exist… If I manually create an
empty database with that name in mysql the rake command executes
without errors.
Should rails be creating the database_test at some point, perhaps at
the same time it creates database_development? (I might be missing
something in the tutorial).
Should rails be creating the database_test at some point, perhaps at
the same time it creates database_development?
I’m not aware that rails actually creates the database for you… I
always just create my _development and _test databases manually when
starting a project, then use migrations & rake from there on