I am attempting to run a rake:db migrate on a postgres database for my rails application. rake:db drop (the db already existed I am fixing a bug that requires I recreate the db) runs fine rake:db create runs fine but when I run rake:db migrate I get the following error
ERROR --: PG::InvalidSchemaName: ERROR: no schema has been selected to create in.
My database.yml file looks fine (it was working so I'm not sure what happened?)
development:
adapter: postgressql
encoding: utf8
username: [myusername]
password: [mypassword]
host: [myhost]
port: 5432
database: myapp_dev
schema_search_path: "myapp_dev"
pool: 5
timeout: 5000
Any idea what is going on?