diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-05-10 00:20:57 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-10 00:20:57 -0500 |
commit | 209b05489d442652fa4d7ce3a7b37568444b5ae4 (patch) | |
tree | 77e03456fba3be95ff593eb799f1a53c3ef9b5e0 | |
parent | fb78774eb806934c96bbd7106712c603877fb175 (diff) | |
parent | 80eb3064e2e71e634e818eb49e52a5fe6166da81 (diff) | |
download | nextcloud-server-209b05489d442652fa4d7ce3a7b37568444b5ae4.tar.gz nextcloud-server-209b05489d442652fa4d7ce3a7b37568444b5ae4.zip |
Merge pull request #4770 from nextcloud/bugfix/4749/properties_table_propertyvalue_clob
we can't predict the size of propertyvalue. text -> clob
-rw-r--r-- | db_structure.xml | 3 | ||||
-rw-r--r-- | version.php | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/db_structure.xml b/db_structure.xml index 902fb56ade0..d6eba8b3713 100644 --- a/db_structure.xml +++ b/db_structure.xml @@ -739,9 +739,8 @@ <field> <name>propertyvalue</name> - <type>text</type> + <type>clob</type> <notnull>true</notnull> - <length>255</length> </field> <index> diff --git a/version.php b/version.php index 4f428c128aa..84b84e1016e 100644 --- a/version.php +++ b/version.php @@ -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'; |