Browse Source

Add comment to column definition

remotes/origin/stable6
Bart Visscher 13 years ago
parent
commit
b8a7e97301
  1. 4
      lib/db/mdb2schemareader.php

4
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());

Loading…
Cancel
Save