mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Add comment to column definition
This commit is contained in:
parent
b04e09a901
commit
b8a7e97301
1 changed files with 4 additions and 0 deletions
|
|
@ -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…
Reference in a new issue