I’ve worked around that enum error by adding this

24. heinäkuuta 2014 klo 13.53
Sijainti: Vianhallintajärjestelmät: Github
Avainsanat: ownCloud

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',

Vastaa viestiin sen kontekstissa (Github)