diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-02-22 15:41:21 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-02-22 15:43:20 +0100 |
commit | 24c7f38a0046a96c43da7953df5833571c6bd1ed (patch) | |
tree | 900d1913027096fa851cc19ca693750ce89d8330 /db_structure.xml | |
parent | 6f29949bcaef690a93d7ecfb5cde8fa08ce36db7 (diff) | |
download | nextcloud-server-24c7f38a0046a96c43da7953df5833571c6bd1ed.tar.gz nextcloud-server-24c7f38a0046a96c43da7953df5833571c6bd1ed.zip |
Make sure we can store strings as per the interface
Diffstat (limited to 'db_structure.xml')
-rw-r--r-- | db_structure.xml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/db_structure.xml b/db_structure.xml index dbbfa8c7a4d..b1242171127 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -1249,11 +1249,10 @@ <!-- object id (ex: file id for files)--> <field> <name>objectid</name> - <type>integer</type> - <default>0</default> + <type>text</type> + <default></default> <notnull>true</notnull> - <unsigned>true</unsigned> - <length>4</length> + <length>64</length> </field> <!-- object type (ex: "files")--> |