-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Enforce no notnull for boolean to store false #24055
Enforce no notnull for boolean to store false #24055
Conversation
I get this is just how oracle works. But when you hae a boolean field that you can't store false is just somewhat insane. |
Well oracle has no boolean fields, doctrine maps it to an integer with length 1 byte. "You" manually tell it to not allow 0/null, so that's what we do wrapped by doctrine. |
This comment has been minimized.
This comment has been minimized.
That is somehow more confusing. If doctrine maps it takes an int. Null and 0 are not the same. So if you have a mandatory int field. You can't set it to 0? |
Conflicts. BUta lso CI is not happy |
Signed-off-by: Joas Schilling <coding@schilljs.com>
Signed-off-by: Joas Schilling <coding@schilljs.com>
Signed-off-by: Joas Schilling <coding@schilljs.com>
Signed-off-by: Joas Schilling <coding@schilljs.com>
9ccd7f7
to
f9d4fa2
Compare
Rebased, lets see what CI says |
Hm haven't seen those tests failing before so I'd assume that might be a related failure, but I cannot see how from the affected code: integration/sharing_features/sharing-v1-video-verification.feature I've retriggered drone once so let's see |
yeah, talk does not install anymore :( |
this should definitely go into our upgrade docs |
Added to #26407 (comment) |
Fails until #24053 is in
Fix #24083