Skip to content

Instantly share code, notes, and snippets.

@doctrinebot
Created December 13, 2015 18:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save doctrinebot/15f611ff6e2c64a5a953 to your computer and use it in GitHub Desktop.
Save doctrinebot/15f611ff6e2c64a5a953 to your computer and use it in GitHub Desktop.
Attachments to Doctrine Jira Issue DDC-1172 - https://github.com/doctrine/doctrine2/issues/1775
Index: Doctrine/ORM/Tools/SchemaTool.php
===================================================================
--- Doctrine/ORM/Tools/SchemaTool.php (revision 50)
+++ Doctrine/ORM/Tools/SchemaTool.php (working copy)
@@ -570,6 +570,10 @@
}
}
}
+
+ foreach ($fullSchema->getSequences() AS $sequence) {
+ $visitor->acceptSequence($sequence);
+ }
return $visitor->getQueries();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment