-
-
Notifications
You must be signed in to change notification settings - Fork 455
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
Filter out well-known Symfony tables from DBAL schema migrations #1037
Conversation
I added a closing comment to your original message, I think it's related :) |
c282981
to
a7afd13
Compare
a7afd13
to
8c1c435
Compare
8c1c435
to
e4ca3d2
Compare
I like this, as it hopefully solves a lot of problems for people. Only question I have: would it make sense to require DBAL 2.9? It has been out for almost a year, so I'd hope most people are already running it. We can bump in a separate PR, just thinking that we might as well bump here as this wouldn't work when running anything older than 2.9. WDYT @nicolas-grekas? |
Thanks @nicolas-grekas! We'll bump doctrine/dbal in a separate PR for 2.0 only. |
Thanks @alcaeus! |
This prevents constantly generating
DROP TABLE sessions
, etc. when generating migrations.Closes #987