I've pulled down a Rails repo (# ruby '2.5.0', gem 'rails', '~> 5.1', gem 'pg', '~>1.0', & psql 9.6.8)
When running rake db:structure:dump the structure.sql is modified and the schema name gets added to the table create statements. Other than that the structure is unmodified. How do I remove them to stop collisions with the existing project.
CREATE TABLE public.account_roles (
When it was previously
SET search_path = public, pg_catalog;
...
CREATE TABLE account_roles (
The SET search_path also gets removed. I tried setting schema_search_path: 'public,pg_catelog' in database.yml configuration. This has no effect. What configuration was set to dump the sql structure without the schema?