You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In PostgreSQL, doctrine:schema:create and doctrine:schema:update will create a "schema" named custom, next to the default public one.
But doctrine:schema:drop will not drop this newly created schema.
Bug Report
Summary
(sorry if the the error has already been reported, I've only found doctrine/DoctrineBundle#548 for which a user said it should be reopened)
Given we have an entity which declares a custom
schema
:In PostgreSQL,
doctrine:schema:create
anddoctrine:schema:update
will create a "schema" namedcustom
, next to the defaultpublic
one.But
doctrine:schema:drop
will not drop this newly created schema.Current behavior
The following is creating an error:
Expected behavior
I'd expect
doctrine:schema:drop
to emit aDROP SCHEMA custom
.Please, let me know if this is a bug or the desired behavior. I'd be happy to provide a fix.
The text was updated successfully, but these errors were encountered: