diff options
author | Georg Ehrke <developer@georgehrke.com> | 2013-08-07 11:51:08 +0200 |
---|---|---|
committer | Georg Ehrke <developer@georgehrke.com> | 2013-08-07 11:51:08 +0200 |
commit | dcc92445a0bc3d9d47768ac0f640780f2b09a5fd (patch) | |
tree | d40e06c0ac8062614212499987e612dfb723bfa2 | |
parent | 91bd4dd67b7d58f09a4dadff8060f63c6d6b691e (diff) | |
download | nextcloud-server-dcc92445a0bc3d9d47768ac0f640780f2b09a5fd.tar.gz nextcloud-server-dcc92445a0bc3d9d47768ac0f640780f2b09a5fd.zip |
allow permissions.user to be null as suggested by @butonic
-rw-r--r-- | db_structure.xml | 2 | ||||
-rwxr-xr-x | lib/util.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/db_structure.xml b/db_structure.xml index ef5de653033..4c192ba028e 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -383,7 +383,7 @@ <name>user</name> <type>text</type> <default></default> - <notnull>true</notnull> + <notnull>false</notnull> <length>64</length> </field> diff --git a/lib/util.php b/lib/util.php index b7dc2207e6c..dc13d31fd2b 100755 --- a/lib/util.php +++ b/lib/util.php @@ -78,7 +78,7 @@ class OC_Util { public static function getVersion() { // hint: We only can count up. Reset minor/patchlevel when // updating major/minor version number. - return array(5, 80, 05); + return array(5, 80, 06); } /** |