Merge pull request #4770 from nextcloud/bugfix/4749/properties_table_propertyvalue_clob

we can't predict the size of propertyvalue. text -> clob
This commit is contained in:
Morris Jobke 2017-05-10 00:20:57 -05:00 committed by GitHub
commit 209b05489d
2 changed files with 2 additions and 3 deletions

View File

@ -739,9 +739,8 @@
<field>
<name>propertyvalue</name>
<type>text</type>
<type>clob</type>
<notnull>true</notnull>
<length>255</length>
</field>
<index>

View File

@ -26,7 +26,7 @@
// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
// when updating major/minor version number.
$OC_Version = array(12, 0, 0, 18);
$OC_Version = array(12, 0, 0, 19);
// The human readable string
$OC_VersionString = '12.0 beta 2';