diff options
author | Vincent Petry <vincent@nextcloud.com> | 2021-08-05 10:42:38 +0200 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2021-08-10 11:19:15 +0200 |
commit | 15a62c52374ec49025ccccca48c7c4f86ffd1f74 (patch) | |
tree | b7ef01488d3f6759df29ae8bf65594aeccb3bbca /apps/workflowengine/appinfo | |
parent | 7f69a60ab10da4ea521a5ef1802229a4d4fa2d2a (diff) | |
download | nextcloud-server-15a62c52374ec49025ccccca48c7c4f86ffd1f74.tar.gz nextcloud-server-15a62c52374ec49025ccccca48c7c4f86ffd1f74.zip |
Make "name" column nullable in workflow operations
The "name" column is now unused and the code is always inserting an
empty string. While this works with most databases, Oracle complains
because an empty string is equivalent to null.
To fix this, the column definition is changed to allow null values now.
Also added some logging in case of database exceptions, because without
this nothing would be logged to detect the above problem.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps/workflowengine/appinfo')
-rw-r--r-- | apps/workflowengine/appinfo/info.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/workflowengine/appinfo/info.xml b/apps/workflowengine/appinfo/info.xml index 754458c6dc1..96d5c8fa64d 100644 --- a/apps/workflowengine/appinfo/info.xml +++ b/apps/workflowengine/appinfo/info.xml @@ -5,7 +5,7 @@ <name>Nextcloud workflow engine</name> <summary>Nextcloud workflow engine</summary> <description>Nextcloud workflow engine</description> - <version>2.4.0</version> + <version>2.4.1</version> <licence>agpl</licence> <author>Arthur Schiwon</author> <author>Julius Härtl</author> |