aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <morris.jobke@gmail.com>2013-06-11 04:42:22 -0700
committerMorris Jobke <morris.jobke@gmail.com>2013-06-11 04:42:22 -0700
commit74825de0bc39cdbdb4763cf3709002af17054c32 (patch)
treeaac01681361452974a6b04942a726e02c474b236
parent74b1f7d448f2d1f73817b7c8508db687d39856c7 (diff)
parente3e140993d8a382ea572f08751294cb7d10e714b (diff)
downloadnextcloud-server-74825de0bc39cdbdb4763cf3709002af17054c32.tar.gz
nextcloud-server-74825de0bc39cdbdb4763cf3709002af17054c32.zip
Merge pull request #3666 from owncloud/allow_null_in_text_columns
db structure, allow null in columns for '' values
-rw-r--r--db_structure.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/db_structure.xml b/db_structure.xml
index 933b09988f0..cefb7fc52c9 100644
--- a/db_structure.xml
+++ b/db_structure.xml
@@ -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>