summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2014-12-04 12:11:38 +0100
committerBjoern Schiessle <schiessle@owncloud.com>2014-12-04 16:18:16 +0100
commit79711c32b7400d23d376d50148a5742f881f23d4 (patch)
tree1cbfcd9a06a5715c434f8ab5d2c9b52184eb7c3f
parentd30059d76ce04a9b2a4bd91d0261977bb0c972ce (diff)
downloadnextcloud-server-79711c32b7400d23d376d50148a5742f881f23d4.tar.gz
nextcloud-server-79711c32b7400d23d376d50148a5742f881f23d4.zip
password column needs to allow null otherwise Oracle will break for empty passwords
-rw-r--r--apps/files_sharing/appinfo/database.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/appinfo/database.xml b/apps/files_sharing/appinfo/database.xml
index 73d64c527b7..414eb6f517a 100644
--- a/apps/files_sharing/appinfo/database.xml
+++ b/apps/files_sharing/appinfo/database.xml
@@ -32,7 +32,7 @@
<field>
<name>password</name>
<type>text</type>
- <notnull>true</notnull>
+ <notnull>false</notnull>
<length>64</length>
<comments>Optional password for the public share</comments>
</field>