Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjörn Schießle <bjoern@schiessle.org>2014-12-05 00:24:57 +0300
committerBjörn Schießle <bjoern@schiessle.org>2014-12-05 00:24:57 +0300
commit3c673717b0af8e73dae8fc2034bd8b1b8bee6a62 (patch)
treecd92c623d8f28e1039e817db6a0a8fe055fb1579
parent01a176f2a371295ff4c6e7c4645974f80909e670 (diff)
parent79711c32b7400d23d376d50148a5742f881f23d4 (diff)
Merge pull request #12623 from owncloud/fix-s2s-oc7
password column needs to allow null (oc7 backport)
-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>