diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-06-28 16:07:22 +0200 |
---|---|---|
committer | Jörn Friedrich Dreyer <jfd@butonic.de> | 2013-07-09 12:45:55 +0200 |
commit | f8ba6c77c8516baf80f9c1b68545d16d6f2a032a (patch) | |
tree | 186cea0b6b58e2529178eb8cd7ed1fb58f188319 /tests | |
parent | 36491371c8fb494e0cfbad5c6f92f552d3542177 (diff) | |
download | nextcloud-server-f8ba6c77c8516baf80f9c1b68545d16d6f2a032a.tar.gz nextcloud-server-f8ba6c77c8516baf80f9c1b68545d16d6f2a032a.zip |
Going from text to clob is not something we do.
Also Oracle DB has problems with this, see
http://abhijitbashetti.blogspot.de/2011/10/converting-varchar2-to-clob-and-clob-to.html
Conflicts:
tests/lib/dbschema.php
Diffstat (limited to 'tests')
-rw-r--r-- | tests/data/db_structure2.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/data/db_structure2.xml b/tests/data/db_structure2.xml index fc6fe0bba7d..6f12f81f477 100644 --- a/tests/data/db_structure2.xml +++ b/tests/data/db_structure2.xml @@ -49,8 +49,9 @@ <field> <name>description</name> - <type>clob</type> + <type>text</type> <notnull>false</notnull> + <length>1024</length> </field> <field> |