From b8a7e9730159f66d86e2b09f80c7c420b479646b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 5 Jul 2013 21:42:37 +0200 Subject: [PATCH] Add comment to column definition --- lib/db/mdb2schemareader.php | 4 ++++ 1 file changed, 4 insertions(+) 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()); -- 2.39.5