I’ve worked around that enum error by adding this
I’ve worked around that enum error (since before owncloud 7 already) by adding this in 3rdparty/doctrine/dbal/lib/Doctrine/DBAL/Platforms/MySqlPlatform.php:
@@ -661,6 +661,7 @@
protected function initializeDoctrineTypeMappings()
{
$this->doctrineTypeMapping = array(
+ 'enum' => 'string',
'tinyint' => 'boolean',
'smallint' => 'smallint',
'mediumint' => 'integer',