-
Notifications
You must be signed in to change notification settings - Fork 2.1k
the path of a mount config may be an empty string, which requires a nullable column on oracle #25765
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
the path of a mount config may be an empty string, which requires a nullable column on oracle #25765
Conversation
|
@butonic, thanks for your PR! By analyzing the annotation information on this pull request, we identified @icewind1991, @nickvergessen and @Xenopathic to be potential reviewers |
|
cc @PVince81 because he wanted me to give him oracle |
0c8071d to
bca0b42
Compare
|
Since you changed the structure, we need to increase version.php |
…ullable column on oracle
bca0b42 to
c9a944f
Compare
|
oh great, doctrine does not correctly generate the SQL. It wants to do ALTER TABLE "oc_external_config" MODIFY ("config_id" NUMBER(20) DEFAULT NULL, "value" CLOB DEFAULT NULL NULL)which leads to changing the config_id column is totally useless and regarding the ALTER for CLOB see http://stackoverflow.com/a/7443301 it should just be ALTER TABLE "oc_external_config" MODIFY "value" NULL@DeepDiver1975 @PVince81 we need that different shema update mechanism ... |
|
Yeah, it's not the first time. Last time we had to add specific tweaks to make it accept adding autoincrement on columns. |
|
Doctrine migrations .... Doctrine migrations ... Doctrine migrations ... |
Time to revive ? |
|
needs rewrite, the tables were moved to core and are using a doctrine migration for their creation |
|
conflicts since this is inactive I'm moving this to triage to reconsider priority |
|
obsolete, please rewrite this with a migration in a separate PR |
|
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
without this files_external is broken on oracle