Merge pull request #2978 from owncloud/displayname_can_be_null

Remove not null constraint. Fix #2976
This commit is contained in:
Bernhard Posselt 2013-04-17 07:47:17 -07:00
commit 3b2a0523f8
2 changed files with 1 additions and 2 deletions

View file

@ -910,7 +910,6 @@
<name>displayname</name>
<type>text</type>
<default></default>
<notnull>true</notnull>
<length>64</length>
</field>

View file

@ -75,7 +75,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, 01);
return array(5, 80, 02);
}
/**