-
-
Notifications
You must be signed in to change notification settings - Fork 214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doctrine:migrations:diff generates DROP SEQUENCE messenger_messages_id_seq #461
Comments
Hi! I have the same problem. I hope problem with schema |
I'm also experiencing this. Every migration diff tries to drop some sequence tokens and I don't know what changed other than upgrading to the latest doctrine. Also in postgres. |
On my setup at each doctrine:migration:diff it adds me twice the lines creating the table |
I do have the same issue. I reported it on this related issue. . Not only does it drop the sequences on Note that the issue of dropping SEQUENCES only happens when there's a custom SCHEMA. The full code is available on this repository. |
Hi there, Still encountering the issue in my project and I need to use multiple schemas on PostgreSQL. My project stack is as follows: SF 6.1.12 4 Entity Managers/Connection When I apply a migration on all or one database, with custom schemas, the table's sequences are dropped. I really can't move custom schemas tables to the public schema to much work is already done with custom schemas. Did you find any workaround to manage migrations and keep sequences when applied? |
Having the issue using postgis / docker too, maybe it is related |
After run
doctrine:migrations:diff
it generatesIt bug relates to #355 but the solution
schema_filter: ~^(?!messenger_messages)~
doesn't helpim use postgres
The text was updated successfully, but these errors were encountered: