-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Allow setting column options like charset
and collation
on JoinTable
, JoinColumn
and InverseJoinColumn
#9655
Conversation
d358864
to
b8d0c9f
Compare
b8d0c9f
to
a509d95
Compare
a509d95
to
ceecdbb
Compare
0f01e47
to
0126457
Compare
charset
and collation
charset
and collation
on JoinTable
, JoinColumn
and InverseJoinColumn
0126457
to
51e29ff
Compare
This is the way, consistent with the rest. Thanks for the continued work on thi |
Thanks! I'm currently testing this thoroughly in our large monolith with 250+ entities and various collations. Will report back when I know 100% everything is working. |
51e29ff
to
88a6a4f
Compare
I finished my testing. I was finally able to escape the diff hell and now get: I tested the following:
@beberlei @greg0ire The PR is now ready for review. Please let me know if I need to add extra tests. Thanks! |
Too bad indeed 😞 |
88a6a4f
to
f3d6d4b
Compare
It's ready for review again. |
@ruudk the build is failing 🙈 |
This makes it possible to set custom options on the following: * `JoinTable` * `JoinColumn` * `InverseJoinColumn`
f3d6d4b
to
1226b61
Compare
@greg0ire Fixed now. |
Thanks Should this be added to the https://github.com/doctrine/orm/milestone/110 milestone ? |
Yes! |
* 2.13.x: Allow doctrine/deprecations 1.0 (doctrine#9723) Allow setting column options like `charset` and `collation` everywhere (doctrine#9655) Fix psalm annotation
Hey there, There is no information, that the |
Same goes for the XML driver I suppose… would you like to send a PR? |
Alternative approach for #9636
This makes it possible to set custom options on the following:
JoinTable
JoinColumn
InverseJoinColumn
/cc @greg0ire