aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/db/mdb2schemareader.php4
1 files changed, 4 insertions, 0 deletions
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());