Details
Description
When recreating database using
$schemaTool->dropSchema($metaDatas); $schemaTool->createSchema($metaDatas);
the second line fails with error that the sequence "tbl_id_seq" already exists. It's because the sequence is created without an owner column and schema tool doesn't include "drop sequence" statements in the drop SQL.
I've created a patch which fixes the problem for my environment. Revision numbers in patch is from the local SVN. Doctrine base is 2.0.5.
That will always drop all sequences also when you only pass some classes in there. We need to find a better solution for this problem.