In my dev env I have postgres running in a container, running db:migrate worked fine until recently I needed to change the schema to sql
config.active_record.schema_format = :sql
Not when I run db:migrate I get the following error:
pg_dump: [archiver (db)] connection to database "mydatabase" failed: FATAL: password authentication failed for user "myuser"
Looks to me that pg_dump ignores the database.yml settings. Anyone else had any luck with this kind of setup?