diff options
author | Björn Schießle <bjoern@schiessle.org> | 2014-12-04 22:24:57 +0100 |
---|---|---|
committer | Björn Schießle <bjoern@schiessle.org> | 2014-12-04 22:24:57 +0100 |
commit | 3c673717b0af8e73dae8fc2034bd8b1b8bee6a62 (patch) | |
tree | cd92c623d8f28e1039e817db6a0a8fe055fb1579 | |
parent | 01a176f2a371295ff4c6e7c4645974f80909e670 (diff) | |
parent | 79711c32b7400d23d376d50148a5742f881f23d4 (diff) | |
download | nextcloud-server-3c673717b0af8e73dae8fc2034bd8b1b8bee6a62.tar.gz nextcloud-server-3c673717b0af8e73dae8fc2034bd8b1b8bee6a62.zip |
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.xml | 2 |
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> |