From: Bart Visscher Date: Fri, 5 Jul 2013 19:42:37 +0000 (+0200) Subject: Add comment to column definition X-Git-Tag: v6.0.0alpha2~444^2~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b8a7e9730159f66d86e2b09f80c7c420b479646b;p=nextcloud-server.git Add comment to column definition --- diff --git a/lib/db/mdb2schemareader.php b/lib/db/mdb2schemareader.php index 702482b569f..c506aa26521 100644 --- a/lib/db/mdb2schemareader.php +++ b/lib/db/mdb2schemareader.php @@ -134,6 +134,10 @@ class OC_DB_MDB2SchemaReader { $default = (string)$child; $options['default'] = $default; break; + case 'comments': + $comment = (string)$child; + $options['comment'] = $comment; + break; default: throw new DomainException('Unknown element: '.$child->getName());