Merge pull request #3666 from owncloud/allow_null_in_text_columns
db structure, allow null in columns for '' values
This commit is contained in:
commit
74825de0bc
1 changed files with 3 additions and 3 deletions
|
@ -70,7 +70,7 @@
|
|||
<name>id</name>
|
||||
<type>text</type>
|
||||
<default></default>
|
||||
<notnull>true</notnull>
|
||||
<notnull>false</notnull>
|
||||
<length>64</length>
|
||||
</field>
|
||||
|
||||
|
@ -220,7 +220,7 @@
|
|||
<name>path</name>
|
||||
<type>text</type>
|
||||
<default></default>
|
||||
<notnull>true</notnull>
|
||||
<notnull>false</notnull>
|
||||
<length>512</length>
|
||||
</field>
|
||||
|
||||
|
@ -244,7 +244,7 @@
|
|||
<name>name</name>
|
||||
<type>text</type>
|
||||
<default></default>
|
||||
<notnull>true</notnull>
|
||||
<notnull>false</notnull>
|
||||
<length>250</length>
|
||||
</field>
|
||||
|
||||
|
|
Loading…
Reference in a new issue